unplugged-vendor/device/generic/vulkan-cereal/protocols/vulkan/api/structs/VkSubmitInfo.txt

17 lines
651 B
Plaintext

// WARNING: DO NOT MODIFY! This file is automatically generated from the vk.xml registry
[[VkSubmitInfo,VkSubmitInfo]]
[source,c++]
----
typedef struct VkSubmitInfo {
VkStructureType sType;
const void* pNext;
uint32_t waitSemaphoreCount;
const VkSemaphore* pWaitSemaphores;
const VkPipelineStageFlags* pWaitDstStageMask;
uint32_t commandBufferCount;
const VkCommandBuffer* pCommandBuffers;
uint32_t signalSemaphoreCount;
const VkSemaphore* pSignalSemaphores;
} VkSubmitInfo;
----