aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-10-13 00:56:39 -0700
committerChris Robinson <[email protected]>2012-10-13 00:56:39 -0700
commit121252347058fbf8a5af9e598a82ad98fc92f46c (patch)
tree2281e3e3636b5bd8f7303a2c434561d0270a1065 /Alc
parent73105b2d4bad1592f1ac21f0b021e00bdc1d5321 (diff)
Implement the double and int64 source setters
Note that currently the int64 setters do not range check before being passed to the int setters, erroneously chopping off the upper bits.
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index eeaf54f9..3506777d 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -254,9 +254,15 @@ static const ALCfunction alcFunctions[] = {
DECL(alDeferUpdatesSOFT),
DECL(alProcessUpdatesSOFT),
+ DECL(alSourcedSOFT),
+ DECL(alSource3dSOFT),
+ DECL(alSourcedvSOFT),
DECL(alGetSourcedSOFT),
DECL(alGetSource3dSOFT),
DECL(alGetSourcedvSOFT),
+ DECL(alSourcei64SOFT),
+ DECL(alSource3i64SOFT),
+ DECL(alSourcei64vSOFT),
DECL(alGetSourcei64SOFT),
DECL(alGetSource3i64SOFT),
DECL(alGetSourcei64vSOFT),