aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Audio/Renderer/Dsp/Command/ICommand.cs
blob: d281e6e9fc91cab77c398662c77bcd148a910dd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Ryujinx.Audio.Renderer.Dsp.Command
{
    public interface ICommand
    {
        public bool Enabled { get; set; }

        public int NodeId { get; }

        public CommandType CommandType { get; }

        public uint EstimatedProcessingTime { get; }

        public void Process(CommandList context);

        public bool ShouldMeter()
        {
            return false;
        }
    }
}