aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Audio/Renderer/Common/PerformanceDetailType.cs
blob: bde32a70945eff2affa2ac39fc9bff3ec269bf6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Ryujinx.Audio.Renderer.Common
{
    public enum PerformanceDetailType : byte
    {
        Unknown,
        PcmInt16,
        Adpcm,
        VolumeRamp,
        BiquadFilter,
        Mix,
        Delay,
        Aux,
        Reverb,
        Reverb3d,
        PcmFloat,
        Limiter,
        CaptureBuffer,
        Compressor,
    }
}