C Specification
The VkDrawIndirectCommand structure is defined as:
typedef struct VkDrawIndirectCommand {
    uint32_t    vertexCount;
    uint32_t    instanceCount;
    uint32_t    firstVertex;
    uint32_t    firstInstance;
} VkDrawIndirectCommand;Members
- 
vertexCountis the number of vertices to draw.
- 
instanceCountis the number of instances to draw.
- 
firstVertexis the index of the first vertex to draw.
- 
firstInstanceis the instance ID of the first instance to draw.
Description
The members of VkDrawIndirectCommand have the same meaning as the
similarly named parameters of vkCmdDraw.
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.
Copyright
Copyright (c) 2014-2020 Khronos Group. This work is licensed under a Creative Commons Attribution 4.0 International License.