Structures

VkMultiDrawInfoEXT

Structure specifying a multi-draw command

The VkMultiDrawInfoEXT structure is defined as:

typedef struct VkMultiDrawInfoEXT {
    uint32_t firstVertex;
    uint32_t vertexCount;
} VkMultiDrawInfoEXT;
  • firstVertex is the first vertex to draw.
  • vertexCount is the number of vertices to draw.

The members of VkMultiDrawInfoEXT have the same meaning as the firstVertex and vertexCount parameters in vkCmdDraw.