Fix compile error for OpenGL ES

This commit is contained in:
Eduardo Bart
2013-02-07 03:56:02 -02:00
parent 4f3be92208
commit ea0d5f3d81
4 changed files with 17 additions and 15 deletions

View File

@@ -360,9 +360,9 @@ bool Graphics::canUseBlendFuncSeparate()
bool Graphics::canUseBlendEquation()
{
#if OPENGL_ES==2
return true;
return false;
#elif OPENGL_ES==1
return true;
return false;
#else
if(!GLEW_VERSION_1_4)
return false;