aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Audio/Renderer/Common/EffectType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Audio/Renderer/Common/EffectType.cs')
-rw-r--r--Ryujinx.Audio/Renderer/Common/EffectType.cs58
1 files changed, 0 insertions, 58 deletions
diff --git a/Ryujinx.Audio/Renderer/Common/EffectType.cs b/Ryujinx.Audio/Renderer/Common/EffectType.cs
deleted file mode 100644
index 7128db4c..00000000
--- a/Ryujinx.Audio/Renderer/Common/EffectType.cs
+++ /dev/null
@@ -1,58 +0,0 @@
-namespace Ryujinx.Audio.Renderer.Common
-{
- /// <summary>
- /// The type of an effect.
- /// </summary>
- public enum EffectType : byte
- {
- /// <summary>
- /// Invalid effect.
- /// </summary>
- Invalid,
-
- /// <summary>
- /// Effect applying additional mixing capability.
- /// </summary>
- BufferMix,
-
- /// <summary>
- /// Effect applying custom user effect (via auxiliary buffers).
- /// </summary>
- AuxiliaryBuffer,
-
- /// <summary>
- /// Effect applying a delay.
- /// </summary>
- Delay,
-
- /// <summary>
- /// Effect applying a reverberation effect via a given preset.
- /// </summary>
- Reverb,
-
- /// <summary>
- /// Effect applying a 3D reverberation effect via a given preset.
- /// </summary>
- Reverb3d,
-
- /// <summary>
- /// Effect applying a biquad filter.
- /// </summary>
- BiquadFilter,
-
- /// <summary>
- /// Effect applying a limiter (DRC).
- /// </summary>
- Limiter,
-
- /// <summary>
- /// Effect to capture mixes (via auxiliary buffers).
- /// </summary>
- CaptureBuffer,
-
- /// <summary>
- /// Effect applying a compressor filter (DRC).
- /// </summary>
- Compressor,
- }
-} \ No newline at end of file