DisableGpuAcceleration option

This commit is contained in:
Natsumi
2024-11-08 00:02:18 +13:00
parent 10dae1707e
commit a47c5f8f7a
4 changed files with 40 additions and 2 deletions

View File

@@ -57,6 +57,11 @@ namespace VRCX
{
cefSettings.CefCommandLineArgs["proxy-server"] = WebApi.ProxyUrl;
}
if (VRCXStorage.Instance.Get("VRCX_DisableGpuAcceleration") == "true")
{
cefSettings.CefCommandLineArgs.Add("disable-gpu");
}
if (Program.LaunchDebug)
{