VkPhysicalDeviceMultiDrawPropertiesEXT(3)

Name

VkPhysicalDeviceMultiDrawPropertiesEXT - Structure describing multidraw limits of an implementation

C Specification

The VkPhysicalDeviceMultiDrawPropertiesEXT structure is defined as:

// Provided by VK_EXT_multi_draw
typedef struct VkPhysicalDeviceMultiDrawPropertiesEXT {
    VkStructureType    sType;
    void*              pNext;
    uint32_t           maxMultiDrawCount;
} VkPhysicalDeviceMultiDrawPropertiesEXT;

Members

The members of the VkPhysicalDeviceMultiDrawPropertiesEXT structure describe the following features:

Description

  • maxMultiDrawCount indicates the maximum number of draw calls which can be batched into a single multidraw.

If the VkPhysicalDeviceMultiDrawPropertiesEXT structure is included in the pNext chain of the VkPhysicalDeviceProperties2 structure passed to vkGetPhysicalDeviceProperties2, it is filled in with each corresponding implementation-dependent property.

Valid Usage (Implicit)
  • VUID-VkPhysicalDeviceMultiDrawPropertiesEXT-sType-sType
    sType must be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTI_DRAW_PROPERTIES_EXT

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.