diff options
-rw-r--r-- | src/net/java/games/jogl/impl/windows/WindowsOffscreenGLContext.java | 2 | ||||
-rw-r--r-- | src/net/java/games/jogl/impl/x11/X11OffscreenGLContext.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/net/java/games/jogl/impl/windows/WindowsOffscreenGLContext.java b/src/net/java/games/jogl/impl/windows/WindowsOffscreenGLContext.java index e26060b65..ef1c9511f 100644 --- a/src/net/java/games/jogl/impl/windows/WindowsOffscreenGLContext.java +++ b/src/net/java/games/jogl/impl/windows/WindowsOffscreenGLContext.java @@ -104,7 +104,7 @@ public class WindowsOffscreenGLContext extends WindowsGLContext { protected synchronized boolean makeCurrent(Runnable initAction) throws GLException { if (pendingOffscreenResize) { - if (pendingOffscreenWidth != width || pendingOffscreenWidth != height) { + if (pendingOffscreenWidth != width || pendingOffscreenHeight != height) { if (hglrc != 0) { destroy(); } diff --git a/src/net/java/games/jogl/impl/x11/X11OffscreenGLContext.java b/src/net/java/games/jogl/impl/x11/X11OffscreenGLContext.java index 727c8f23d..6d4557407 100644 --- a/src/net/java/games/jogl/impl/x11/X11OffscreenGLContext.java +++ b/src/net/java/games/jogl/impl/x11/X11OffscreenGLContext.java @@ -111,7 +111,7 @@ public class X11OffscreenGLContext extends X11GLContext { protected synchronized boolean makeCurrent(Runnable initAction) throws GLException { ensureDisplayOpened(); if (pendingOffscreenResize) { - if (pendingOffscreenWidth != width || pendingOffscreenWidth != height) { + if (pendingOffscreenWidth != width || pendingOffscreenHeight != height) { if (context != 0) { destroy(); } |