fixed incorrect drops of pre-multiplied alpha OIT fragments

- it assumes texture data is actually pre-multiplied
- trusting user-generated content to make sense is misguided
This commit is contained in:
myT 2025-02-12 03:05:58 +01:00
parent a158bb06fa
commit 0684780348

View file

@ -92,7 +92,7 @@ bool IsFragmentUseless(uint blendBits, float4 color)
{
return true;
}
if((blendBits == GLS_BLEND_STD_ALPHA || blendBits == GLS_BLEND_PMUL_ALPHA) &&
if(blendBits == GLS_BLEND_STD_ALPHA &&
color.a < epsilon)
{
return true;