diff options
author | Kenneth Russel <[email protected]> | 2005-07-19 06:59:40 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2005-07-19 06:59:40 +0000 |
commit | 77521f233ff052096b25d9899bf3618fdc668740 (patch) | |
tree | 20f39baba49fcfbc1cb17a9943e718a3b825f18b /src/net/java/games/jogl/GLDrawable.java | |
parent | 08d481088925526964be39cbdd28cfc4ae828a86 (diff) |
Documentation updates and minor cleanups
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JSR-231@333 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/net/java/games/jogl/GLDrawable.java')
-rw-r--r-- | src/net/java/games/jogl/GLDrawable.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/java/games/jogl/GLDrawable.java b/src/net/java/games/jogl/GLDrawable.java index 3eea12448..6d8457d92 100644 --- a/src/net/java/games/jogl/GLDrawable.java +++ b/src/net/java/games/jogl/GLDrawable.java @@ -61,6 +61,12 @@ package net.java.games.jogl; // context whenever the displayChanged() function is called on our // GLEventListeners +/** An abstraction for an OpenGL rendering target. A GLDrawable's + primary functionality is to create OpenGL contexts which can be + used to perform rendering. A GLDrawable does not automatically + create an OpenGL context, but all implementations of {@link + GLAutoDrawable} do so upon creation. */ + public interface GLDrawable { /** * Creates a new context for drawing to this drawable that will |