From 8a638ce9718945fababf363797bdf938e477e06d Mon Sep 17 00:00:00 2001 From: Hans-Kristian Arntzen Date: Thu, 13 Dec 2018 16:45:08 +0100 Subject: [PATCH] Clamp IR factor to 8 with SSAA. Looks better as we don't have a 16x16 block resolver yet. --- rsx/rsx_lib_vulkan.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rsx/rsx_lib_vulkan.cpp b/rsx/rsx_lib_vulkan.cpp index f2cb3d74..1ee6b63c 100644 --- a/rsx/rsx_lib_vulkan.cpp +++ b/rsx/rsx_lib_vulkan.cpp @@ -200,6 +200,10 @@ void rsx_vulkan_refresh_variables(void) widescreen_hack = false; } + // There is no correct resolve shader for 16x IR yet, so 8x looks better. + if (super_sampling && scaling > 8) + scaling = 8; + if ((old_scaling != scaling || old_super_sampling != super_sampling) && renderer) { retro_system_av_info info;