Structures
VkMultiDrawInfoEXT
Structure specifying a multi-draw command
The VkMultiDrawInfoEXT structure is defined as:
typedef struct VkMultiDrawInfoEXT {
uint32_t firstVertex;
uint32_t vertexCount;
} VkMultiDrawInfoEXT;
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.