diff options
author | Michael Bien <[email protected]> | 2010-07-10 17:33:11 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-07-10 17:33:11 +0200 |
commit | afa3632e8df813f54195c8a97833eff5c832d6ee (patch) | |
tree | 7ca4afd776f7c12919d598622b9498797273afd4 /make/joal-alc.cfg | |
parent | 728c9b6e348520d778009f42633ea9f6e0e782a1 (diff) |
fixed alcGetString functionpointer mapping (gluegen does not handle method renames correctly).
ALCImpl is now ALCAbstractImpl. "Custom code" is now in ALCImpl which extends ALCAbstractImpl.
Diffstat (limited to 'make/joal-alc.cfg')
-rwxr-xr-x | make/joal-alc.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/joal-alc.cfg b/make/joal-alc.cfg index 8626e43..3134a06 100755 --- a/make/joal-alc.cfg +++ b/make/joal-alc.cfg @@ -4,7 +4,8 @@ Include joal-common.cfg Style InterfaceAndImpl JavaClass ALC ImplPackage com.jogamp.openal.impl -ImplJavaClass ALCImpl +ImplJavaClass ALCAbstractImpl +AccessControl ALCAbstractImpl PUBLIC_ABSTRACT Extends ALC ALCConstants EmitProcAddressTable true @@ -35,7 +36,6 @@ ReturnValueCapacity alcGetStringImpl strlen_alc(_device_ptr, {1}, _res) # Note that we don't declare this as "ReturnsString" because we're # going to wrap it in another method IncludeAs CustomJavaCode ALC joal-alc-CustomJavaCode.java -IncludeAs CustomJavaCode ALCImpl joal-alc-impl-CustomJavaCode.java # These routines use strings ArgumentIsString alcIsExtensionPresent 1 |