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 +++++ make/config/jogl/gl-impl-CustomJavaCode-gles1.java | 5 +++++ make/config/jogl/gl-impl-CustomJavaCode-gles3.java | 5 +++++ 3 files changed, 15 insertions(+) (limited to 'make/config') 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(); diff --git a/make/config/jogl/gl-impl-CustomJavaCode-gles1.java b/make/config/jogl/gl-impl-CustomJavaCode-gles1.java index 5300a1e3b..c9dafc419 100644 --- a/make/config/jogl/gl-impl-CustomJavaCode-gles1.java +++ b/make/config/jogl/gl-impl-CustomJavaCode-gles1.java @@ -118,6 +118,11 @@ public final boolean isGLES31Compatible() { return false; } +@Override +public final boolean isGLES32Compatible() { + return false; +} + @Override public final boolean isGL2GL3() { return false; diff --git a/make/config/jogl/gl-impl-CustomJavaCode-gles3.java b/make/config/jogl/gl-impl-CustomJavaCode-gles3.java index 0037963e6..16a6b9c08 100644 --- a/make/config/jogl/gl-impl-CustomJavaCode-gles3.java +++ b/make/config/jogl/gl-impl-CustomJavaCode-gles3.java @@ -119,6 +119,11 @@ public final boolean isGLES31Compatible() { return _context.isGLES31Compatible(); } +@Override +public final boolean isGLES32Compatible() { + return _context.isGLES32Compatible(); +} + @Override public final boolean isGL2GL3() { return false; -- cgit v1.2.3