aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Audio/Renderer/Common/SinkType.cs
blob: 7d7a36076aa46b22ace19c1e8df788cbc33eba27 (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
    }
}