vkCmdPushDescriptorSetWithTemplate2(3)
Name
vkCmdPushDescriptorSetWithTemplate2 - Pushes descriptor updates into a command buffer using a descriptor update template
C Specification
Alternatively, to use a descriptor update template to specify the push descriptors to update, call:
// Provided by VK_VERSION_1_4
void vkCmdPushDescriptorSetWithTemplate2(
VkCommandBuffer commandBuffer,
const VkPushDescriptorSetWithTemplateInfo* pPushDescriptorSetWithTemplateInfo);
or the equivalent command
// Provided by VK_KHR_maintenance6 with VK_KHR_push_descriptor
void vkCmdPushDescriptorSetWithTemplate2KHR(
VkCommandBuffer commandBuffer,
const VkPushDescriptorSetWithTemplateInfo* pPushDescriptorSetWithTemplateInfo);
Parameters
-
commandBuffer
is the command buffer that the descriptors will be recorded in. -
pPushDescriptorSetWithTemplateInfo
is a pointer to aVkPushDescriptorSetWithTemplateInfo
structure.
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.