fix alpha blending issues

This commit is contained in:
Eduardo Bart
2012-06-01 20:21:45 -03:00
parent 6fce78d519
commit ba01909088
9 changed files with 43 additions and 28 deletions

View File

@@ -330,3 +330,14 @@ bool Graphics::canUseClampToEdge()
return m_useClampToEdge;
#endif
}
bool Graphics::canUseBlendFuncSeparate()
{
#ifdef OPENGL_ES
return true;
#else
if(!GLEW_VERSION_1_4)
return false;
return true;
#endif
}