diff options
author | Chris Robinson <[email protected]> | 2014-05-17 07:29:50 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-05-17 07:29:50 -0700 |
commit | 3a26ebef0bbe62f3143c5cb3de0e108f0bcb8b91 (patch) | |
tree | 56426e11f3ae58c72f79fb90cc657d5c0a2f319d /OpenAL32/Include | |
parent | 0b5b39d5e60b250a41a6f306f3167a553d5dad58 (diff) |
Implementing handling high-pass filter properties
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alFilter.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenAL32/Include/alFilter.h b/OpenAL32/Include/alFilter.h index 86547182..0b3ab844 100644 --- a/OpenAL32/Include/alFilter.h +++ b/OpenAL32/Include/alFilter.h @@ -8,6 +8,7 @@ extern "C" { #endif #define LOWPASSFREQREF (5000.0f) +#define HIGHPASSFREQREF (250.0f) /* Filters implementation is based on the "Cookbook formulae for audio * @@ -65,6 +66,8 @@ typedef struct ALfilter { ALfloat Gain; ALfloat GainHF; ALfloat HFReference; + ALfloat GainLF; + ALfloat LFReference; void (*SetParami)(struct ALfilter *filter, ALCcontext *context, ALenum param, ALint val); void (*SetParamiv)(struct ALfilter *filter, ALCcontext *context, ALenum param, const ALint *vals); |