aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Apm/PerformanceConfiguration.cs
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2019-09-19 02:45:11 +0200
committerjduncanator <1518948+jduncanator@users.noreply.github.com>2019-09-19 10:45:11 +1000
commita0720b5681852f3d786d77bd3793b0359dea321c (patch)
tree9d8f61e540d1d1d827999902dad95e5c0c1e076e /Ryujinx.HLE/HOS/Services/Apm/PerformanceConfiguration.cs
parent4af3101b22e6957d6aa48a2768566d658699f4ed (diff)
Refactoring HOS folder structure (#771)
* Refactoring HOS folder structure Refactoring HOS folder structure: - Added some subfolders when needed (Following structure decided in private). - Added some `Types` folders when needed. - Little cleanup here and there. - Add services placeholders for every HOS services (close #766 and #753). * Remove Types namespaces
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Apm/PerformanceConfiguration.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Apm/PerformanceConfiguration.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Apm/PerformanceConfiguration.cs b/Ryujinx.HLE/HOS/Services/Apm/PerformanceConfiguration.cs
deleted file mode 100644
index e42edebc..00000000
--- a/Ryujinx.HLE/HOS/Services/Apm/PerformanceConfiguration.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Apm
-{
- enum PerformanceConfiguration : uint // Clocks are all in MHz.
- { // CPU | GPU | RAM | NOTE
- PerformanceConfiguration1 = 0x00010000, // 1020 | 384 | 1600 | Only available while docked.
- PerformanceConfiguration2 = 0x00010001, // 1020 | 768 | 1600 | Only available while docked.
- PerformanceConfiguration3 = 0x00010002, // 1224 | 691.2 | 1600 | Only available for SDEV units.
- PerformanceConfiguration4 = 0x00020000, // 1020 | 230.4 | 1600 | Only available for SDEV units.
- PerformanceConfiguration5 = 0x00020001, // 1020 | 307.2 | 1600 |
- PerformanceConfiguration6 = 0x00020002, // 1224 | 230.4 | 1600 |
- PerformanceConfiguration7 = 0x00020003, // 1020 | 307 | 1331.2 |
- PerformanceConfiguration8 = 0x00020004, // 1020 | 384 | 1331.2 |
- PerformanceConfiguration9 = 0x00020005, // 1020 | 307.2 | 1065.6 |
- PerformanceConfiguration10 = 0x00020006, // 1020 | 384 | 1065.6 |
- PerformanceConfiguration11 = 0x92220007, // 1020 | 460.8 | 1600 |
- PerformanceConfiguration12 = 0x92220008, // 1020 | 460.8 | 1331.2 |
- PerformanceConfiguration13 = 0x92220009, // 1785 | 768 | 1600 | 7.0.0+
- PerformanceConfiguration14 = 0x9222000A, // 1785 | 768 | 1331.2 | 7.0.0+
- PerformanceConfiguration15 = 0x9222000B, // 1020 | 768 | 1600 | 7.0.0+
- PerformanceConfiguration16 = 0x9222000C // 1020 | 768 | 1331.2 | 7.0.0+
- }
-} \ No newline at end of file