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

Description

Valid Usage
  • VUID-VkAttachmentFeedbackLoopInfoEXT-unifiedImageLayouts-10782
    If the unifiedImageLayouts feature is not enabled, feedbackLoopEnable must be VK_FALSE

Valid Usage (Implicit)

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.