VkWriteIndirectExecutionSetPipelineEXT(3)
Name
VkWriteIndirectExecutionSetPipelineEXT - Struct specifying pipeline update information for an indirect execution set
C Specification
The VkWriteIndirectExecutionSetPipelineEXT
structure is defined as:
// Provided by VK_EXT_device_generated_commands
typedef struct VkWriteIndirectExecutionSetPipelineEXT {
VkStructureType sType;
const void* pNext;
uint32_t index;
VkPipeline pipeline;
} VkWriteIndirectExecutionSetPipelineEXT;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
index
is the element of the set to update -
pipeline
is the pipeline to store in the indirect execution set
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.