2020-08-17 21:49:37 -04: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 02:28:45 -05:00
|
|
|
public uint EstimatedProcessingTime { get; }
|
2020-08-17 21:49:37 -04:00
|
|
|
|
|
|
|
public void Process(CommandList context);
|
|
|
|
|
|
|
|
public bool ShouldMeter()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2022-07-25 14:46:33 -04:00
|
|
|
}
|