aboutsummaryrefslogtreecommitdiffstats
path: root/gl4java/drawable
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2001-11-06 08:13:11 +0000
committerSven Gothel <[email protected]>2001-11-06 08:13:11 +0000
commit29a4ca7a93fc2547466a732441b8374a5c99019b (patch)
tree1cf028bfae15c5aef0a7024b78e53ca313aff245 /gl4java/drawable
parent1f5dea284e7202cce1fe1bcde5138ba5e5a7b4bd (diff)
java.nio, mesa-4.0 (gl1.3)
Diffstat (limited to 'gl4java/drawable')
-rw-r--r--gl4java/drawable/GLDrawable.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/gl4java/drawable/GLDrawable.java b/gl4java/drawable/GLDrawable.java
index 2ec134c..1710e3a 100644
--- a/gl4java/drawable/GLDrawable.java
+++ b/gl4java/drawable/GLDrawable.java
@@ -19,10 +19,12 @@ public interface GLDrawable
/** Remove a GLEventListener from this drawable. */
public void removeGLEventListener(GLEventListener listener);
- /** Gets the GL functions used by this drawable. */
+ /** Gets the GL functions used by this drawable. When running on
+ JDK 1.4 this will return a {@link gl4java.GLFunc14}. */
public GLFunc getGL();
- /** Gets the GLU functions used by this drawable. */
+ /** Gets the GLU functions used by this drawable. When running on
+ JDK 1.4 this will return a {@link gl4java.GLUFunc14}. */
public GLUFunc getGLU();
/**