aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-05-17 08:08:36 +0200
committerSven Gothel <[email protected]>2023-05-17 08:08:36 +0200
commit2edee76a2c175719e37548d8627dd4b141c39919 (patch)
tree434ba2a2deded1231644279255ef1a4bae00186e /src
parent00fded51c28a97a463598ca1dc49f042a05bd3f9 (diff)
OpenALTest: Drop nonsense LOOPING test on buffer (only applies to a source)
Diffstat (limited to 'src')
-rw-r--r--src/test/com/jogamp/openal/test/manual/OpenALTest.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/test/com/jogamp/openal/test/manual/OpenALTest.java b/src/test/com/jogamp/openal/test/manual/OpenALTest.java
index cf86fe5..231c162 100644
--- a/src/test/com/jogamp/openal/test/manual/OpenALTest.java
+++ b/src/test/com/jogamp/openal/test/manual/OpenALTest.java
@@ -118,10 +118,6 @@ public class OpenALTest {
al.alGetSourcei(sources[0], ALConstants.AL_LOOPING, loopArray, 0);
System.err.println("Looping 1: " + (loopArray[0] == ALConstants.AL_TRUE));
- final int[] loopBuffer = new int[1];
- al.alGetSourcei(sources[0], ALConstants.AL_LOOPING, loopBuffer, 0);
- System.err.println("Looping 2: " + (loopBuffer[0] == ALConstants.AL_TRUE));
-
if (eaxPresent && null!=eax) {
final IntBuffer env = Buffers.newDirectIntBuffer(1);
env.put(EAXConstants.EAX_ENVIRONMENT_BATHROOM);