Structures
VkMultiDrawIndexedInfoEXT
Structure specifying a multi-draw command
The VkMultiDrawIndexedInfoEXT structure is defined as:
typedef struct VkMultiDrawIndexedInfoEXT {
uint32_t firstIndex;
uint32_t indexCount;
int32_t vertexOffset;
} VkMultiDrawIndexedInfoEXT;
pub struct MultiDrawIndexedInfoEXT {
first_index: u32,
index_count: u32,
vertex_offset: i32,
}
firstIndexis the first index to draw.indexCountis the number of vertices to draw.vertexOffsetis the value added to the vertex index before indexing into the vertex buffer for indexed multidraws.
The firstIndex, indexCount, and vertexOffset members of
VkMultiDrawIndexedInfoEXT have the same meaning as the
firstIndex, indexCount, and vertexOffset parameters,
respectively, of vkCmdDrawIndexed.
Parent
VK_EXT_multi_drawType
Structures