aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/sun
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2009-06-15 11:05:16 +0000
committerSven Gothel <[email protected]>2009-06-15 11:05:16 +0000
commit3fe015eb484c1ff9bed8866709f9fe9bbe69115b (patch)
tree43b12f6758dbab84e29f69a8ddec1ab224b8355d /src/jogl/classes/com/sun
parent20410581cc82a980a48d5fd79acdefa565732735 (diff)
Fix: JAWTUtil has to JAWTNativeLibLoader.loadAWTImpl() as well. Use NWReflection.isClassAvailable() if possible. NWReflection.getClass() takes boolean init.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1956 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/jogl/classes/com/sun')
-rw-r--r--src/jogl/classes/com/sun/opengl/impl/NativeLibLoader.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/jogl/classes/com/sun/opengl/impl/NativeLibLoader.java b/src/jogl/classes/com/sun/opengl/impl/NativeLibLoader.java
index f4425c9df..12dc8fc7d 100644
--- a/src/jogl/classes/com/sun/opengl/impl/NativeLibLoader.java
+++ b/src/jogl/classes/com/sun/opengl/impl/NativeLibLoader.java
@@ -117,6 +117,9 @@ public class NativeLibLoader extends NativeLibLoaderBase {
for (int i=0; i<preload.length; i++) {
if(!isLoaded(preload[i])) {
try {
+ if(DEBUG) {
+ System.err.println("JOGL NativeLibLoader preload "+preload[i]);
+ }
loadLibraryInternal(preload[i]);
addLoaded(preload[i]);
}
@@ -130,6 +133,9 @@ public class NativeLibLoader extends NativeLibLoaderBase {
}
}
+ if(DEBUG) {
+ System.err.println("JOGL NativeLibLoader load "+libname);
+ }
loadLibraryInternal(libname);
addLoaded(libname);
}