aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Audio/Renderer/Common/NodeIdType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Audio/Renderer/Common/NodeIdType.cs')
-rw-r--r--Ryujinx.Audio/Renderer/Common/NodeIdType.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/Ryujinx.Audio/Renderer/Common/NodeIdType.cs b/Ryujinx.Audio/Renderer/Common/NodeIdType.cs
deleted file mode 100644
index 69b58f6b..00000000
--- a/Ryujinx.Audio/Renderer/Common/NodeIdType.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-namespace Ryujinx.Audio.Renderer.Common
-{
- /// <summary>
- /// The type of a node.
- /// </summary>
- public enum NodeIdType : byte
- {
- /// <summary>
- /// Invalid node id.
- /// </summary>
- Invalid = 0,
-
- /// <summary>
- /// Voice related node id. (data source, biquad filter, ...)
- /// </summary>
- Voice = 1,
-
- /// <summary>
- /// Mix related node id. (mix, effects, splitters, ...)
- /// </summary>
- Mix = 2,
-
- /// <summary>
- /// Sink related node id. (device &amp; circular buffer sink)
- /// </summary>
- Sink = 3,
-
- /// <summary>
- /// Performance monitoring related node id (performance commands)
- /// </summary>
- Performance = 15
- }
-} \ No newline at end of file