Class VkSubmitInfo

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class VkSubmitInfo extends Struct<VkSubmitInfo> implements NativeResource
struct VkSubmitInfo {
    VkStructureType sType;
    void const * pNext;
    uint32_t waitSemaphoreCount;
    VkSemaphore const * pWaitSemaphores;
    VkPipelineStageFlags const * pWaitDstStageMask;
    uint32_t commandBufferCount;
    VkCommandBuffer const * pCommandBuffers;
    uint32_t signalSemaphoreCount;
    VkSemaphore const * pSignalSemaphores;
}