diff options
Diffstat (limited to 'src/java/jogamp/openal/ALCImpl.java')
-rw-r--r-- | src/java/jogamp/openal/ALCImpl.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/java/jogamp/openal/ALCImpl.java b/src/java/jogamp/openal/ALCImpl.java index bdd0a8a..f08541c 100644 --- a/src/java/jogamp/openal/ALCImpl.java +++ b/src/java/jogamp/openal/ALCImpl.java @@ -7,6 +7,8 @@ import com.jogamp.common.nio.Buffers; import com.jogamp.openal.ALCConstants; import com.jogamp.openal.ALException; import com.jogamp.openal.ALCdevice; +import com.jogamp.openal.util.ALHelpers; + import java.io.UnsupportedEncodingException; import java.nio.ByteBuffer; import java.util.ArrayList; @@ -17,11 +19,11 @@ import java.util.ArrayList; */ public class ALCImpl extends ALCAbstractImpl { public boolean aclEnumerationExtIsPresent() { - return alcIsExtensionPresent(null, ALCConstants.ALC_ENUMERATION_EXT_NAME); + return alcIsExtensionPresent(null, ALHelpers.ALC_ENUMERATION_EXT); } public boolean aclEnumerateAllExtIsPresent() { - return alcIsExtensionPresent(null, ALCConstants.ALC_ENUMERATE_ALL_EXT_NAME); + return alcIsExtensionPresent(null, ALHelpers.ALC_ENUMERATE_ALL_EXT); } public boolean alcIsDoubleNullTerminatedString(final ALCdevice device, final int param) { |