diff options
author | Chris Robinson <[email protected]> | 2008-01-15 20:32:20 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2008-01-15 20:32:20 -0800 |
commit | bf87aed459a2546bcc8762dd8a849485690ffd89 (patch) | |
tree | 5257f1e24aefd691e02783ed5a45fe5a15e4ce6b /OpenAL32/Include/alEffect.h | |
parent | 42306f93b33cc0dcb2d32831370495ae7ce15531 (diff) |
Add reverb parameters
Diffstat (limited to 'OpenAL32/Include/alEffect.h')
-rw-r--r-- | OpenAL32/Include/alEffect.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenAL32/Include/alEffect.h b/OpenAL32/Include/alEffect.h index d42f5adc..2b473c0e 100644 --- a/OpenAL32/Include/alEffect.h +++ b/OpenAL32/Include/alEffect.h @@ -23,6 +23,21 @@ extern "C" { #define AL_EFFECT_COMPRESSOR 0x000B #define AL_EFFECT_EQUALIZER 0x000C +#define AL_REVERB_DENSITY 0x0001 +#define AL_REVERB_DIFFUSION 0x0002 +#define AL_REVERB_GAIN 0x0003 +#define AL_REVERB_GAINHF 0x0004 +#define AL_REVERB_DECAY_TIME 0x0005 +#define AL_REVERB_DECAY_HFRATIO 0x0006 +#define AL_REVERB_REFLECTIONS_GAIN 0x0007 +#define AL_REVERB_REFLECTIONS_DELAY 0x0008 +#define AL_REVERB_LATE_REVERB_GAIN 0x0009 +#define AL_REVERB_LATE_REVERB_DELAY 0x000A +#define AL_REVERB_AIR_ABSORPTION_GAINHF 0x000B +#define AL_REVERB_ROOM_ROLLOFF_FACTOR 0x000C +#define AL_REVERB_DECAY_HFLIMIT 0x000D + + typedef struct ALeffect_struct { // Effect type (AL_EFFECT_NULL, ...) |