vkCmdPushDescriptorSetKHR | NVK Search
  1. No Results
Categories
vkCmdPushDescriptorSetKHR Pushes descriptor updates into a command buffer Syntax
void vkCmdPushDescriptorSetKHR();
Parameters commandBuffer VkCommandBuffer is the command buffer that the descriptors will be recorded in. pipelineBindPoint VkPipelineBindPoint is a VkPipelineBindPoint indicating whether the descriptors will be used by graphics pipelines or compute pipelines. There is a separate set of push descriptor bindings for each of graphics and compute, so binding one does not disturb the other. layout VkPipelineLayout is a VkPipelineLayout object used to program the bindings. set Number is the set number of the descriptor set in the pipeline layout that will be updated. descriptorWriteCount Number is the number of elements in the pDescriptorWrites array. pDescriptorWrites Array[VkWriteDescriptorSet] is an array of VkWriteDescriptorSet structures describing the descriptors to be updated.