diff options
author | Chris Robinson <[email protected]> | 2013-12-29 05:09:50 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-12-29 05:09:50 -0800 |
commit | 4e73b95fc05b85da550910318df6c04eb21edc4d (patch) | |
tree | 6f1a6a242e6ed33b1ea517e5799783c5c4a80939 /OpenAL32/Include | |
parent | 4c35f7c63243c7ffa251047074d44e6073edb435 (diff) |
Add the last remaining "real-time" properties
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 6 | ||||
-rw-r--r-- | OpenAL32/Include/alMidi.h | 12 |
2 files changed, 18 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index ff00fdac..7688c84e 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -55,9 +55,14 @@ #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_MOD_LFO_TO_VOLUME_SOFT 0x000D #define AL_CHORUS_SEND_SOFT 0x000F #define AL_REVERB_SEND_SOFT 0x0010 #define AL_PAN_SOFT 0x0011 +#define AL_MOD_LFO_DELAY_SOFT 0x0015 +#define AL_MOD_LFO_FREQUENCY_SOFT 0x0016 +#define AL_VIBRATO_LFO_DELAY_SOFT 0x0017 +#define AL_VIBRATO_LFO_FREQUENCY_SOFT 0x0018 #define AL_MOD_ENV_DELAYTIME_SOFT 0x0019 #define AL_MOD_ENV_ATTACKTIME_SOFT 0x001A #define AL_MOD_ENV_HOLDTIME_SOFT 0x001B @@ -81,6 +86,7 @@ #define AL_TUNING_FINE_SOFT 0x0034 #define AL_LOOP_MODE_SOFT 0x0036 #define AL_TUNING_SCALE_SOFT 0x0038 +#define AL_EXCLUSIVE_CLASS_SOFT 0x0039 #define AL_LOOP_CONTINUOUS_SOFT 0x0001 #define AL_LOOP_UNTIL_RELEASE_SOFT 0x0003 #define AL_FORMAT_TYPE_SOFT 0x1991 diff --git a/OpenAL32/Include/alMidi.h b/OpenAL32/Include/alMidi.h index b9adc4f2..c31992b3 100644 --- a/OpenAL32/Include/alMidi.h +++ b/OpenAL32/Include/alMidi.h @@ -31,6 +31,7 @@ typedef struct ALfontsound { ALint FilterQ; ALint ModLfoToFilterCutoff; ALint ModEnvToFilterCutoff; + ALint ModLfoToVolume; ALint ChorusSend; ALint ReverbSend; @@ -38,6 +39,15 @@ typedef struct ALfontsound { ALint Pan; struct { + ALint Delay; + ALint Frequency; + } ModLfo; + struct { + ALint Delay; + ALint Frequency; + } VibratoLfo; + + struct { ALint DelayTime; ALint AttackTime; ALint HoldTime; @@ -67,6 +77,8 @@ typedef struct ALfontsound { ALint TuningScale; + ALint ExclusiveClass; + ALuint Start; ALuint End; ALuint LoopStart; |