2020-08-18 01:49:37 +00:00
|
|
|
namespace Ryujinx.Audio.Renderer.Dsp.Command
|
|
|
|
{
|
|
|
|
public interface ICommand
|
|
|
|
{
|
|
|
|
public bool Enabled { get; set; }
|
|
|
|
|
|
|
|
public int NodeId { get; }
|
|
|
|
|
|
|
|
public CommandType CommandType { get; }
|
|
|
|
|
2022-11-28 07:28:45 +00:00
|
|
|
public uint EstimatedProcessingTime { get; }
|
2020-08-18 01:49:37 +00:00
|
|
|
|
|
|
|
public void Process(CommandList context);
|
|
|
|
|
|
|
|
public bool ShouldMeter()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2022-07-25 18:46:33 +00:00
|
|
|
}
|