diff options
Diffstat (limited to 'src/net/java/games/jogl/impl/GLPbufferImpl.java')
-rw-r--r-- | src/net/java/games/jogl/impl/GLPbufferImpl.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/net/java/games/jogl/impl/GLPbufferImpl.java b/src/net/java/games/jogl/impl/GLPbufferImpl.java index 860fc8422..028929573 100644 --- a/src/net/java/games/jogl/impl/GLPbufferImpl.java +++ b/src/net/java/games/jogl/impl/GLPbufferImpl.java @@ -54,6 +54,7 @@ public class GLPbufferImpl implements GLPbuffer { // GLPbufferContext private GLContext context; private GLDrawableHelper drawableHelper = new GLDrawableHelper(); + private boolean isInitialized=false; public GLPbufferImpl(GLContext context) { this.context = context; @@ -176,6 +177,13 @@ public class GLPbufferImpl implements GLPbuffer { public void removePropertyChangeListener(String propertyName, PropertyChangeListener listener) {} + /** Querries initialization status a <code>this</code> pBuffer + * @return true if initialized + * */ + public boolean isInitialized(){ + return isInitialized; + } + //---------------------------------------------------------------------- // Internals only below this point // @@ -183,6 +191,7 @@ public class GLPbufferImpl implements GLPbuffer { class InitAction implements Runnable { public void run() { drawableHelper.init(GLPbufferImpl.this); + isInitialized=true; } } private InitAction initAction = new InitAction(); |