vkCmdPushDescriptorSet2(3)
C Specification
Alternatively, to push descriptor updates into a command buffer, call:
// Provided by VK_VERSION_1_4
void vkCmdPushDescriptorSet2(
VkCommandBuffer commandBuffer,
const VkPushDescriptorSetInfo* pPushDescriptorSetInfo);
or the equivalent command
// Provided by VK_KHR_maintenance6 with VK_KHR_push_descriptor
void vkCmdPushDescriptorSet2KHR(
VkCommandBuffer commandBuffer,
const VkPushDescriptorSetInfo* pPushDescriptorSetInfo);
Parameters
-
commandBuffer
is the command buffer that the descriptors will be recorded in. -
pPushDescriptorSetInfo
is a pointer to aVkPushDescriptorSetInfo
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.