| 1234567891011121314151617181920 |
- 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;
- }
- }
- }
|