- fixed: the delayed state changer for the alpha function called glBlendFunc instead of glAlphaFunc.

This commit is contained in:
Christoph Oelckers 2014-05-11 13:29:06 +02:00
parent a42cde0837
commit cd6d653b59
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ void FRenderState::Apply(bool forcenoshader)
{
glAlphaFunc = mAlphaFunc;
glAlphaThreshold = mAlphaThreshold;
::glBlendFunc(mAlphaFunc, mAlphaThreshold);
::glAlphaFunc(mAlphaFunc, mAlphaThreshold);
}
if (mAlphaTest != glAlphaTest)
{