From 1fea48fbf46a39a108cdfb01a3b0eacf36e3528b Mon Sep 17 00:00:00 2001 From: PJB3005 Date: Sun, 28 Dec 2025 02:16:23 +0100 Subject: [PATCH] Don't disable GPU compositing in CEF Workaround no longer needed with message pump fixed. I think. --- Robust.Client.WebView/Cef/RobustCefApp.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Robust.Client.WebView/Cef/RobustCefApp.cs b/Robust.Client.WebView/Cef/RobustCefApp.cs index 2a057137a..983cc88b0 100644 --- a/Robust.Client.WebView/Cef/RobustCefApp.cs +++ b/Robust.Client.WebView/Cef/RobustCefApp.cs @@ -41,7 +41,7 @@ namespace Robust.Client.WebView.Cef // commandLine.AppendSwitch("--single-process"); //commandLine.AppendSwitch("--disable-gpu"); - commandLine.AppendSwitch("--disable-gpu-compositing"); + //commandLine.AppendSwitch("--disable-gpu-compositing"); //commandLine.AppendSwitch("--in-process-gpu"); commandLine.AppendSwitch("--off-screen-rendering-enabled");