C Specification
VkDrawIndirectCount2InfoKHR is defined as:
// Provided by VK_KHR_device_address_commands
typedef struct VkDrawIndirectCount2InfoKHR {
VkStructureType sType;
const void* pNext;
VkStridedDeviceAddressRangeKHR addressRange;
VkAddressCommandFlagsKHR addressFlags;
VkDeviceAddressRangeKHR countAddressRange;
VkAddressCommandFlagsKHR countAddressFlags;
uint32_t maxDrawCount;
} VkDrawIndirectCount2InfoKHR;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
addressRangeis the VkStridedDeviceAddressRangeKHR containing draw parameters. -
addressFlagsis a VkAddressCommandFlagsKHR value defining the flags for the address range. -
countAddressRangeis the VkDeviceAddressRangeKHR containing the draw count. -
countAddressFlagsis a VkAddressCommandFlagsKHR value defining the flags for the count address range. -
maxDrawCountspecifies the maximum number of draws that will be executed. The actual number of executed draw calls is the minimum of the count specified incountAddressRangeandmaxDrawCount.
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.