Structures
VkIndirectCommandsTokenDataEXT
Union specifying the token-specific details of an indirect command layout token
The VkIndirectCommandsTokenDataEXT
structure provides token-specific
details used to generate the indirect execution layout.
typedef union VkIndirectCommandsTokenDataEXT {
const VkIndirectCommandsPushConstantTokenEXT* pPushConstant;
const VkIndirectCommandsVertexBufferTokenEXT* pVertexBuffer;
const VkIndirectCommandsIndexBufferTokenEXT* pIndexBuffer;
const VkIndirectCommandsExecutionSetTokenEXT* pExecutionSet;
} VkIndirectCommandsTokenDataEXT;
pPushConstant
is a pointer to a VkIndirectCommandsPushConstantTokenEXT struct needed forVK_INDIRECT_COMMANDS_TOKEN_TYPE_PUSH_CONSTANT_EXT
andVK_INDIRECT_COMMANDS_TOKEN_TYPE_SEQUENCE_INDEX_EXT
tokenspVertexBuffer
is a pointer to a VkIndirectCommandsVertexBufferTokenEXT struct needed forVK_INDIRECT_COMMANDS_TOKEN_TYPE_VERTEX_BUFFER_EXT
tokenspIndexBuffer
is a pointer to a VkIndirectCommandsIndexBufferTokenEXT struct needed forVK_INDIRECT_COMMANDS_TOKEN_TYPE_INDEX_BUFFER_EXT
tokenspExecutionSet
is a pointer to a VkIndirectCommandsExecutionSetTokenEXT struct needed forVK_INDIRECT_COMMANDS_TOKEN_TYPE_EXECUTION_SET_EXT
tokens
The appropriate member of the union must be set for each token.
The following code provides detailed information on how an individual sequence is processed. For valid usage, all restrictions from the regular commands apply.