summaryrefslogtreecommitdiffstats
path: root/test/src/com/jogamp/openal/OpenALTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/com/jogamp/openal/OpenALTest.java')
-rw-r--r--test/src/com/jogamp/openal/OpenALTest.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/src/com/jogamp/openal/OpenALTest.java b/test/src/com/jogamp/openal/OpenALTest.java
index ec8d50f..69ee204 100644
--- a/test/src/com/jogamp/openal/OpenALTest.java
+++ b/test/src/com/jogamp/openal/OpenALTest.java
@@ -52,6 +52,18 @@ public class OpenALTest {
ALCcontext context = alc.alcCreateContext(device, null);
alc.alcMakeContextCurrent(context);
AL al = ALFactory.getAL();
+
+ System.out.println("devices:");
+ String[] devices = alc.alcGetDeviceSpecifiers();
+ for (String name : devices) {
+ System.out.println(" "+name);
+ }
+ System.out.println("capture devices:");
+ devices = alc.alcGetCaptureDeviceSpecifiers();
+ for (String name : devices) {
+ System.out.println(" "+name);
+ }
+
boolean eaxPresent = al.alIsExtensionPresent("EAX2.0");
System.out.println("EAX present:" + eaxPresent);