diff options
author | Sven Gothel <[email protected]> | 2009-10-03 21:56:30 -0700 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2009-10-03 21:56:30 -0700 |
commit | bf584fba26561a1905f37251d681ac100d4a0779 (patch) | |
tree | 59df84cac68eb274318d7280c900f5a2b2df714c /src/jogl/classes/com/sun/opengl/impl/GLDrawableImpl.java | |
parent | 4d4b7c52d032d0c9302e4e16560f2e874e31b8bc (diff) |
NativeWindow extends SurfaceUpdatedListener for 'surfaceUpdated' propagation. GLDrawableFactory.createGLDrawable() propagates NativeWindow to offscreen NullWindow.
Diffstat (limited to 'src/jogl/classes/com/sun/opengl/impl/GLDrawableImpl.java')
-rw-r--r-- | src/jogl/classes/com/sun/opengl/impl/GLDrawableImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/com/sun/opengl/impl/GLDrawableImpl.java b/src/jogl/classes/com/sun/opengl/impl/GLDrawableImpl.java index dddba9460..020bea9f0 100644 --- a/src/jogl/classes/com/sun/opengl/impl/GLDrawableImpl.java +++ b/src/jogl/classes/com/sun/opengl/impl/GLDrawableImpl.java @@ -82,7 +82,7 @@ public abstract class GLDrawableImpl implements GLDrawable { ctx.getGL().glFinish(); } } - component.surfaceUpdated(this); + component.surfaceUpdated(this, component, System.currentTimeMillis()); } protected abstract void swapBuffersImpl(); |