diff options
author | Chris Robinson <[email protected]> | 2008-07-25 19:31:12 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2008-07-25 19:31:12 -0700 |
commit | c7e49c9f5735df52d4e847529ae9cb23027547e7 (patch) | |
tree | 91f78fed57422925b198ed2f20e2ba44b4dbf242 /OpenAL32/Include/alAuxEffectSlot.h | |
parent | e2ed8ff2bfd1521f849038c400c054b0b6e8a5b0 (diff) |
Implement yet another low-pass filter
This one using the Butterworth IIR filter design
Diffstat (limited to 'OpenAL32/Include/alAuxEffectSlot.h')
-rw-r--r-- | OpenAL32/Include/alAuxEffectSlot.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenAL32/Include/alAuxEffectSlot.h b/OpenAL32/Include/alAuxEffectSlot.h index d4cb0d11..9bae788d 100644 --- a/OpenAL32/Include/alAuxEffectSlot.h +++ b/OpenAL32/Include/alAuxEffectSlot.h @@ -1,8 +1,9 @@ #ifndef _AL_AUXEFFECTSLOT_H_ #define _AL_AUXEFFECTSLOT_H_ -#include "alEffect.h" #include "AL/al.h" +#include "alEffect.h" +#include "alFilter.h" #ifdef __cplusplus extern "C" { @@ -28,7 +29,8 @@ typedef struct ALeffectslot ALuint ReverbReflectPos; ALuint ReverbLatePos; ALfloat ReverbDecayGain; - ALfloat LastDecaySample; + + FILTER iirFilter; ALuint refcount; |