aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/jogamp/common/os/MachineDescriptionRuntime.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-09-21 20:52:10 +0200
committerSven Gothel <[email protected]>2011-09-21 20:52:10 +0200
commitdef691b009132463f8ec8efabd0d72768235dcf5 (patch)
tree574ce12a6bd1ff12b93faaac70c36f3dc5256364 /src/java/jogamp/common/os/MachineDescriptionRuntime.java
parent0e44b330403011558391c732a0b6240694ecb6a1 (diff)
Unify JNI Library Loading into JNILibLoaderBase and use it for the gluegen-rt native lib as well
- removed redundance - move proper JNLPAppletLauncher custom libloader code into JNILibLoaderBase - prepares for new JAR temp cache ..
Diffstat (limited to 'src/java/jogamp/common/os/MachineDescriptionRuntime.java')
-rw-r--r--src/java/jogamp/common/os/MachineDescriptionRuntime.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/jogamp/common/os/MachineDescriptionRuntime.java b/src/java/jogamp/common/os/MachineDescriptionRuntime.java
index eeb2c1b..c555724 100644
--- a/src/java/jogamp/common/os/MachineDescriptionRuntime.java
+++ b/src/java/jogamp/common/os/MachineDescriptionRuntime.java
@@ -32,7 +32,7 @@ import com.jogamp.common.os.MachineDescription;
import com.jogamp.common.os.NativeLibrary;
import com.jogamp.common.os.Platform;
import com.jogamp.common.os.MachineDescription.StaticConfig;
-import com.jogamp.gluegen.runtime.NativeLibLoader;
+import com.jogamp.gluegen.runtime.GlueGenJNILibLoader;
/**
* Runtime MachineDescription
@@ -85,7 +85,7 @@ public class MachineDescriptionRuntime {
}
private static MachineDescription getRuntimeImpl() {
try {
- NativeLibLoader.loadGlueGenRT();
+ GlueGenJNILibLoader.loadGlueGenRT();
} catch (UnsatisfiedLinkError err) {
return null;
}