From 8d7f992792ab734281fcaaceafae012a5231fef4 Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Wed, 29 Jul 2026 13:22:20 -0400 Subject: [PATCH] Enable DR --- src/video_core/vulkan_common/vulkan_device.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h index daabb971b3..91d1905733 100644 --- a/src/video_core/vulkan_common/vulkan_device.h +++ b/src/video_core/vulkan_common/vulkan_device.h @@ -587,7 +587,6 @@ FN_MAX_LIMIT_LIST } /// Returns true if depth/stencil operations can be performed efficiently. - /// Either through shader export or hardware blits. bool CanPerformDepthStencilOperations() const { return extensions.shader_stencil_export || is_blit_depth24_stencil8_supported || is_blit_depth32_stencil8_supported; @@ -942,7 +941,7 @@ FN_MAX_LIMIT_LIST return extensions.maintenance3; } - static constexpr bool ENABLE_DYNAMIC_RENDERING = false; + static constexpr bool ENABLE_DYNAMIC_RENDERING = true; /// Returns true if the device supports VK_KHR_dynamic_rendering. bool IsKhrDynamicRenderingSupported() const {