From 0637682eb0cbbb925aa3618f76e3f5dbf7d13dd3 Mon Sep 17 00:00:00 2001 From: TellowKrinkle Date: Sat, 8 Oct 2022 21:27:49 -0500 Subject: [PATCH] GS:HW: Properly handle fbmask of negative values Previously was possible with blending and colclip, but now more common with the new hdr algorithm --- bin/resources/shaders/dx11/tfx.fx | 2 +- bin/resources/shaders/opengl/tfx_fs.glsl | 2 +- bin/resources/shaders/vulkan/tfx.glsl | 2 +- pcsx2/GS/Renderers/Metal/tfx.metal | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/resources/shaders/dx11/tfx.fx b/bin/resources/shaders/dx11/tfx.fx index 7303a03995..bd1be829b0 100644 --- a/bin/resources/shaders/dx11/tfx.fx +++ b/bin/resources/shaders/dx11/tfx.fx @@ -715,7 +715,7 @@ void ps_fbmask(inout float4 C, float2 pos_xy) if (PS_FBMASK) { float4 RT = trunc(RtTexture.Load(int3(pos_xy, 0)) * 255.0f + 0.1f); - C = (float4)(((uint4)C & ~FbMask) | ((uint4)RT & FbMask)); + C = (float4)(((uint4)(int4)C & (FbMask ^ 0xFF) | ((uint4)RT & FbMask)); } } diff --git a/bin/resources/shaders/opengl/tfx_fs.glsl b/bin/resources/shaders/opengl/tfx_fs.glsl index c2be00f824..4546cea1f8 100644 --- a/bin/resources/shaders/opengl/tfx_fs.glsl +++ b/bin/resources/shaders/opengl/tfx_fs.glsl @@ -620,7 +620,7 @@ void ps_fbmask(inout vec4 C) // FIXME do I need special case for 16 bits #if PS_FBMASK vec4 RT = trunc(fetch_rt() * 255.0f + 0.1f); - C = vec4((uvec4(C) & ~FbMask) | (uvec4(RT) & FbMask)); + C = vec4((uvec4(ivec4(C)) & (FbMask ^ 0xFFu)) | (uvec4(RT) & FbMask)); #endif } diff --git a/bin/resources/shaders/vulkan/tfx.glsl b/bin/resources/shaders/vulkan/tfx.glsl index fab2a71efd..6a02a556aa 100644 --- a/bin/resources/shaders/vulkan/tfx.glsl +++ b/bin/resources/shaders/vulkan/tfx.glsl @@ -946,7 +946,7 @@ void ps_fbmask(inout vec4 C) { #if PS_FBMASK vec4 RT = trunc(sample_from_rt() * 255.0f + 0.1f); - C = vec4((uvec4(C) & ~FbMask) | (uvec4(RT) & FbMask)); + C = vec4((uvec4(ivec4(C)) & (FbMask ^ 0xFFu)) | (uvec4(RT) & FbMask)); #endif } diff --git a/pcsx2/GS/Renderers/Metal/tfx.metal b/pcsx2/GS/Renderers/Metal/tfx.metal index 45cf130c7c..821cbeba11 100644 --- a/pcsx2/GS/Renderers/Metal/tfx.metal +++ b/pcsx2/GS/Renderers/Metal/tfx.metal @@ -767,7 +767,7 @@ struct PSMain void ps_fbmask(thread float4& C) { if (PS_FBMASK) - C = float4((uint4(C) & ~cb.fbmask) | (uint4(current_color * 255.5) & cb.fbmask)); + C = float4((uint4(int4(C)) & (cb.fbmask ^ 0xff)) | (uint4(current_color * 255.5) & cb.fbmask)); } void ps_dither(thread float4& C)