C Specification
The VkRenderingFragmentDensityMapAttachmentInfoEXT
structure is
defined as:
// Provided by VK_KHR_dynamic_rendering with VK_EXT_fragment_density_map
typedef struct VkRenderingFragmentDensityMapAttachmentInfoEXT {
VkStructureType sType;
const void* pNext;
VkImageView imageView;
VkImageLayout imageLayout;
} VkRenderingFragmentDensityMapAttachmentInfoEXT;
Members
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
imageView
is the image view that will be used as a fragment density map attachment. -
imageLayout
is the layout thatimageView
will be in during rendering.
Description
This structure can be included in the pNext
chain of
VkRenderingInfo to define a fragment density map.
If this structure is not included in the pNext
chain, imageView
is treated as VK_NULL_HANDLE.
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.