2020-08-18 03:49:37 +02: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 08:28:45 +01:00
|
|
|
public uint EstimatedProcessingTime { get; }
|
2020-08-18 03:49:37 +02:00
|
|
|
|
|
|
|
public void Process(CommandList context);
|
|
|
|
|
|
|
|
public bool ShouldMeter()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2022-07-25 20:46:33 +02:00
|
|
|
}
|