Structures
VkMultiDrawInfoEXT
Structure specifying a multi-draw command
The VkMultiDrawInfoEXT structure is defined as:
typedef struct VkMultiDrawInfoEXT {
uint32_t firstVertex;
uint32_t vertexCount;
} VkMultiDrawInfoEXT;
pub struct MultiDrawInfoEXT {
first_vertex: u32,
vertex_count: u32,
}
firstVertexis the first vertex to draw.vertexCountis the number of vertices to draw.
The members of VkMultiDrawInfoEXT have the same meaning as the
firstVertex and vertexCount parameters in vkCmdDraw.
Parent
VK_EXT_multi_drawType
Structures