From 8d070e54a1b36f695299b6a89705c7946c596e54 Mon Sep 17 00:00:00 2001 From: Joshua Ashton Date: Fri, 5 Aug 2022 19:07:59 +0000 Subject: [PATCH] [d3d9] Enable extAttachmentFeedbackLoopLayout feature if available --- src/d3d9/d3d9_device.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/d3d9/d3d9_device.cpp b/src/d3d9/d3d9_device.cpp index f972daa42..b483ba35d 100644 --- a/src/d3d9/d3d9_device.cpp +++ b/src/d3d9/d3d9_device.cpp @@ -3963,6 +3963,9 @@ namespace dxvk { enabled.extCustomBorderColor.customBorderColorWithoutFormat = VK_TRUE; } + if (supported.extAttachmentFeedbackLoopLayout.attachmentFeedbackLoopLayout) + enabled.extAttachmentFeedbackLoopLayout.attachmentFeedbackLoopLayout = VK_TRUE; + enabled.extNonSeamlessCubeMap.nonSeamlessCubeMap = supported.extNonSeamlessCubeMap.nonSeamlessCubeMap; return enabled;