aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Lobodzinski <mark@lunarg.com>2016-01-29 10:13:51 -0700
committerMark Lobodzinski <mark@lunarg.com>2016-01-29 11:01:16 -0700
commitb090e4f08947bfc3719f1c74f5d3a3bb55197a98 (patch)
tree22634889d3d96c1ba1b4fe04fd6ba7c2185a0301
parent01d33c4e0be7b860e52d72424eba1d75e8fe946e (diff)
downloadusermoji-b090e4f08947bfc3719f1c74f5d3a3bb55197a98.tar.xz
layers: MR178, Merge-related fix
-rw-r--r--layers/draw_state.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/draw_state.cpp b/layers/draw_state.cpp
index 30305ee8..5358f7ce 100644
--- a/layers/draw_state.cpp
+++ b/layers/draw_state.cpp
@@ -3696,7 +3696,7 @@ VkBool32 validateCommandBuffersNotInUse(const layer_data* dev_data, VkCommandPoo
if (pool_data != dev_data->commandPoolMap.end()) {
for (auto cmdBuffer : pool_data->second.commandBuffers) {
if (dev_data->globalInFlightCmdBuffers.count(cmdBuffer)) {
- skip_call |= log_msg(dev_data->report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT, (uint64_t)(commandPool),
+ skipCall |= log_msg(dev_data->report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT, (uint64_t)(commandPool),
__LINE__, DRAWSTATE_OBJECT_INUSE, "DS", "Cannot reset command pool %" PRIx64 " when allocated command buffer %" PRIx64 " is in use.",
(uint64_t)(commandPool), (uint64_t)(cmdBuffer));
}