From 98882acdbfd7e82cb578831cbc368270417b635f Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Fri, 4 Sep 2009 22:16:12 +0000 Subject: [PATCH] Fixed XML documentation warnings. --- .../Audio/OpenAL/AL/EffectsExtensionEnums.cs | 119 ++++++++++++++++++ 1 file changed, 119 insertions(+) diff --git a/Source/OpenTK/Audio/OpenAL/AL/EffectsExtensionEnums.cs b/Source/OpenTK/Audio/OpenAL/AL/EffectsExtensionEnums.cs index 062d3bf3..93d71694 100644 --- a/Source/OpenTK/Audio/OpenAL/AL/EffectsExtensionEnums.cs +++ b/Source/OpenTK/Audio/OpenAL/AL/EffectsExtensionEnums.cs @@ -226,35 +226,154 @@ namespace OpenTK.Audio.OpenAL ///Vocal morpher effect parameters. If both parameters are set to the same phoneme, that determines the filtering effect that will be heard. If these two parameters are set to different phonemes, the filtering effect will morph between the two settings at a rate specified by EfxEffectf.VocalMorpherRate. public enum EfxFormantFilterSettings : int { + /// + /// The A phoneme of the vocal morpher. + /// VocalMorpherPhonemeA = 0, + + /// + /// The E phoneme of the vocal morpher. + /// VocalMorpherPhonemeE = 1, + + /// + /// The I phoneme of the vocal morpher. + /// VocalMorpherPhonemeI = 2, + + /// + /// The O phoneme of the vocal morpher. + /// VocalMorpherPhonemeO = 3, + + /// + /// The U phoneme of the vocal morpher. + /// VocalMorpherPhonemeU = 4, + + /// + /// The AA phoneme of the vocal morpher. + /// VocalMorpherPhonemeAA = 5, + + /// + /// The AE phoneme of the vocal morpher. + /// VocalMorpherPhonemeAE = 6, + + /// + /// The AH phoneme of the vocal morpher. + /// VocalMorpherPhonemeAH = 7, + + /// + /// The AO phoneme of the vocal morpher. + /// VocalMorpherPhonemeAO = 8, + + /// + /// The EH phoneme of the vocal morpher. + /// VocalMorpherPhonemeEH = 9, + + /// + /// The ER phoneme of the vocal morpher. + /// VocalMorpherPhonemeER = 10, + + /// + /// The IH phoneme of the vocal morpher. + /// VocalMorpherPhonemeIH = 11, + + /// + /// The IY phoneme of the vocal morpher. + /// VocalMorpherPhonemeIY = 12, + + /// + /// The UH phoneme of the vocal morpher. + /// VocalMorpherPhonemeUH = 13, + + /// + /// The UW phoneme of the vocal morpher. + /// VocalMorpherPhonemeUW = 14, + + /// + /// The B phoneme of the vocal morpher. + /// VocalMorpherPhonemeB = 15, + + /// + /// The D phoneme of the vocal morpher. + /// VocalMorpherPhonemeD = 16, + + /// + /// The F phoneme of the vocal morpher. + /// VocalMorpherPhonemeF = 17, + + /// + /// The G phoneme of the vocal morpher. + /// VocalMorpherPhonemeG = 18, + + /// + /// The J phoneme of the vocal morpher. + /// VocalMorpherPhonemeJ = 19, + + /// + /// The K phoneme of the vocal morpher. + /// VocalMorpherPhonemeK = 20, + + /// + /// The L phoneme of the vocal morpher. + /// VocalMorpherPhonemeL = 21, + + /// + /// The M phoneme of the vocal morpher. + /// VocalMorpherPhonemeM = 22, + + /// + /// The N phoneme of the vocal morpher. + /// VocalMorpherPhonemeN = 23, + + /// + /// The P phoneme of the vocal morpher. + /// VocalMorpherPhonemeP = 24, + + /// + /// The R phoneme of the vocal morpher. + /// VocalMorpherPhonemeR = 25, + + /// + /// The S phoneme of the vocal morpher. + /// VocalMorpherPhonemeS = 26, + + /// + /// The T phoneme of the vocal morpher. + /// VocalMorpherPhonemeT = 27, + + /// + /// The V phoneme of the vocal morpher. + /// VocalMorpherPhonemeV = 28, + + /// + /// The Z phoneme of the vocal morpher. + /// VocalMorpherPhonemeZ = 29, }