aboutsummaryrefslogtreecommitdiff
path: root/layers
diff options
context:
space:
mode:
Diffstat (limited to 'layers')
-rw-r--r--layers/core_validation_types.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/layers/core_validation_types.h b/layers/core_validation_types.h
index 677c7b9b..25d1e8cb 100644
--- a/layers/core_validation_types.h
+++ b/layers/core_validation_types.h
@@ -480,6 +480,14 @@ struct GLOBAL_CB_NODE : public BASE_NODE {
~GLOBAL_CB_NODE();
};
+struct CB_SUBMISSION {
+ CB_SUBMISSION(VkCommandBuffer cb, std::vector<VkSemaphore> const & semaphores)
+ : cb(cb), semaphores(semaphores) {}
+
+ VkCommandBuffer cb;
+ std::vector<VkSemaphore> semaphores;
+};
+
// Fwd declarations of layer_data and helpers to look-up state from layer_data maps
namespace core_validation {
struct layer_data;