diff options
author | Kenneth Russel <[email protected]> | 2003-08-15 12:08:03 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2003-08-15 12:08:03 +0000 |
commit | 97430eddb3716602d7b5e8ce9627772568b52876 (patch) | |
tree | 20844cb6763f1bcd7dcbfbc37e8c0ceb9bcbbcf9 /src/net/java/games/jogl/impl | |
parent | d2a6e3ac6ef57cf716212c12f13900280e5a86be (diff) |
Added SGI .rgb image reader. Fixed typos in javadoc.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@54 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/net/java/games/jogl/impl')
-rw-r--r-- | src/net/java/games/jogl/impl/GLPbufferImpl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/java/games/jogl/impl/GLPbufferImpl.java b/src/net/java/games/jogl/impl/GLPbufferImpl.java index 028929573..2e5f5589f 100644 --- a/src/net/java/games/jogl/impl/GLPbufferImpl.java +++ b/src/net/java/games/jogl/impl/GLPbufferImpl.java @@ -177,7 +177,7 @@ public class GLPbufferImpl implements GLPbuffer { public void removePropertyChangeListener(String propertyName, PropertyChangeListener listener) {} - /** Querries initialization status a <code>this</code> pBuffer + /** Queries initialization status of this pBuffer. * @return true if initialized * */ public boolean isInitialized(){ @@ -191,7 +191,7 @@ public class GLPbufferImpl implements GLPbuffer { class InitAction implements Runnable { public void run() { drawableHelper.init(GLPbufferImpl.this); - isInitialized=true; + isInitialized=true; } } private InitAction initAction = new InitAction(); |