From 78e7c1c27bb0dcc05fc961e53060be17e3df3e02 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 18 May 2013 01:33:01 -0700 Subject: Implement distortion and equalizer effects Code provided by Mike Gorchak --- OpenAL32/alAuxEffectSlot.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'OpenAL32/alAuxEffectSlot.c') 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: -- cgit v1.2.3