Structures
VkRenderingAreaInfo
Structure describing rendering area granularity query info
The VkRenderingAreaInfo structure is defined as:
typedef struct VkRenderingAreaInfo {
VkStructureType sType;
const void* pNext;
uint32_t viewMask;
uint32_t colorAttachmentCount;
const VkFormat* pColorAttachmentFormats;
VkFormat depthAttachmentFormat;
VkFormat stencilAttachmentFormat;
} VkRenderingAreaInfo;
or the equivalent
typedef VkRenderingAreaInfo VkRenderingAreaInfoKHR;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.viewMaskis the viewMask used for rendering.colorAttachmentCountis the number of entries inpColorAttachmentFormatspColorAttachmentFormatsis a pointer to an array of VkFormat values defining the format of color attachments used in the render pass instance.depthAttachmentFormatis a VkFormat value defining the format of the depth attachment used in the render pass instance.stencilAttachmentFormatis a VkFormat value defining the format of the stencil attachment used in the render pass instance.
Valid Usage (Implicit)
VUID-VkRenderingAreaInfo-sType-sType
sType must be VK_STRUCTURE_TYPE_RENDERING_AREA_INFO
VUID-VkRenderingAreaInfo-pNext-pNext
pNext must be NULL