From 96e71b020a48e8a01e3790e81bd888977d9cab6d Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Wed, 7 Oct 2015 11:54:31 +0200 Subject: Bug 1189 - Add OpenGL ES 3.2 and new GL 4.5 Extensions support - Part5: GL_ARB_ES3_2_compatibility -> [GL|GLContext].isGLES32Compatible() --- make/config/jogl/gl-impl-CustomJavaCode-gl4bc.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'make/config/jogl/gl-impl-CustomJavaCode-gl4bc.java') diff --git a/make/config/jogl/gl-impl-CustomJavaCode-gl4bc.java b/make/config/jogl/gl-impl-CustomJavaCode-gl4bc.java index f46f08a94..0db1b4a6e 100644 --- a/make/config/jogl/gl-impl-CustomJavaCode-gl4bc.java +++ b/make/config/jogl/gl-impl-CustomJavaCode-gl4bc.java @@ -122,6 +122,11 @@ public final boolean isGLES31Compatible() { return _context.isGLES31Compatible(); } +@Override +public final boolean isGLES32Compatible() { + return _context.isGLES32Compatible(); +} + @Override public final boolean isGL2GL3() { return _context.isGL2GL3(); -- cgit v1.2.3