Browse Source

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

fysx 12 years ago
parent
commit
3cabe641d6
1 changed files with 2 additions and 1 deletions
  1. 2 1
      jni/love/src/modules/graphics/opengl/Graphics.cpp

+ 2 - 1
jni/love/src/modules/graphics/opengl/Graphics.cpp

@@ -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;
 }