diff options
author | Sven Gothel <[email protected]> | 2015-03-06 10:01:02 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-03-06 10:01:02 +0100 |
commit | eced1d4e45772a862d649e3cd7b500c6bc1643a1 (patch) | |
tree | a226e0549ffce207dd7625597c2d969405a4c68d /src/jogl/classes/com/jogamp/opengl/GLBase.java | |
parent | 807c86913b465ce6071bc1af7ba6f8620cd5e772 (diff) |
Bug 1135 - GL/GLContext: Add isGLES31Compatible()
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/GLBase.java')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/GLBase.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/GLBase.java b/src/jogl/classes/com/jogamp/opengl/GLBase.java index b6704e6ba..dee5f1488 100644 --- a/src/jogl/classes/com/jogamp/opengl/GLBase.java +++ b/src/jogl/classes/com/jogamp/opengl/GLBase.java @@ -224,6 +224,19 @@ public interface GLBase { public boolean isGLES3Compatible(); /** + * Indicates whether this GL object is compatible with the core OpenGL ES3.1 functionality. + * <p> + * Return true if the underlying context is an ES3 context ≥ 3.1 or implements + * the extension <code>GL_ARB_ES3_1_compatibility</code>, otherwise false. + * </p> + * <p> + * Includes [ GL ≥ 4.5, GL ≥ 3.1 w/ GL_ARB_ES3_1_compatibility and GLES3 ≥ 3.1 ] + * </p> + * @see GLContext#isGLES31Compatible() + */ + public boolean isGLES31Compatible(); + + /** * Indicates whether this GL object supports GLSL. * @see GLContext#hasGLSL() */ |