From 42124c6755239f6a788e19731f593847a9873b55 Mon Sep 17 00:00:00 2001 From: JPikachu Date: Sat, 26 Jul 2025 23:33:22 +0100 Subject: [PATCH] [DO NOT MERGE] [vk] Fake D24 is always unsupported to balance nvidia hegemony --- src/video_core/vulkan_common/vulkan_device.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h index 9b78f2e599..bcae6009f3 100644 --- a/src/video_core/vulkan_common/vulkan_device.h +++ b/src/video_core/vulkan_common/vulkan_device.h @@ -391,7 +391,7 @@ public: /// Returns true when blitting from and to D24S8 images is supported. bool IsBlitDepth24Stencil8Supported() const { - return is_blit_depth24_stencil8_supported; + return false; } /// Returns true when blitting from and to D32S8 images is supported. @@ -650,7 +650,7 @@ public: } bool SupportsD24DepthBuffer() const { - return supports_d24_depth; + return false; } bool CantBlitMSAA() const {