Structures
VkRenderPassSubpassFeedbackInfoEXT
Feedback about the creation of subpass
The VkRenderPassSubpassFeedbackInfoEXT structure is defined as:
typedef struct VkRenderPassSubpassFeedbackInfoEXT {
VkSubpassMergeStatusEXT subpassMergeStatus;
char description[VK_MAX_DESCRIPTION_SIZE];
uint32_t postMergeIndex;
} VkRenderPassSubpassFeedbackInfoEXT;
subpassMergeStatusis aVkSubpassMergeStatusEXTvalue specifying information about whether the subpass is merged with the previous subpass and the reason why it is not merged.descriptionis an array ofVK_MAX_DESCRIPTION_SIZEcharcontaining a null-terminated UTF-8 string which provides additional details.postMergeIndexis the subpass index after the subpass merging.