diff options
author | Chris Robinson <[email protected]> | 2013-12-29 04:36:01 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-12-29 04:36:01 -0800 |
commit | 4c35f7c63243c7ffa251047074d44e6073edb435 (patch) | |
tree | a2e58b8cc67a3df124b66437afd7fb6c27414fe1 /OpenAL32/Include | |
parent | 15aa12847d7d2797d5ef37ae428d5ab9afe0753a (diff) |
Add chorus and reverb send properties
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 | ||||
-rw-r--r-- | OpenAL32/Include/alMidi.h | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 1fe6b7e7..ff00fdac 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -55,6 +55,8 @@ #define AL_FILTER_RESONANCE_SOFT 0x0009 #define AL_MOD_LFO_TO_FILTER_CUTOFF_SOFT 0x000A #define AL_MOD_ENV_TO_FILTER_CUTOFF_SOFT 0x000B +#define AL_CHORUS_SEND_SOFT 0x000F +#define AL_REVERB_SEND_SOFT 0x0010 #define AL_PAN_SOFT 0x0011 #define AL_MOD_ENV_DELAYTIME_SOFT 0x0019 #define AL_MOD_ENV_ATTACKTIME_SOFT 0x001A diff --git a/OpenAL32/Include/alMidi.h b/OpenAL32/Include/alMidi.h index 47b159ba..b9adc4f2 100644 --- a/OpenAL32/Include/alMidi.h +++ b/OpenAL32/Include/alMidi.h @@ -32,6 +32,9 @@ typedef struct ALfontsound { ALint ModLfoToFilterCutoff; ALint ModEnvToFilterCutoff; + ALint ChorusSend; + ALint ReverbSend; + ALint Pan; struct { |