diff options
Diffstat (limited to 'gl4java/drawable/GLDrawable.java')
-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();
/**
|