fixed GRP fragment blending using post-blend clamping

This commit is contained in:
myT 2024-04-14 00:10:52 +02:00
parent 156c95f9a7
commit b7522d8f7c

View file

@ -216,6 +216,7 @@ void ProcessFullStage(inout float4 dst, float4 color, float2 texCoords, uint tex
if(!FailsAlphaTest(src.a, stateBits & GLS_ATEST_BITS))
{
dst = Blend(src, dst, stateBits);
dst = saturate(dst);
}
}