aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Audio/Renderer/Dsp/Command/ICommand.cs
blob: 34a62c58d349dd5f1f574db3358600d6e4780846 (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;
        }
    }
}