mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-04-05 22:35:38 +00:00
Add VangoghGPU SMU controller with CPU and GPU clock frequency control
This commit is contained in:
parent
9eba0239a1
commit
a3a25bfb4e
11 changed files with 816 additions and 39 deletions
|
|
@ -1,4 +1,6 @@
|
|||
using PowerControl;
|
||||
using CommonHelpers;
|
||||
using PowerControl.Helpers.GPU;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace PowerControl
|
||||
{
|
||||
|
|
@ -10,6 +12,17 @@ namespace PowerControl
|
|||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
#if DEBUG
|
||||
Settings.Default.EnableExperimentalFeatures = true;
|
||||
#endif
|
||||
|
||||
if (Settings.Default.EnableExperimentalFeatures)
|
||||
{
|
||||
Trace.WriteLine("WinRing0 initialized=" + WinRing0.InitializeOls().ToString());
|
||||
|
||||
VangoghGPU.Detect();
|
||||
}
|
||||
|
||||
// To customize application configuration such as set high DPI settings or default font,
|
||||
// see https://aka.ms/applicationconfiguration.
|
||||
ApplicationConfiguration.Initialize();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue