diff options
author | Chris Robinson <[email protected]> | 2012-10-13 00:56:39 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-10-13 00:56:39 -0700 |
commit | 121252347058fbf8a5af9e598a82ad98fc92f46c (patch) | |
tree | 2281e3e3636b5bd8f7303a2c434561d0270a1065 /Alc/ALc.c | |
parent | 73105b2d4bad1592f1ac21f0b021e00bdc1d5321 (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/ALc.c')
-rw-r--r-- | Alc/ALc.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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), |