aboutsummaryrefslogtreecommitdiffstats
path: root/src/classes/com/sun/opengl/impl/egl
diff options
context:
space:
mode:
Diffstat (limited to 'src/classes/com/sun/opengl/impl/egl')
-rwxr-xr-xsrc/classes/com/sun/opengl/impl/egl/EGLContext.java12
-rwxr-xr-xsrc/classes/com/sun/opengl/impl/egl/EGLDrawable.java4
2 files changed, 8 insertions, 8 deletions
diff --git a/src/classes/com/sun/opengl/impl/egl/EGLContext.java b/src/classes/com/sun/opengl/impl/egl/EGLContext.java
index 40ab077a6..cf95f3d69 100755
--- a/src/classes/com/sun/opengl/impl/egl/EGLContext.java
+++ b/src/classes/com/sun/opengl/impl/egl/EGLContext.java
@@ -148,7 +148,7 @@ public class EGLContext extends GLContextImpl {
}
protected void releaseImpl() throws GLException {
- getGLDrawable().getFactory().lockToolkit();
+ getDrawableImpl().getFactoryImpl().lockToolkit();
try {
if (!EGL.eglMakeCurrent(drawable.getDisplay(),
EGL.EGL_NO_SURFACE,
@@ -158,13 +158,13 @@ public class EGLContext extends GLContextImpl {
Long.toHexString(context) + ": error code " + EGL.eglGetError());
}
} finally {
- getGLDrawable().getFactory().unlockToolkit();
+ getDrawableImpl().getFactoryImpl().unlockToolkit();
drawable.unlockSurface();
}
}
protected void destroyImpl() throws GLException {
- getGLDrawable().getFactory().lockToolkit();
+ getDrawableImpl().getFactoryImpl().lockToolkit();
try {
if (context != 0) {
if (!EGL.eglDestroyContext(drawable.getDisplay(), context)) {
@@ -175,7 +175,7 @@ public class EGLContext extends GLContextImpl {
GLContextShareSet.contextDestroyed(this);
}
} finally {
- getGLDrawable().getFactory().unlockToolkit();
+ getDrawableImpl().getFactoryImpl().unlockToolkit();
}
}
@@ -242,11 +242,11 @@ public class EGLContext extends GLContextImpl {
public synchronized String getPlatformExtensionsString() {
if (!eglQueryStringInitialized) {
eglQueryStringAvailable =
- ((GLDrawableFactoryImpl)getGLDrawable().getFactory()).dynamicLookupFunction("eglQueryString") != 0;
+ getDrawableImpl().getFactoryImpl().dynamicLookupFunction("eglQueryString") != 0;
eglQueryStringInitialized = true;
}
if (eglQueryStringAvailable) {
- GLDrawableFactory factory = getGLDrawable().getFactory();
+ GLDrawableFactoryImpl factory = getDrawableImpl().getFactoryImpl();
boolean wasLocked = factory.isToolkitLocked();
if(!wasLocked) {
factory.lockToolkit();
diff --git a/src/classes/com/sun/opengl/impl/egl/EGLDrawable.java b/src/classes/com/sun/opengl/impl/egl/EGLDrawable.java
index 5915e5cd3..cc80a9957 100755
--- a/src/classes/com/sun/opengl/impl/egl/EGLDrawable.java
+++ b/src/classes/com/sun/opengl/impl/egl/EGLDrawable.java
@@ -161,7 +161,7 @@ public class EGLDrawable extends GLDrawableImpl {
}
public void swapBuffers() throws GLException {
- getFactory().lockToolkit();
+ getFactoryImpl().lockToolkit();
try {
if (component.getSurfaceHandle() == 0) {
if (lockSurface() == NativeWindow.LOCK_SURFACE_NOT_READY) {
@@ -173,7 +173,7 @@ public class EGLDrawable extends GLDrawableImpl {
} finally {
unlockSurface();
- getFactory().unlockToolkit();
+ getFactoryImpl().unlockToolkit();
}
}