blob: 0db61c5e68100a1b8daa3ea81a62ec6bbd809d48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
namespace Ryujinx.Audio.Renderer.Server.Types
{
/// <summary>
/// The execution mode of an <see cref="AudioRenderSystem"/>.
/// </summary>
public enum AudioRendererExecutionMode : byte
{
/// <summary>
/// Automatically send commands to the DSP at a fixed rate (see <see cref="AudioRenderSystem.SendCommands"/>
/// </summary>
Auto,
/// <summary>
/// Audio renderer operation needs to be done manually via ExecuteAudioRenderer.
/// </summary>
/// <remarks>This is not supported on the DSP and is as such stubbed.</remarks>
Manual,
}
}
|