aboutsummaryrefslogtreecommitdiffstats
path: root/src/classes/com/sun/opengl/impl/x11/X11OffscreenGLDrawable.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/classes/com/sun/opengl/impl/x11/X11OffscreenGLDrawable.java')
-rw-r--r--src/classes/com/sun/opengl/impl/x11/X11OffscreenGLDrawable.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/classes/com/sun/opengl/impl/x11/X11OffscreenGLDrawable.java b/src/classes/com/sun/opengl/impl/x11/X11OffscreenGLDrawable.java
index 2d7dedd7f..5370860c6 100644
--- a/src/classes/com/sun/opengl/impl/x11/X11OffscreenGLDrawable.java
+++ b/src/classes/com/sun/opengl/impl/x11/X11OffscreenGLDrawable.java
@@ -80,7 +80,7 @@ public class X11OffscreenGLDrawable extends X11GLDrawable {
XVisualInfo vis = chooseVisual(false);
int bitsPerPixel = vis.depth();
- lockAWT();
+ lockToolkit();
try {
int screen = GLX.DefaultScreen(display);
pixmap = GLX.XCreatePixmap(display, (int) GLX.RootWindow(display, screen), width, height, bitsPerPixel);
@@ -100,7 +100,7 @@ public class X11OffscreenGLDrawable extends X11GLDrawable {
", display " + toHexString(display));
}
} finally {
- unlockAWT();
+ unlockToolkit();
}
}
@@ -113,7 +113,7 @@ public class X11OffscreenGLDrawable extends X11GLDrawable {
}
// Must destroy pixmap and GLXPixmap
- lockAWT();
+ lockToolkit();
if (DEBUG) {
long cur = GLX.glXGetCurrentContext();
@@ -130,7 +130,7 @@ public class X11OffscreenGLDrawable extends X11GLDrawable {
GLX.glXDestroyGLXPixmap(display, drawable);
GLX.XFreePixmap(display, pixmap);
- unlockAWT();
+ unlockToolkit();
drawable = 0;
pixmap = 0;
display = 0;