[Patches] Lag Compensation; [Launcher] Acrylic and Light/Dark themes and other improvements

This commit is contained in:
nastys
2021-02-26 00:24:12 +01:00
parent 77a99e4cf3
commit 581b78972f
14 changed files with 699 additions and 223 deletions
+4 -1
View File
@@ -34,7 +34,7 @@ namespace GPUModel
// note that the used GL context may differ
std::string getGpuName()
{
// detected model can be overridden -- 0: Kepler, 1: Maxwell, 2: Turing
// detected model can be overridden -- 0: Kepler, 1: Maxwell, 2: Turing, 3: Ampere
int nGPUModel = GetPrivateProfileIntW(L"gpu", L"model", -1, CONFIG_FILE);
if (nGPUModel >= 0 && nGPUModel <= 2)
{
@@ -50,6 +50,9 @@ namespace GPUModel
case 2:
arch = "TU000";
break;
case 3:
arch = "GA000";
break;
}
printf("[GPUModel] GPU Model override: %s\n", arch.c_str());