mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2025-02-01 21:30:57 +00:00
removed a redundant if statement
This commit is contained in:
parent
b1df6ac8f7
commit
c12f7e8541
1 changed files with 0 additions and 6 deletions
|
@ -1345,12 +1345,6 @@ static void ApplyBlendFunc(unsigned int srcBlendBits, unsigned int dstBlendBits)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if((srcBlendBits | dstBlendBits) == 0 &&
|
|
||||||
(gl.srcBlendBits | gl.dstBlendBits) == 0)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
gl.srcBlendBits = srcBlendBits;
|
gl.srcBlendBits = srcBlendBits;
|
||||||
gl.dstBlendBits = dstBlendBits;
|
gl.dstBlendBits = dstBlendBits;
|
||||||
if((srcBlendBits | dstBlendBits) == 0)
|
if((srcBlendBits | dstBlendBits) == 0)
|
||||||
|
|
Loading…
Reference in a new issue