Eduardo Bart
2012-12-08 16:14:10 -02:00
parent 7c48a98b67
commit ec8d50497b
4 changed files with 19 additions and 0 deletions

View File

@@ -365,3 +365,16 @@ bool Graphics::canCacheBackbuffer()
return m_cacheBackbuffer;
#endif
}
bool Graphics::hasScissorBug()
{
#if OPENGL_ES==2
return false;
#elif OPENGL_ES==1
return false;
#else
if(!GLEW_VERSION_1_2)
return true;
return false;
#endif
}