blob: fd9e231cf4424723b1f3564bba530f4aeab074c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
namespace Ryujinx.Audio.Renderer.Server.Types
{
/// <summary>
/// The rendering device of an <see cref="AudioRenderSystem"/>.
/// </summary>
public enum AudioRendererRenderingDevice : byte
{
/// <summary>
/// Rendering is performed on the DSP.
/// </summary>
/// <remarks>
/// Only supports <see cref="AudioRendererExecutionMode.Auto"/>.
/// </remarks>
Dsp,
/// <summary>
/// Rendering is performed on the CPU.
/// </summary>
/// <remarks>
/// Only supports <see cref="AudioRendererExecutionMode.Manual"/>.
/// </remarks>
Cpu,
}
}
|