C Specification
Pipeline elements in an Indirect Execution Set can be updated by calling:
// Provided by VK_EXT_device_generated_commands
void vkUpdateIndirectExecutionSetPipelineEXT(
VkDevice device,
VkIndirectExecutionSetEXT indirectExecutionSet,
uint32_t executionSetWriteCount,
const VkWriteIndirectExecutionSetPipelineEXT* pExecutionSetWrites);
Parameters
-
device
is the logical device that owns the indirect execution set. -
indirectExecutionSet
is the indirect execution set being updated. -
executionSetWriteCount
is the number of elements in thepExecutionSetWrites
array. -
pExecutionSetWrites
is a pointer to an array of VkWriteIndirectExecutionSetPipelineEXT structures describing the elements to update.
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.