diff options
Diffstat (limited to 'Alc/effects/base.h')
-rw-r--r-- | Alc/effects/base.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Alc/effects/base.h b/Alc/effects/base.h index c2848f37..2b067f11 100644 --- a/Alc/effects/base.h +++ b/Alc/effects/base.h @@ -110,6 +110,15 @@ union EffectProps { } Pshifter; struct { + ALfloat Rate; + ALint PhonemeA; + ALint PhonemeB; + ALint PhonemeACoarseTuning; + ALint PhonemeBCoarseTuning; + ALint Waveform; + } Vmorpher; + + struct { ALfloat Gain; } Dedicated; }; @@ -180,6 +189,7 @@ EffectStateFactory *FlangerStateFactory_getFactory(void); EffectStateFactory *FshifterStateFactory_getFactory(void); EffectStateFactory *ModulatorStateFactory_getFactory(void); EffectStateFactory *PshifterStateFactory_getFactory(void); +EffectStateFactory* VmorpherStateFactory_getFactory(void); EffectStateFactory *DedicatedStateFactory_getFactory(void); |