1// WARNING: DO NOT MODIFY! This file is automatically generated from the vk.xml registry 2[[VkSubmitInfo,VkSubmitInfo]] 3[source,c++] 4---- 5typedef struct VkSubmitInfo { 6 VkStructureType sType; 7 const void* pNext; 8 uint32_t waitSemaphoreCount; 9 const VkSemaphore* pWaitSemaphores; 10 const VkPipelineStageFlags* pWaitDstStageMask; 11 uint32_t commandBufferCount; 12 const VkCommandBuffer* pCommandBuffers; 13 uint32_t signalSemaphoreCount; 14 const VkSemaphore* pSignalSemaphores; 15} VkSubmitInfo; 16---- 17