Disable OpenGL debug on OpenGL ES2 (should fix Ouya compatibility)

This commit is contained in:
fysx
2014-02-06 00:14:33 +01:00
parent 351e224815
commit 3cabe641d6
@@ -238,7 +238,8 @@ bool Graphics::setMode(int width, int height)
enabledebug = (flags & GL_CONTEXT_FLAG_DEBUG_BIT) != 0;
}
setDebug(enabledebug);
if (!GLAD_ES_VERSION_2_0)
setDebug(enabledebug);
return true;
}