vkCmdEndRendering2EXT(3)
C Specification
Alternatively, to end a render pass instance, call:
// Provided by VK_EXT_fragment_density_map_offset
void vkCmdEndRendering2EXT(
VkCommandBuffer commandBuffer,
const VkRenderingEndInfoEXT* pRenderingEndInfo);
Parameters
-
commandBuffer
is the command buffer in which to record the command. -
pRenderingEndInfo
isNULL
or a pointer to a VkRenderingEndInfoEXT structure containing information about how the render pass will be ended.
Description
If the value of pRenderingInfo->flags
used to begin this render pass
instance included VK_RENDERING_SUSPENDING_BIT
, then this render pass
is suspended and will be resumed later in
submission order.
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.