Structures
VkAttachmentFeedbackLoopInfoEXT
Structure specifying whether feedback loop is enabled for an attachment
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:
typedef struct VkAttachmentFeedbackLoopInfoEXT {
VkStructureType sType;
const void* pNext;
VkBool32 feedbackLoopEnable;
} VkAttachmentFeedbackLoopInfoEXT;
pub struct AttachmentFeedbackLoopInfoEXT {
s_type: vk::StructureType,
p_next: *const c_void,
feedback_loop_enable: vk::Bool32,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.feedbackLoopEnablespecifies that feedback loop is enabled for the attachment identified by VkRenderingAttachmentInfo::imageView.
Valid Usage
VUID-VkAttachmentFeedbackLoopInfoEXT-unifiedImageLayouts-10782
If the unifiedImageLayouts
feature is not enabled, feedbackLoopEnable must be VK_FALSE
Valid Usage (Implicit)
VUID-VkAttachmentFeedbackLoopInfoEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_ATTACHMENT_FEEDBACK_LOOP_INFO_EXT