aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/OsHle/Services/Apm/PerformanceConfiguration.cs
blob: 07d59285b18ca1b75ad2bc95c0963385a757e4e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Ryujinx.HLE.OsHle.Services.Apm
{
    enum PerformanceConfiguration : uint
    {
        PerformanceConfiguration1  = 0x00010000,
        PerformanceConfiguration2  = 0x00010001,
        PerformanceConfiguration3  = 0x00010002,
        PerformanceConfiguration4  = 0x00020000,
        PerformanceConfiguration5  = 0x00020001,
        PerformanceConfiguration6  = 0x00020002,
        PerformanceConfiguration7  = 0x00020003,
        PerformanceConfiguration8  = 0x00020004,
        PerformanceConfiguration9  = 0x00020005,
        PerformanceConfiguration10 = 0x00020006,
        PerformanceConfiguration11 = 0x92220007,
        PerformanceConfiguration12 = 0x92220008
    }
}