From 97430eddb3716602d7b5e8ce9627772568b52876 Mon Sep 17 00:00:00 2001 From: Kenneth Russel Date: Fri, 15 Aug 2003 12:08:03 +0000 Subject: 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 --- src/net/java/games/jogl/GLPbuffer.java | 2 +- src/net/java/games/jogl/impl/GLPbufferImpl.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/net/java/games/jogl/GLPbuffer.java b/src/net/java/games/jogl/GLPbuffer.java index 5df8d616c..d41ca1bd6 100644 --- a/src/net/java/games/jogl/GLPbuffer.java +++ b/src/net/java/games/jogl/GLPbuffer.java @@ -61,6 +61,6 @@ public interface GLPbuffer extends GLDrawable { /** Unbinds the pbuffer from its internal texture target. */ public void releaseTexture(); - /** Querries initialization status a this pBuffer*/ + /** Queries initialization status of this pBuffer. */ public boolean isInitialized(); } 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 this 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(); -- cgit v1.2.3