diff options
author | Sven Gothel <[email protected]> | 2001-11-06 08:13:11 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2001-11-06 08:13:11 +0000 |
commit | 29a4ca7a93fc2547466a732441b8374a5c99019b (patch) | |
tree | 1cf028bfae15c5aef0a7024b78e53ca313aff245 /gl4java/drawable | |
parent | 1f5dea284e7202cce1fe1bcde5138ba5e5a7b4bd (diff) |
java.nio, mesa-4.0 (gl1.3)
Diffstat (limited to 'gl4java/drawable')
-rw-r--r-- | gl4java/drawable/GLDrawable.java | 6 |
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();
/**
|