fixes in EGL platform

This commit is contained in:
Eduardo Bart
2012-06-03 11:10:34 -03:00
parent 3a6f326a8a
commit d49cad31e2
5 changed files with 38 additions and 19 deletions

View File

@@ -359,8 +359,10 @@ bool Graphics::canUseClampToEdge()
bool Graphics::canUseBlendFuncSeparate()
{
#ifdef OPENGL_ES
#if OPENGL_ES==2
return true;
#elif OPENGL_ES==1
return false;
#else
if(!GLEW_VERSION_1_4)
return false;