aboutsummaryrefslogtreecommitdiff
path: root/layers/core_validation.h
diff options
context:
space:
mode:
authorMichael Lentine <mlentine@google.com>2016-04-20 23:01:26 -0500
committerMichael Lentine <mlentine@google.com>2016-04-21 10:48:15 -0500
commit39d6c76e0f2d5082ef035db358d0bc378ebce2f1 (patch)
treed3a71960b4cb36f2559be2c2634606ac7ce45edf /layers/core_validation.h
parent685d2e1ff51eb668a715d5f7e59999cd404b64ef (diff)
downloadusermoji-39d6c76e0f2d5082ef035db358d0bc378ebce2f1.tar.xz
layers: Fix cmd buffer tracking.
Diffstat (limited to 'layers/core_validation.h')
-rw-r--r--layers/core_validation.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/layers/core_validation.h b/layers/core_validation.h
index 8ab1bdfb..f8fe7506 100644
--- a/layers/core_validation.h
+++ b/layers/core_validation.h
@@ -592,7 +592,6 @@ class QUEUE_NODE {
list<VkDeviceMemory> pMemRefList;
#endif
vector<VkCommandBuffer> untrackedCmdBuffers;
- unordered_set<VkCommandBuffer> inFlightCmdBuffers;
unordered_map<VkEvent, VkPipelineStageFlags> eventToStageMap;
};
@@ -845,7 +844,7 @@ struct LAST_BOUND_STATE {
}
};
// Cmd Buffer Wrapper Struct
-struct GLOBAL_CB_NODE {
+struct GLOBAL_CB_NODE : public BASE_NODE {
VkCommandBuffer commandBuffer;
VkCommandBufferAllocateInfo createInfo;
VkCommandBufferBeginInfo beginInfo;