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;
pub struct RenderingAreaInfo {
s_type: vk::StructureType,
p_next: *const c_void,
view_mask: u32,
color_attachment_count: u32,
p_color_attachment_formats: *const vk::Format,
depth_attachment_format: vk::Format,
stencil_attachment_format: vk::Format,
}
typedef VkRenderingAreaInfo VkRenderingAreaInfoKHR;
type RenderingAreaInfoKHR = vk::RenderingAreaInfo;
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
Parent
VK_VERSION_1_4Type
Structures