diff options
author | Michael Bien <[email protected]> | 2010-03-27 03:08:11 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-03-27 03:08:11 +0100 |
commit | f937778266cf885e7443e83414a59f88f487ea86 (patch) | |
tree | 66d9d9367a609b36b3b31c909305748c33bde95c | |
parent | 14b7bf0b37262a5515a10fd2b5db56cf3b78709d (diff) |
refactoring due to gluegen changes.
- renamed com.sun.gluegen.runtime -> com.jogamp.gluegen.runtime.
-rwxr-xr-x | make/joal.cfg | 2 | ||||
-rwxr-xr-x | src/java/net/java/games/joal/impl/ALProcAddressLookup.java | 2 | ||||
-rwxr-xr-x | src/java/net/java/games/joal/impl/NativeLibLoader.java | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/make/joal.cfg b/make/joal.cfg index 9c1901a..eb9c874 100755 --- a/make/joal.cfg +++ b/make/joal.cfg @@ -14,7 +14,7 @@ ProcAddressNameExpr LP $UPPERCASE({0}) Import net.java.games.joal.* Import net.java.games.joal.impl.* -Import com.sun.gluegen.runtime.* +Import com.jogamp.gluegen.runtime.* # Factor out the OpenAL constants into their own interface Ignore ^AL_.+ diff --git a/src/java/net/java/games/joal/impl/ALProcAddressLookup.java b/src/java/net/java/games/joal/impl/ALProcAddressLookup.java index c7bdc53..31a1d35 100755 --- a/src/java/net/java/games/joal/impl/ALProcAddressLookup.java +++ b/src/java/net/java/games/joal/impl/ALProcAddressLookup.java @@ -36,7 +36,7 @@ package net.java.games.joal.impl; import java.lang.reflect.Field; import net.java.games.joal.*; -import com.sun.gluegen.runtime.*; +import com.jogamp.gluegen.runtime.*; /** Helper class for managing OpenAL-related proc address tables. */ diff --git a/src/java/net/java/games/joal/impl/NativeLibLoader.java b/src/java/net/java/games/joal/impl/NativeLibLoader.java index acb843f..4b81794 100755 --- a/src/java/net/java/games/joal/impl/NativeLibLoader.java +++ b/src/java/net/java/games/joal/impl/NativeLibLoader.java @@ -40,7 +40,7 @@ import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.security.*; -import com.sun.gluegen.runtime.*; +import com.jogamp.gluegen.runtime.*; public class NativeLibLoader { private static volatile boolean loadingEnabled = true; |