From 473ae3c89b4496e45d9c9f3493f896962a7f011e Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 31 Jul 2023 11:11:50 -0400 Subject: [PATCH] zink: add feedback loop exts to optimal profile base feedback loop ext is more like a hard requirement, but it's tough to pin down exactly which version requires it, and also it might "just work" magically, so...yeah here we are Part-of: --- src/gallium/drivers/zink/VP_ZINK_requirements.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/zink/VP_ZINK_requirements.json b/src/gallium/drivers/zink/VP_ZINK_requirements.json index 8be2916..1ba3c9f 100644 --- a/src/gallium/drivers/zink/VP_ZINK_requirements.json +++ b/src/gallium/drivers/zink/VP_ZINK_requirements.json @@ -387,7 +387,9 @@ "VK_EXT_extended_dynamic_state3": 1, "VK_EXT_graphics_pipeline_library": 1, "VK_EXT_non_seamless_cube_map": 1, - "VK_KHR_pipeline_library": 1 + "VK_KHR_pipeline_library": 1, + "VK_EXT_attachment_feedback_loop_layout": 1, + "VK_EXT_attachment_feedback_loop_dynamic_state": 1 }, "features": { "VkPhysicalDeviceExtendedDynamicStateFeaturesEXT": { @@ -417,6 +419,12 @@ }, "VkPhysicalDeviceProvokingVertexFeaturesEXT": { "provokingVertexLast": true + }, + "VkPhysicalDeviceAttachmentFeedbackLoopLayoutFeaturesEXT": { + "attachmentFeedbackLoopLayout": true + }, + "VkPhysicalDeviceAttachmentFeedbackLoopDynamicStateFeaturesEXT": { + "attachmentFeedbackLoopDynamicState": true } }, "properties": { -- 2.7.4