aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Audio/Renderer/Common/SinkType.cs
blob: 5a08df4e1dacec4113f1ab3e912845f3fea45aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace Ryujinx.Audio.Renderer.Common
{
    /// <summary>
    /// The type of a sink.
    /// </summary>
    public enum SinkType : byte
    {
        /// <summary>
        /// The sink is in an invalid state.
        /// </summary>
        Invalid,

        /// <summary>
        /// The sink is a device.
        /// </summary>
        Device,

        /// <summary>
        /// The sink is a circular buffer.
        /// </summary>
        CircularBuffer,
    }
}