aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java63
-rw-r--r--src/nativewindow/classes/jogamp/nativewindow/jawt/JAWTUtil.java185
-rw-r--r--src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java59
-rw-r--r--src/newt/classes/jogamp/newt/driver/awt/AWTCanvas.java62
4 files changed, 131 insertions, 238 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java b/src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java
index 5e0074ff8..5e440092b 100644
--- a/src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java
+++ b/src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java
@@ -41,9 +41,6 @@
package com.jogamp.opengl.awt;
import java.beans.Beans;
-import java.lang.reflect.Method;
-import java.security.AccessController;
-import java.security.PrivilegedAction;
import java.awt.Canvas;
import java.awt.Color;
import java.awt.FontMetrics;
@@ -104,6 +101,7 @@ import com.jogamp.opengl.util.GLDrawableUtil;
import com.jogamp.opengl.util.TileRenderer;
import jogamp.nativewindow.SurfaceScaleUtils;
+import jogamp.nativewindow.jawt.JAWTUtil;
import jogamp.opengl.Debug;
import jogamp.opengl.GLContextImpl;
import jogamp.opengl.GLDrawableHelper;
@@ -158,11 +156,11 @@ import jogamp.opengl.awt.AWTTilePainter;
* </ul>
*
* <h5><a name="contextSharing">OpenGL Context Sharing</a></h5>
- *
+ *
* To share a {@link GLContext} see the following note in the documentation overview:
* <a href="../../../../overview-summary.html#SHARING">context sharing</a>
* as well as {@link GLSharedContextSetter}.
- *
+ *
*/
@SuppressWarnings("serial")
@@ -593,7 +591,7 @@ public class GLCanvas extends Canvas implements AWTGLAutoDrawable, WindowClosing
*/
// before native peer is valid: X11
- disableBackgroundErase();
+ JAWTUtil.disableBackgroundErase(this);
final GraphicsDevice awtDevice;
if(null==awtDeviceReq) {
@@ -618,7 +616,7 @@ public class GLCanvas extends Canvas implements AWTGLAutoDrawable, WindowClosing
super.addNotify();
// after native peer is valid: Windows
- disableBackgroundErase();
+ JAWTUtil.disableBackgroundErase(this);
createJAWTDrawableAndContext();
@@ -1478,57 +1476,6 @@ public class GLCanvas extends Canvas implements AWTGLAutoDrawable, WindowClosing
}
};
- // Disables the AWT's erasing of this Canvas's background on Windows
- // in Java SE 6. This internal API is not available in previous
- // releases, but the system property
- // -Dsun.awt.noerasebackground=true can be specified to get similar
- // results globally in previous releases.
- private static boolean disableBackgroundEraseInitialized;
- private static Method disableBackgroundEraseMethod;
- private void disableBackgroundErase() {
- if (!disableBackgroundEraseInitialized) {
- try {
- AccessController.doPrivileged(new PrivilegedAction<Object>() {
- @Override
- public Object run() {
- try {
- Class<?> clazz = getToolkit().getClass();
- while (clazz != null && disableBackgroundEraseMethod == null) {
- try {
- disableBackgroundEraseMethod =
- clazz.getDeclaredMethod("disableBackgroundErase",
- new Class[] { Canvas.class });
- disableBackgroundEraseMethod.setAccessible(true);
- } catch (final Exception e) {
- clazz = clazz.getSuperclass();
- }
- }
- } catch (final Exception e) {
- }
- return null;
- }
- });
- } catch (final Exception e) {
- }
- disableBackgroundEraseInitialized = true;
- if(DEBUG) {
- System.err.println(getThreadName()+": GLCanvas: TK disableBackgroundErase method found: "+
- (null!=disableBackgroundEraseMethod));
- }
- }
- if (disableBackgroundEraseMethod != null) {
- Throwable t=null;
- try {
- disableBackgroundEraseMethod.invoke(getToolkit(), new Object[] { this });
- } catch (final Exception e) {
- t = e;
- }
- if(DEBUG) {
- System.err.println(getThreadName()+": GLCanvas: TK disableBackgroundErase error: "+t);
- }
- }
- }
-
/**
* Issues the GraphicsConfigurationFactory's choosing facility within EDT,
* since resources created (X11: Display), must be destroyed in the same thread, where they have been created.
diff --git a/src/nativewindow/classes/jogamp/nativewindow/jawt/JAWTUtil.java b/src/nativewindow/classes/jogamp/nativewindow/jawt/JAWTUtil.java
index d2dc8f91b..f4e55cd47 100644
--- a/src/nativewindow/classes/jogamp/nativewindow/jawt/JAWTUtil.java
+++ b/src/nativewindow/classes/jogamp/nativewindow/jawt/JAWTUtil.java
@@ -64,8 +64,10 @@ import jogamp.nativewindow.jawt.x11.X11SunJDKReflection;
import jogamp.nativewindow.macosx.OSXUtil;
import jogamp.nativewindow.x11.X11Lib;
+import com.jogamp.common.ExceptionUtils;
import com.jogamp.common.os.Platform;
import com.jogamp.common.util.PropertyAccess;
+import com.jogamp.common.util.UnsafeUtil;
import com.jogamp.common.util.VersionNumber;
import com.jogamp.common.util.locks.LockFactory;
import com.jogamp.common.util.locks.RecursiveLock;
@@ -92,25 +94,30 @@ public class JAWTUtil {
private static final Method isQueueFlusherThread;
private static final boolean j2dExist;
- // Unavailable since Java_9
- // 'illegal reflective access to sun.awt.SunToolkit.awtLock/Unlock'
- private static final Method sunToolkitAWTLockMethod;
- private static final Method sunToolkitAWTUnlockMethod;
- private static final boolean hasSunToolkitAWTLock;
+ private static final Method stkAWTLockMID;
+ private static final Method stkAWTUnlockMID;
+ private static final boolean hasSTKAWTLock;
+ private static final Method stkDisableBackgroundEraseMID;
private static final RecursiveLock jawtLock;
private static final ToolkitLock jawtToolkitLock;
- private static final Method getScaleFactorMethod;
- private static final Method getCGDisplayIDMethodOnOSX;
+ private static final Method gdGetScaleFactorMID;
+ private static final Method gdGetCGDisplayIDMIDOnOSX;
- private static class PrivilegedDataBlob1 {
- PrivilegedDataBlob1() { }
+ private static class SunToolkitData {
+ SunToolkitData() { }
// default initialization to null, false
- Method sunToolkitAWTLockMethod;
- Method sunToolkitAWTUnlockMethod;
- Method getScaleFactorMethod;
- Method getCGDisplayIDMethodOnOSX;
+ Method awtLockMID;
+ Method awtUnlockMID;
+ Method disableBackgroundEraseMID;
+ boolean ok;
+ }
+ private static class GraphicsDeviceData {
+ GraphicsDeviceData() { }
+ // default initialization to null, false
+ Method getScaleFactorMID;
+ Method getCGDisplayIDMIDOnOSX;
boolean ok;
}
@@ -326,11 +333,12 @@ public class JAWTUtil {
jawtLockObject = null;
isQueueFlusherThread = null;
j2dExist = false;
- sunToolkitAWTLockMethod = null;
- sunToolkitAWTUnlockMethod = null;
- hasSunToolkitAWTLock = false;
- getScaleFactorMethod = null;
- getCGDisplayIDMethodOnOSX = null;
+ stkAWTLockMID = null;
+ stkAWTUnlockMID = null;
+ hasSTKAWTLock = false;
+ stkDisableBackgroundEraseMID = null;
+ gdGetScaleFactorMID = null;
+ gdGetCGDisplayIDMIDOnOSX = null;
} else {
// Non-headless case
JAWTJNILibLoader.initSingleton(); // load libjawt.so
@@ -351,54 +359,77 @@ public class JAWTUtil {
isQueueFlusherThread = isQueueFlusherThreadTmp;
j2dExist = j2dExistTmp;
+ // Always enforce using sun.awt.SunToolkit's awtLock even on JVM >= Java_9,
+ // as we have no other official means to synchronize native UI locks especially for X11
+ {
+ final SunToolkitData std = AccessController.doPrivileged(new PrivilegedAction<SunToolkitData>() {
+ @Override
+ public SunToolkitData run() {
+ return UnsafeUtil.doWithoutIllegalAccessLogger(new PrivilegedAction<SunToolkitData>() {
+ @Override
+ public SunToolkitData run() {
+ final SunToolkitData d = new SunToolkitData();
+ try {
+ final Class<?> sunToolkitClass = Class.forName("sun.awt.SunToolkit");
+ d.awtLockMID = sunToolkitClass.getDeclaredMethod("awtLock");
+ d.awtLockMID.setAccessible(true);
+ d.awtUnlockMID = sunToolkitClass.getDeclaredMethod("awtUnlock");
+ d.awtUnlockMID.setAccessible(true);
+ d.disableBackgroundEraseMID = sunToolkitClass.getDeclaredMethod("disableBackgroundErase", java.awt.Component.class);
+ d.disableBackgroundEraseMID.setAccessible(true);
+ d.ok=true;
+ } catch (final Exception e) {
+ // Either not a Sun JDK or the interfaces have changed since [Java 1.4.2 / 1.5 -> Java 11]
+ if(DEBUG) {
+ System.err.println("JAWTUtil stk.0: "+e.getMessage());
+ }
+ }
+ return d;
+ }}); }});
+ stkAWTLockMID = std.awtLockMID;
+ stkAWTUnlockMID = std.awtUnlockMID;
+ stkDisableBackgroundEraseMID = std.disableBackgroundEraseMID;
+ boolean _hasSunToolkitAWTLock = false;
+ if ( std.ok ) {
+ try {
+ stkAWTLockMID.invoke(null, (Object[])null);
+ stkAWTUnlockMID.invoke(null, (Object[])null);
+ _hasSunToolkitAWTLock = true;
+ } catch (final Exception e) {
+ if(DEBUG) {
+ System.err.println("JAWTUtil stk.awtLock.1: "+e.getMessage());
+ }
+ }
+ }
+ hasSTKAWTLock = _hasSunToolkitAWTLock;
+ }
if( PlatformPropsImpl.JAVA_9 ) {
- sunToolkitAWTLockMethod = null;
- sunToolkitAWTUnlockMethod = null;
- getScaleFactorMethod = null;
- getCGDisplayIDMethodOnOSX = null;
- hasSunToolkitAWTLock = false;
+ gdGetScaleFactorMID = null;
+ gdGetCGDisplayIDMIDOnOSX = null;
} else {
- final PrivilegedDataBlob1 pdb1 = (PrivilegedDataBlob1) AccessController.doPrivileged(new PrivilegedAction<Object>() {
+ final GraphicsDeviceData gdd = (GraphicsDeviceData) AccessController.doPrivileged(new PrivilegedAction<Object>() {
@Override
public Object run() {
- final PrivilegedDataBlob1 d = new PrivilegedDataBlob1();
- try {
- final Class<?> sunToolkitClass = Class.forName("sun.awt.SunToolkit");
- d.sunToolkitAWTLockMethod = sunToolkitClass.getDeclaredMethod("awtLock", new Class[]{});
- d.sunToolkitAWTLockMethod.setAccessible(true);
- d.sunToolkitAWTUnlockMethod = sunToolkitClass.getDeclaredMethod("awtUnlock", new Class[]{});
- d.sunToolkitAWTUnlockMethod.setAccessible(true);
- d.ok=true;
- } catch (final Exception e) {
- // Either not a Sun JDK or the interfaces have changed since 1.4.2 / 1.5
- }
+ final GraphicsDeviceData d = new GraphicsDeviceData();
try {
final GraphicsDevice gd = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
final Class<?> gdClass = gd.getClass();
- d.getScaleFactorMethod = gdClass.getDeclaredMethod("getScaleFactor");
- d.getScaleFactorMethod.setAccessible(true);
+ d.getScaleFactorMID = gdClass.getDeclaredMethod("getScaleFactor");
+ d.getScaleFactorMID.setAccessible(true);
if( Platform.OSType.MACOS == PlatformPropsImpl.OS_TYPE ) {
- d.getCGDisplayIDMethodOnOSX = gdClass.getDeclaredMethod("getCGDisplayID");
- d.getCGDisplayIDMethodOnOSX.setAccessible(true);
+ d.getCGDisplayIDMIDOnOSX = gdClass.getDeclaredMethod("getCGDisplayID");
+ d.getCGDisplayIDMIDOnOSX.setAccessible(true);
}
- } catch (final Throwable t) {}
+ } catch (final Throwable t) {
+ if(DEBUG) {
+ System.err.println("JAWTUtil scaleFactor: "+t.getMessage());
+ }
+ }
return d;
}
});
- sunToolkitAWTLockMethod = pdb1.sunToolkitAWTLockMethod;
- sunToolkitAWTUnlockMethod = pdb1.sunToolkitAWTUnlockMethod;
- getScaleFactorMethod = pdb1.getScaleFactorMethod;
- getCGDisplayIDMethodOnOSX = pdb1.getCGDisplayIDMethodOnOSX;
- boolean _hasSunToolkitAWTLock = false;
- if ( pdb1.ok ) {
- try {
- sunToolkitAWTLockMethod.invoke(null, (Object[])null);
- sunToolkitAWTUnlockMethod.invoke(null, (Object[])null);
- _hasSunToolkitAWTLock = true;
- } catch (final Exception e) {
- }
- }
- hasSunToolkitAWTLock = _hasSunToolkitAWTLock;
+ gdGetScaleFactorMID = gdd.getScaleFactorMID;
+ gdGetCGDisplayIDMIDOnOSX = gdd.getCGDisplayIDMIDOnOSX;
}
}
@@ -452,7 +483,7 @@ public class JAWTUtil {
}
if (DEBUG) {
- System.err.println("JAWTUtil: Has sun.awt.SunToolkit.awtLock/awtUnlock " + hasSunToolkitAWTLock);
+ System.err.println("JAWTUtil: Has sun.awt.SunToolkit: awtLock/awtUnlock " + hasSTKAWTLock + ", disableBackgroundErase "+(null!=stkDisableBackgroundEraseMID));
System.err.println("JAWTUtil: Has Java2D " + j2dExist);
System.err.println("JAWTUtil: Is headless " + headlessMode);
final int hints = ( null != desktophints ) ? desktophints.size() : 0 ;
@@ -506,9 +537,9 @@ public class JAWTUtil {
jawtLock.lock();
if( 1 == jawtLock.getHoldCount() ) {
if(!headlessMode && !isJava2DQueueFlusherThread()) {
- if(hasSunToolkitAWTLock) {
+ if(hasSTKAWTLock) {
try {
- sunToolkitAWTLockMethod.invoke(null, (Object[])null);
+ stkAWTLockMID.invoke(null, (Object[])null);
} catch (final Exception e) {
throw new NativeWindowException("SunToolkit.awtLock failed", e);
}
@@ -535,9 +566,9 @@ public class JAWTUtil {
if(ToolkitLock.TRACE_LOCK) { System.err.println("JAWTUtil-ToolkitLock.unlock(): "+jawtLock); }
if( 1 == jawtLock.getHoldCount() ) {
if(!headlessMode && !isJava2DQueueFlusherThread()) {
- if(hasSunToolkitAWTLock) {
+ if(hasSTKAWTLock) {
try {
- sunToolkitAWTUnlockMethod.invoke(null, (Object[])null);
+ stkAWTUnlockMID.invoke(null, (Object[])null);
} catch (final Exception e) {
throw new NativeWindowException("SunToolkit.awtUnlock failed", e);
}
@@ -558,6 +589,30 @@ public class JAWTUtil {
}
/**
+ * Calls {@code sun.awt.SunToolkit.disableBackgroundErase(Component component)} if available.
+ * <p>
+ * Disables the AWT's erasing of the given native Component's background since Java SE 6.
+ * This feature can also be enabled by setting the system property
+ * {@code sun.awt.noerasebackground} = {@code true}.
+ * </p>
+ * @param component
+ * @return {@code true} if available and successful, otherwise {@code false}
+ */
+ public static boolean disableBackgroundErase(final java.awt.Component component) {
+ if( null != stkDisableBackgroundEraseMID ) {
+ try {
+ stkDisableBackgroundEraseMID.invoke(component.getToolkit(), component);
+ return true;
+ } catch (final Exception e) {
+ if( DEBUG ) {
+ ExceptionUtils.dumpThrowable("JAWTUtil", e);
+ }
+ }
+ }
+ return false;
+ }
+
+ /**
* Queries the Monitor's display ID of the given device
* <p>
* Currently only supported for OSX on Java<9
@@ -566,10 +621,10 @@ public class JAWTUtil {
* @return {@code null} if not supported (Java9+ or !OSX), otherwise the monitor displayID
*/
public static final Integer getMonitorDisplayID(final GraphicsDevice device) {
- if( null != getCGDisplayIDMethodOnOSX ) {
+ if( null != gdGetCGDisplayIDMIDOnOSX ) {
// OSX specific for Java<9
try {
- final Object res = getCGDisplayIDMethodOnOSX.invoke(device);
+ final Object res = gdGetCGDisplayIDMIDOnOSX.invoke(device);
if (res instanceof Integer) {
return (Integer)res;
}
@@ -602,10 +657,10 @@ public class JAWTUtil {
float sy = 1f;
boolean gotSXZ = false;
if( !SKIP_AWT_HIDPI ) {
- if( null != getCGDisplayIDMethodOnOSX ) {
+ if( null != gdGetCGDisplayIDMIDOnOSX ) {
// OSX specific for Java<9, preserving double type
try {
- final Object res = getCGDisplayIDMethodOnOSX.invoke(device);
+ final Object res = gdGetCGDisplayIDMIDOnOSX.invoke(device);
if (res instanceof Integer) {
final int displayID = ((Integer)res).intValue();
sx = OSXUtil.GetScreenPixelScaleByDisplayID(displayID);
@@ -614,10 +669,10 @@ public class JAWTUtil {
}
} catch (final Throwable t) {}
}
- if( !gotSXZ && null != getScaleFactorMethod ) {
+ if( !gotSXZ && null != gdGetScaleFactorMID ) {
// Generic for Java<9
try {
- final Object res = getScaleFactorMethod.invoke(device);
+ final Object res = gdGetScaleFactorMID.invoke(device);
if (res instanceof Integer) {
sx = ((Integer)res).floatValue();
} else if ( res instanceof Double) {
diff --git a/src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java b/src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java
index a0083b4ea..66f50781f 100644
--- a/src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java
+++ b/src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java
@@ -31,7 +31,6 @@ package com.jogamp.newt.awt;
import java.applet.Applet;
import java.awt.AWTKeyStroke;
-import java.awt.Canvas;
import java.awt.Component;
import java.awt.EventQueue;
import java.awt.Graphics;
@@ -43,9 +42,6 @@ import java.awt.geom.NoninvertibleTransformException;
import java.beans.Beans;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
-import java.lang.reflect.Method;
-import java.security.AccessController;
-import java.security.PrivilegedAction;
import java.util.Set;
import com.jogamp.nativewindow.CapabilitiesImmutable;
@@ -593,7 +589,7 @@ public class NewtCanvasAWT extends java.awt.Canvas implements NativeWindowHolder
* This code order also allows recreation, ie re-adding the GLCanvas.
*/
// before native peer is valid: X11
- disableBackgroundErase();
+ JAWTUtil.disableBackgroundErase(this);
// Query AWT GraphicsDevice from parent tree, default
final GraphicsConfiguration gc = super.getGraphicsConfiguration();
@@ -611,7 +607,7 @@ public class NewtCanvasAWT extends java.awt.Canvas implements NativeWindowHolder
super.addNotify();
// after native peer is valid: Windows
- disableBackgroundErase();
+ JAWTUtil.disableBackgroundErase(this);
synchronized(sync) {
determineIfApplet();
@@ -1119,57 +1115,6 @@ public class NewtCanvasAWT extends java.awt.Canvas implements NativeWindowHolder
}
}
- // Disables the AWT's erasing of this Canvas's background on Windows
- // in Java SE 6. This internal API is not available in previous
- // releases, but the system property
- // -Dsun.awt.noerasebackground=true can be specified to get similar
- // results globally in previous releases.
- private static boolean disableBackgroundEraseInitialized;
- private static Method disableBackgroundEraseMethod;
- private void disableBackgroundErase() {
- if (!disableBackgroundEraseInitialized) {
- try {
- AccessController.doPrivileged(new PrivilegedAction<Object>() {
- @Override
- public Object run() {
- try {
- Class<?> clazz = getToolkit().getClass();
- while (clazz != null && disableBackgroundEraseMethod == null) {
- try {
- disableBackgroundEraseMethod =
- clazz.getDeclaredMethod("disableBackgroundErase",
- new Class[] { Canvas.class });
- disableBackgroundEraseMethod.setAccessible(true);
- } catch (final Exception e) {
- clazz = clazz.getSuperclass();
- }
- }
- } catch (final Exception e) {
- }
- return null;
- }
- });
- } catch (final Exception e) {
- }
- disableBackgroundEraseInitialized = true;
- if(DEBUG) {
- System.err.println("NewtCanvasAWT: TK disableBackgroundErase method found: "+
- (null!=disableBackgroundEraseMethod));
- }
- }
- if (disableBackgroundEraseMethod != null) {
- Throwable t=null;
- try {
- disableBackgroundEraseMethod.invoke(getToolkit(), new Object[] { this });
- } catch (final Exception e) {
- t = e;
- }
- if(DEBUG) {
- System.err.println("NewtCanvasAWT: TK disableBackgroundErase error: "+t);
- }
- }
- }
-
protected static String currentThreadName() { return "["+Thread.currentThread().getName()+", isAWT-EDT "+EventQueue.isDispatchThread()+"]"; }
static String newtWinHandleToHexString(final Window w) {
diff --git a/src/newt/classes/jogamp/newt/driver/awt/AWTCanvas.java b/src/newt/classes/jogamp/newt/driver/awt/AWTCanvas.java
index bdf78386a..b81bd7544 100644
--- a/src/newt/classes/jogamp/newt/driver/awt/AWTCanvas.java
+++ b/src/newt/classes/jogamp/newt/driver/awt/AWTCanvas.java
@@ -38,9 +38,6 @@ import java.awt.Canvas;
import java.awt.Graphics;
import java.awt.GraphicsDevice;
import java.awt.GraphicsConfiguration;
-import java.lang.reflect.Method;
-import java.security.AccessController;
-import java.security.PrivilegedAction;
import com.jogamp.nativewindow.AbstractGraphicsDevice;
import com.jogamp.nativewindow.AbstractGraphicsScreen;
@@ -58,6 +55,8 @@ import com.jogamp.nativewindow.awt.AWTGraphicsScreen;
import com.jogamp.nativewindow.awt.JAWTWindow;
import com.jogamp.newt.Window;
+import jogamp.nativewindow.jawt.JAWTUtil;
+
@SuppressWarnings("serial")
public class AWTCanvas extends Canvas {
private final WindowDriver driver;
@@ -122,7 +121,7 @@ public class AWTCanvas extends Canvas {
public void addNotify() {
// before native peer is valid: X11
- disableBackgroundErase();
+ JAWTUtil.disableBackgroundErase(this);
/**
* 'super.addNotify()' determines the GraphicsConfiguration,
@@ -147,7 +146,7 @@ public class AWTCanvas extends Canvas {
super.addNotify();
// after native peer is valid: Windows
- disableBackgroundErase();
+ JAWTUtil.disableBackgroundErase(this);
{
jawtWindow = (JAWTWindow) NativeWindowFactory.getNativeWindow(this, awtConfig);
@@ -347,57 +346,4 @@ public class AWTCanvas extends Canvas {
return config;
}
-
- // Disables the AWT's erasing of this Canvas's background on Windows
- // in Java SE 6. This internal API is not available in previous
- // releases, but the system property
- // -Dsun.awt.noerasebackground=true can be specified to get similar
- // results globally in previous releases.
- private static boolean disableBackgroundEraseInitialized;
- private static Method disableBackgroundEraseMethod;
- private void disableBackgroundErase() {
- if (!disableBackgroundEraseInitialized) {
- try {
- AccessController.doPrivileged(new PrivilegedAction<Object>() {
- @Override
- public Object run() {
- try {
- Class<?> clazz = getToolkit().getClass();
- while (clazz != null && disableBackgroundEraseMethod == null) {
- try {
- disableBackgroundEraseMethod =
- clazz.getDeclaredMethod("disableBackgroundErase",
- new Class[] { Canvas.class });
- disableBackgroundEraseMethod.setAccessible(true);
- } catch (final Exception e) {
- clazz = clazz.getSuperclass();
- }
- }
- } catch (final Exception e) {
- }
- return null;
- }
- });
- } catch (final Exception e) {
- }
- disableBackgroundEraseInitialized = true;
- if(Window.DEBUG_IMPLEMENTATION) {
- System.err.println("AWTCanvas: TK disableBackgroundErase method found: "+
- (null!=disableBackgroundEraseMethod));
- }
- }
- if (disableBackgroundEraseMethod != null) {
- Throwable t=null;
- try {
- disableBackgroundEraseMethod.invoke(getToolkit(), new Object[] { this });
- } catch (final Exception e) {
- // FIXME: workaround for 6504460 (incorrect backport of 6333613 in 5.0u10)
- // throw new GLException(e);
- t = e;
- }
- if(Window.DEBUG_IMPLEMENTATION) {
- System.err.println("AWTCanvas: TK disableBackgroundErase error: "+t);
- }
- }
- }
}