diff options
author | Sven Gothel <[email protected]> | 2013-07-16 05:34:49 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-07-16 05:34:49 +0200 |
commit | 5dafc958385da595160dc0d3c843c8253334c3c5 (patch) | |
tree | 095cb24590a20a0731c4438cb2204523aeb95808 /make/config/jogl/gl-impl-CustomJavaCode-gl4bc.java | |
parent | 0002fccdcd6383874b2813dc6bbe3e33f5f00924 (diff) |
GL*: Expose isGL*Core(); GLContext: isGL*() API doc cleanup - align queries.
Diffstat (limited to 'make/config/jogl/gl-impl-CustomJavaCode-gl4bc.java')
-rw-r--r-- | make/config/jogl/gl-impl-CustomJavaCode-gl4bc.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/make/config/jogl/gl-impl-CustomJavaCode-gl4bc.java b/make/config/jogl/gl-impl-CustomJavaCode-gl4bc.java index 5ac2837fa..6cec06d04 100644 --- a/make/config/jogl/gl-impl-CustomJavaCode-gl4bc.java +++ b/make/config/jogl/gl-impl-CustomJavaCode-gl4bc.java @@ -100,6 +100,21 @@ public final boolean isGL4ES3() { } @Override +public final boolean isGL4core() { + return _context.isGL4core(); +} + +@Override +public final boolean isGL3core() { + return _context.isGL3core(); +} + +@Override +public final boolean isGLcore() { + return _context.isGLcore(); +} + +@Override public final boolean isGLES2Compatible() { return _context.isGLES2Compatible(); } |