C Specification
The VkIndirectCommandsLayoutTokenNV structure specifies details to the
function arguments that need to be known at layout creation time:
// Provided by VK_NV_device_generated_commands
typedef struct VkIndirectCommandsLayoutTokenNV {
    VkStructureType                  sType;
    const void*                      pNext;
    VkIndirectCommandsTokenTypeNV    tokenType;
    uint32_t                         stream;
    uint32_t                         offset;
    uint32_t                         vertexBindingUnit;
    VkBool32                         vertexDynamicStride;
    VkPipelineLayout                 pushconstantPipelineLayout;
    VkShaderStageFlags               pushconstantShaderStageFlags;
    uint32_t                         pushconstantOffset;
    uint32_t                         pushconstantSize;
    VkIndirectStateFlagsNV           indirectStateFlags;
    uint32_t                         indexTypeCount;
    const VkIndexType*               pIndexTypes;
    const uint32_t*                  pIndexTypeValues;
} VkIndirectCommandsLayoutTokenNV;Members
- 
sTypeis a VkStructureType value identifying this structure.
- 
pNextisNULLor a pointer to a structure extending this structure.
- 
tokenTypeis a VkIndirectCommandsTokenTypeNV specifying the token command type.
- 
streamis the index of the input stream containing the token argument data.
- 
offsetis a relative starting offset within the input stream memory for the token argument data.
- 
vertexBindingUnitis used for the vertex buffer binding command.
- 
vertexDynamicStridesets if the vertex buffer stride is provided by the binding command rather than the current bound graphics pipeline state.
- 
pushconstantPipelineLayoutis theVkPipelineLayoutused for the push constant command.
- 
pushconstantShaderStageFlagsare the shader stage flags used for the push constant command.
- 
pushconstantOffsetis the offset used for the push constant command.
- 
pushconstantSizeis the size used for the push constant command.
- 
indirectStateFlagsis a VkIndirectStateFlagsNV bitfield indicating the active states for the state flag command.
- 
indexTypeCountis the optional size of thepIndexTypesandpIndexTypeValuesarray pairings. If not zero, it allows to register a customuint32_tvalue to be treated as specific VkIndexType.
- 
pIndexTypesis the used VkIndexType for the correspondinguint32_tvalue entry inpIndexTypeValues.
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.