C Specification
Alternatively, to bind one or more descriptor sets to a command buffer, call:
// Provided by VK_VERSION_1_4
void vkCmdBindDescriptorSets2(
VkCommandBuffer commandBuffer,
const VkBindDescriptorSetsInfo* pBindDescriptorSetsInfo);
or the equivalent command
// Provided by VK_KHR_maintenance6
void vkCmdBindDescriptorSets2KHR(
VkCommandBuffer commandBuffer,
const VkBindDescriptorSetsInfo* pBindDescriptorSetsInfo);
Parameters
-
commandBuffer
is the command buffer that the descriptor sets will be bound to. -
pBindDescriptorSetsInfo
is a pointer to aVkBindDescriptorSetsInfo
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.