vkCmdSetRenderingAttachmentLocations
To set the fragment output location mappings during rendering, call:
void vkCmdSetRenderingAttachmentLocationsKHR(
VkCommandBuffer commandBuffer,
const VkRenderingAttachmentLocationInfo* pLocationInfo);
commandBufferis the command buffer into which the command will be recorded.pLocationInfois a VkRenderingAttachmentLocationInfo structure indicating the new mappings.
This command sets the attachment location mappings for subsequent drawing commands, and must match the mappings provided to the bound pipeline, if one is bound, which can be set by chaining VkRenderingAttachmentLocationInfo to VkGraphicsPipelineCreateInfo.
Until this command is called, mappings in the command buffer state are
treated as each color attachment specified in vkCmdBeginRendering
having a location equal to its index in
VkRenderingInfo::pColorAttachments.
This state is reset whenever vkCmdBeginRendering is called.
Valid Usage
VUID-vkCmdSetRenderingAttachmentLocations-dynamicRenderingLocalRead-09509
dynamicRenderingLocalReadmust be enabled
VUID-vkCmdSetRenderingAttachmentLocations-pLocationInfo-09510
pLocationInfo→colorAttachmentCount must be equal to the value of
VkRenderingInfo::colorAttachmentCount used to begin the
current render pass instance
VUID-vkCmdSetRenderingAttachmentLocations-commandBuffer-09511
The current render pass instance must have been started or resumed by
vkCmdBeginRendering in this commandBuffer
Valid Usage (Implicit)
VUID-vkCmdSetRenderingAttachmentLocations-commandBuffer-parameter
commandBuffer must be a valid VkCommandBuffer handle
VUID-vkCmdSetRenderingAttachmentLocations-pLocationInfo-parameter
pLocationInfo must be a valid pointer to a valid VkRenderingAttachmentLocationInfo structure
VUID-vkCmdSetRenderingAttachmentLocations-commandBuffer-recording
commandBuffer must be in the recording state
VUID-vkCmdSetRenderingAttachmentLocations-commandBuffer-cmdpool
The VkCommandPool that commandBuffer was allocated from must support graphics operations
VUID-vkCmdSetRenderingAttachmentLocations-renderpass
This command must only be called inside of a render pass instance
VUID-vkCmdSetRenderingAttachmentLocations-videocoding
This command must only be called outside of a video coding scope
Host Synchronization
- Host access to
commandBuffermust be externally synchronized - Host access to the
VkCommandPoolthatcommandBufferwas allocated from must be externally synchronized ::