1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Fix blend mode for cycleType == G_CYC_FILL

It was broken in commit 59d43c05a:
Rewrite OpenGL functionality using GLES2 compatible functions.
This commit is contained in:
Sergey Lipskiy 2014-05-21 22:16:45 +07:00
parent d29c149515
commit 9e534aa418

View File

@ -882,12 +882,6 @@ void OGL_UpdateStates()
{
glDisable( GL_BLEND );
}
if (gDP.otherMode.cycleType == G_CYC_FILL)
{
glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA );
glEnable( GL_BLEND );
}
#endif
}