diff options
Diffstat (limited to 'src/jogl/classes/javax/media/opengl/GLBase.java')
-rw-r--r-- | src/jogl/classes/javax/media/opengl/GLBase.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jogl/classes/javax/media/opengl/GLBase.java b/src/jogl/classes/javax/media/opengl/GLBase.java index 3f0c77949..c808399b8 100644 --- a/src/jogl/classes/javax/media/opengl/GLBase.java +++ b/src/jogl/classes/javax/media/opengl/GLBase.java @@ -121,13 +121,13 @@ public interface GLBase { public boolean isGL2(); /** - * Indicates whether this GL object conforms to the OpenGL ES1 ≥ 1.0 profile. + * Indicates whether this GL object conforms to the OpenGL ES ≥ 1.0 profile. * @see GLContext#isGLES1() */ public boolean isGLES1(); /** - * Indicates whether this GL object conforms to the OpenGL ES2 ≥ 2.0 profile. + * Indicates whether this GL object conforms to the OpenGL ES ≥ 2.0 profile. * <p> * Remark: ES2 compatible desktop profiles are not included. * To query whether core ES2 functionality is provided, use {@link #isGLES2Compatible()}. @@ -138,7 +138,7 @@ public interface GLBase { public boolean isGLES2(); /** - * Indicates whether this GL object conforms to the OpenGL ES2 ≥ 3.0 profile. + * Indicates whether this GL object conforms to the OpenGL ES ≥ 3.0 profile. * <p> * Remark: ES3 compatible desktop profiles are not included. * To query whether core ES3 functionality is provided, use {@link #isGLES3Compatible()}. |