VkAttachmentFeedbackLoopInfoEXT(3)
Name
VkAttachmentFeedbackLoopInfoEXT - Structure specifying whether feedback loop is enabled for an attachment
C Specification
To enable feedback loop for an attachment, the
VkAttachmentFeedbackLoopInfoEXT
structure can be added to the
pNext
chain of VkRenderingAttachmentInfo.
The VkAttachmentFeedbackLoopInfoEXT
structure is defined as:
// Provided by VK_KHR_unified_image_layouts with VK_EXT_attachment_feedback_loop_layout and (VK_VERSION_1_3 or VK_KHR_dynamic_rendering)
typedef struct VkAttachmentFeedbackLoopInfoEXT {
VkStructureType sType;
const void* pNext;
VkBool32 feedbackLoopEnable;
} VkAttachmentFeedbackLoopInfoEXT;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
feedbackLoopEnable
specifies that feedback loop is enabled for the attachment identified by VkRenderingAttachmentInfo::imageView
.
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.