aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/OsHle/Services/Apm/PerformanceConfiguration.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/OsHle/Services/Apm/PerformanceConfiguration.cs')
-rw-r--r--Ryujinx.HLE/OsHle/Services/Apm/PerformanceConfiguration.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Ryujinx.HLE/OsHle/Services/Apm/PerformanceConfiguration.cs b/Ryujinx.HLE/OsHle/Services/Apm/PerformanceConfiguration.cs
new file mode 100644
index 00000000..07d59285
--- /dev/null
+++ b/Ryujinx.HLE/OsHle/Services/Apm/PerformanceConfiguration.cs
@@ -0,0 +1,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
+ }
+}