diff options
author | Chris Robinson <[email protected]> | 2013-05-18 01:33:01 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-05-18 01:33:01 -0700 |
commit | 78e7c1c27bb0dcc05fc961e53060be17e3df3e02 (patch) | |
tree | d4a1368d6a4039bf11b1a5ae9995089ee705cc71 /OpenAL32/alAuxEffectSlot.c | |
parent | a7ad6080f0d3fc783fd5e1811b961ab9efe79cde (diff) |
Implement distortion and equalizer effects
Code provided by Mike Gorchak
Diffstat (limited to 'OpenAL32/alAuxEffectSlot.c')
-rw-r--r-- | OpenAL32/alAuxEffectSlot.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenAL32/alAuxEffectSlot.c b/OpenAL32/alAuxEffectSlot.c index dbaccaa2..7df6bca4 100644 --- a/OpenAL32/alAuxEffectSlot.c +++ b/OpenAL32/alAuxEffectSlot.c @@ -513,8 +513,12 @@ static ALeffectState *CreateStateByType(ALenum type) return ReverbCreate(); case AL_EFFECT_CHORUS: return ChorusCreate(); + case AL_EFFECT_DISTORTION: + return DistortionCreate(); case AL_EFFECT_ECHO: return EchoCreate(); + case AL_EFFECT_EQUALIZER: + return EqualizerCreate(); case AL_EFFECT_FLANGER: return FlangerCreate(); case AL_EFFECT_RING_MODULATOR: |