VkSubmitInfo | NVK Search
  1. No Results
Categories
VkSubmitInfo Structure specifying a queue submit operation Syntax
submitInfo = VkSubmitInfo();
submitInfo = new VkSubmitInfo();
submitInfo = new VkSubmitInfo(object);
Stub Parameters object When instantiated with an object, members can be filled directly. Properties VkSubmitInfo.prototype.sType VkStructureType is the type of this structure. VkSubmitInfo.prototype.pNext null is null or a reference to a structure extending this structure. VkSubmitInfo.prototype.waitSemaphoreCount Number is the number of semaphores upon which to wait before executing the command buffers for the batch. VkSubmitInfo.prototype.pWaitSemaphores Array[VkSemaphore] is an array of VkSemaphore handles upon which to wait before the command buffers for this batch begin execution. If semaphores to wait on are provided, they define a <>. VkSubmitInfo.prototype.pWaitDstStageMask Int32Array is an array of pipeline stages at which each corresponding semaphore wait will occur. VkSubmitInfo.prototype.commandBufferCount Number is the number of command buffers to execute in the batch. VkSubmitInfo.prototype.pCommandBuffers Array[VkCommandBuffer] is an array of VkCommandBuffer handles to execute in the batch. VkSubmitInfo.prototype.signalSemaphoreCount Number is the number of semaphores to be signaled once the commands specified in pCommandBuffers have completed execution. VkSubmitInfo.prototype.pSignalSemaphores Array[VkSemaphore] is an array of VkSemaphore handles which will be signaled when the command buffers for this batch have completed execution. If semaphores to be signaled are provided, they define a <>. Default Properties VkSubmitInfo.prototype.memoryBuffer ArrayBuffer Native memory reference of the structure. VkSubmitInfo.memoryLayout Object Object describing the structure's memory layout. VkSubmitInfo.byteLength Number Total native byte length of the structure. Internal Properties These properties are mainly used by nvk internally. VkSubmitInfo.reset Resets the native memory of the structure. VkSubmitInfo.flush Writes the structure's data into the native memory. VkSubmitInfo.reflect Synchronizes the structure's data with the native memory.