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 /src/jogl/classes/javax/media/opengl/GLBase.java | |
parent | 0002fccdcd6383874b2813dc6bbe3e33f5f00924 (diff) |
GL*: Expose isGL*Core(); GLContext: isGL*() API doc cleanup - align queries.
Diffstat (limited to 'src/jogl/classes/javax/media/opengl/GLBase.java')
-rw-r--r-- | src/jogl/classes/javax/media/opengl/GLBase.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/jogl/classes/javax/media/opengl/GLBase.java b/src/jogl/classes/javax/media/opengl/GLBase.java index fcfe34132..3e578dc68 100644 --- a/src/jogl/classes/javax/media/opengl/GLBase.java +++ b/src/jogl/classes/javax/media/opengl/GLBase.java @@ -185,6 +185,24 @@ public interface GLBase { */ public boolean isGL2GL3(); + /** + * Indicates whether this GL object uses a GL4 core profile. <p>Includes [ GL4 ].</p> + * @see GLContext#isGL4core() + */ + public boolean isGL4core(); + + /** + * Indicates whether this GL object uses a GL3 core profile. <p>Includes [ GL4, GL3 ].</p> + * @see GLContext#isGL3core() + */ + public boolean isGL3core(); + + /** + * Indicates whether this GL object uses a GL core profile. <p>Includes [ GL4, GL3, GLES3, GL2ES2 ].</p> + * @see GLContext#isGLcore() + */ + public boolean isGLcore(); + /** * Indicates whether this GL object is compatible with the core OpenGL ES2 functionality. * @return true if this context is an ES2 context or implements |