mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2025-04-05 09:00:51 +00:00
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:
parent
a158bb06fa
commit
0684780348
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue