VkDrawIndirectCountIndirectCommandEXT(3)
Name
VkDrawIndirectCountIndirectCommandEXT - Structure specifying input data for a single draw-type command token
C Specification
The VkDrawIndirectCountIndirectCommandEXT
structure specifies the
input data for all draw-type tokens.
// Provided by VK_EXT_device_generated_commands
typedef struct VkDrawIndirectCountIndirectCommandEXT {
VkDeviceAddress bufferAddress;
uint32_t stride;
uint32_t commandCount;
} VkDrawIndirectCountIndirectCommandEXT;
Members
-
bufferAddress
specifies a physical address of the VkBuffer used for draw commands. -
stride
is the byte size stride for the command arguments -
commandCount
is the number of commands to execute
See Also
VK_EXT_device_generated_commands, VkDeviceAddress
Document Notes
For more information, see the Vulkan Specification.
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.