From cb063ae388349fc6fcbf9a70c98ae81d23079d3f Mon Sep 17 00:00:00 2001 From: Mark Lobodzinski Date: Mon, 15 Feb 2016 18:23:12 -0700 Subject: [PATCH] layers: Fix Win32 build errors in draw_state --- layers/draw_state.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layers/draw_state.cpp b/layers/draw_state.cpp index 940f49e..f76bddb 100644 --- a/layers/draw_state.cpp +++ b/layers/draw_state.cpp @@ -7254,7 +7254,7 @@ bool validateSecondaryCommandBufferState(layer_data *dev_data, ". Pipeline statistics is being queried so the command " "buffer must have all bits set on the queryPool.", reinterpret_cast(pCB->commandBuffer), - reinterpret_cast(queryPoolData->first)); + reinterpret_cast(queryPoolData->first)); } } activeTypes.insert(queryPoolData->second.createInfo.queryType); @@ -7273,7 +7273,7 @@ bool validateSecondaryCommandBufferState(layer_data *dev_data, "of type %d but a query of that type has been started on " "secondary Cmd Buffer %p.", reinterpret_cast(pCB->commandBuffer), - reinterpret_cast(queryPoolData->first), + reinterpret_cast(queryPoolData->first), queryPoolData->second.createInfo.queryType, reinterpret_cast(pSubCB->commandBuffer)); } -- 2.7.4