mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-30 04:10:43 +00:00
Clamp IR factor to 8 with SSAA.
Looks better as we don't have a 16x16 block resolver yet.
This commit is contained in:
parent
c46b03ab70
commit
8a638ce971
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user