mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-13 05:47:43 +02:00
24 lines
No EOL
551 B
C#
24 lines
No EOL
551 B
C#
namespace Ryujinx.Audio.Renderer.Dsp.Command
|
|
{
|
|
public class ClearMixBufferCommand : ICommand
|
|
{
|
|
public bool Enabled { get; set; }
|
|
|
|
public int NodeId { get; }
|
|
|
|
public CommandType CommandType => CommandType.ClearMixBuffer;
|
|
|
|
public uint EstimatedProcessingTime { get; set; }
|
|
|
|
public ClearMixBufferCommand(int nodeId)
|
|
{
|
|
Enabled = true;
|
|
NodeId = nodeId;
|
|
}
|
|
|
|
public void Process(CommandList context)
|
|
{
|
|
context.ClearBuffers();
|
|
}
|
|
}
|
|
} |