mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 06:26:44 +00:00
21 lines
405 B
C#
21 lines
405 B
C#
|
namespace Ryujinx.Audio.Renderer.Dsp.Command
|
||
|
{
|
||
|
public interface ICommand
|
||
|
{
|
||
|
public bool Enabled { get; set; }
|
||
|
|
||
|
public int NodeId { get; }
|
||
|
|
||
|
public CommandType CommandType { get; }
|
||
|
|
||
|
public ulong EstimatedProcessingTime { get; }
|
||
|
|
||
|
public void Process(CommandList context);
|
||
|
|
||
|
public bool ShouldMeter()
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|