aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/jogamp/openal
diff options
context:
space:
mode:
authorMathieu Féry <[email protected]>2023-12-04 17:14:48 +0100
committerMathieu Féry <[email protected]>2023-12-05 13:55:40 +0100
commit41a2967c25a3be64733262eb8b1f1c6b23cfd1dc (patch)
tree0bef72efbbea9ec228060ccd180444ebba6811fb /src/java/jogamp/openal
parentc989989b1221639933aeabebd65d5453eac0b0a7 (diff)
feat(alc): Fix typo of following methods in ALC api :
* aclEnumerationExtIsPresent -> alcEnumerationExtIsPresent * aclEnumerateAllExtIsPresent -> alcEnumerateAllExtIsPresent
Diffstat (limited to 'src/java/jogamp/openal')
-rw-r--r--src/java/jogamp/openal/ALCImpl.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/jogamp/openal/ALCImpl.java b/src/java/jogamp/openal/ALCImpl.java
index 6dc775c..0e85780 100644
--- a/src/java/jogamp/openal/ALCImpl.java
+++ b/src/java/jogamp/openal/ALCImpl.java
@@ -18,12 +18,12 @@ import java.util.ArrayList;
*/
public class ALCImpl extends ALCAbstractImpl {
@Override
- public boolean aclEnumerationExtIsPresent() {
+ public boolean alcEnumerationExtIsPresent() {
return alcIsExtensionPresent(null, ALHelpers.ALC_ENUMERATION_EXT);
}
@Override
- public boolean aclEnumerateAllExtIsPresent() {
+ public boolean alcEnumerateAllExtIsPresent() {
return alcIsExtensionPresent(null, ALHelpers.ALC_ENUMERATE_ALL_EXT);
}