diff options
author | athomas <[email protected]> | 2003-11-19 00:30:26 +0000 |
---|---|---|
committer | athomas <[email protected]> | 2003-11-19 00:30:26 +0000 |
commit | e8d650a5cb1e3d80c266271d87788670718b895f (patch) | |
tree | 031cca1a335b7529087fcd739d761e322b27d1a3 /src/java/net | |
parent | 2b098f572821a7a4437c1243f73be1c2815c0cc8 (diff) |
Removed a redundant call to alcOpenDevice, Eliminated a call to ReleaseStringUTFChars in the event that null is passed in and added some instrumentation printouts to try to figure out what's causing this crash on people's systems (and not mine!)
git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@60 03bf7f67-59de-4072-a415-9a990d468a3f
Diffstat (limited to 'src/java/net')
-rw-r--r-- | src/java/net/java/games/joal/ALCImpl.java | 3 | ||||
-rw-r--r-- | src/java/net/java/games/joal/util/ALut.java | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/java/net/java/games/joal/ALCImpl.java b/src/java/net/java/games/joal/ALCImpl.java index 3edfd7e..a2ce1e8 100644 --- a/src/java/net/java/games/joal/ALCImpl.java +++ b/src/java/net/java/games/joal/ALCImpl.java @@ -53,7 +53,8 @@ final class ALCImpl implements ALC { Device result = null; int pointer = openDeviceNative(deviceName); if(pointer != 0) { - result = new Device(openDeviceNative(deviceName)); + System.out.println("Device Pointer = " + pointer); + result = new Device(pointer); } return result; } diff --git a/src/java/net/java/games/joal/util/ALut.java b/src/java/net/java/games/joal/util/ALut.java index 7f0772f..5bb13f9 100644 --- a/src/java/net/java/games/joal/util/ALut.java +++ b/src/java/net/java/games/joal/util/ALut.java @@ -55,6 +55,7 @@ public final class ALut { private ALut() { } public static void alutInit() { + System.out.println("Entering alutInit()"); ALFactory.initialize(); alc = ALFactory.getALC(); String deviceName = null; @@ -67,8 +68,9 @@ public final class ALut { */ ALC.Context context; ALC.Device device; - + System.out.println("In alutInit(): Device Name = " + deviceName); device = alc.alcOpenDevice(deviceName); + System.out.println("In alutInit(): Device = " + device); context = alc.alcCreateContext(device, null); alc.alcMakeContextCurrent(context); /* @@ -82,6 +84,7 @@ public final class ALut { + "for the inconvenience."); } */ + System.out.println("Exiting alutInit()"); } public static void alutLoadWAVFile( |