Structures
VkPhysicalDeviceMultiDrawPropertiesEXT
Structure describing multidraw limits of an implementation
The VkPhysicalDeviceMultiDrawPropertiesEXT structure is defined as:
typedef struct VkPhysicalDeviceMultiDrawPropertiesEXT {
VkStructureType sType;
void* pNext;
uint32_t maxMultiDrawCount;
} VkPhysicalDeviceMultiDrawPropertiesEXT;
pub struct PhysicalDeviceMultiDrawPropertiesEXT {
s_type: vk::StructureType,
p_next: *mut c_void,
max_multi_draw_count: u32,
}
The members of the VkPhysicalDeviceMultiDrawPropertiesEXT structure
describe the following features:
maxMultiDrawCountindicates 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