From c1c8dcbb0d51e4e2a902db129e5a6991d84c5fc9 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Sun, 31 Jul 2011 19:25:13 +0200 Subject: JOGL: Add GLBase::isGLES2Compatible() Indicates whether this GL object is compatible with OpenGL ES2, i.e. has the extension GL_ARB_ES2_compatibility --- make/config/jogl/gl-impl-CustomJavaCode-gles1.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'make/config/jogl/gl-impl-CustomJavaCode-gles1.java') diff --git a/make/config/jogl/gl-impl-CustomJavaCode-gles1.java b/make/config/jogl/gl-impl-CustomJavaCode-gles1.java index 98ec4e550..8b6d1dadc 100644 --- a/make/config/jogl/gl-impl-CustomJavaCode-gles1.java +++ b/make/config/jogl/gl-impl-CustomJavaCode-gles1.java @@ -46,6 +46,10 @@ public final boolean isGL2ES2() { return false; } +public final boolean isGLES2Compatible() { + return false; +} + public final boolean isGL2GL3() { return false; } -- cgit v1.2.3