diff options
author | Chris Robinson <[email protected]> | 2014-05-17 08:04:14 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-05-17 08:04:14 -0700 |
commit | 190ab90c0d65a6e90ca96d31bc42f55a3023df5f (patch) | |
tree | 639e29dc796cdac0b8836d4ab9bde8ce0bab6834 /Alc | |
parent | 82dd2d875e9b7549eaa63f9d1a3e08635aafa524 (diff) |
Support the band-pass filter
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALc.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -566,9 +566,7 @@ static const ALCenums enumeration[] = { DECL(AL_FILTER_NULL), DECL(AL_FILTER_LOWPASS), DECL(AL_FILTER_HIGHPASS), -#if 0 DECL(AL_FILTER_BANDPASS), -#endif DECL(AL_LOWPASS_GAIN), DECL(AL_LOWPASS_GAINHF), @@ -576,6 +574,10 @@ static const ALCenums enumeration[] = { DECL(AL_HIGHPASS_GAIN), DECL(AL_HIGHPASS_GAINLF), + DECL(AL_BANDPASS_GAIN), + DECL(AL_BANDPASS_GAINHF), + DECL(AL_BANDPASS_GAINLF), + DECL(AL_EFFECT_TYPE), DECL(AL_EFFECT_NULL), DECL(AL_EFFECT_REVERB), |