aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alAuxEffectSlot.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-05-18 01:33:01 -0700
committerChris Robinson <[email protected]>2013-05-18 01:33:01 -0700
commit78e7c1c27bb0dcc05fc961e53060be17e3df3e02 (patch)
treed4a1368d6a4039bf11b1a5ae9995089ee705cc71 /OpenAL32/alAuxEffectSlot.c
parenta7ad6080f0d3fc783fd5e1811b961ab9efe79cde (diff)
Implement distortion and equalizer effects
Code provided by Mike Gorchak
Diffstat (limited to 'OpenAL32/alAuxEffectSlot.c')
-rw-r--r--OpenAL32/alAuxEffectSlot.c4
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: