Add GPU scaling and Vivid Gaming selection

This commit is contained in:
Kamil Trzciński 2022-11-21 21:27:33 +01:00
parent ed6cc9ea14
commit af52e41aef
9 changed files with 765 additions and 50 deletions

View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PowerControl.Helpers.AMD
{
public class RadeonSoftware
{
public static void Kill()
{
foreach (var process in Process.GetProcessesByName("RadeonSoftware.exe"))
{
try { process.Kill(); }
catch { }
}
}
}
}