We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 491bddb commit cea9deaCopy full SHA for cea9dea
1 file changed
Client/cefweb/CWebApp.cpp
@@ -101,10 +101,13 @@ namespace
101
if (disableGpu)
102
{
103
commandLine->AppendSwitch("disable-gpu");
104
- // Also disable GPU compositing when GPU is disabled
105
- commandLine->AppendSwitch("disable-gpu-compositing");
106
}
107
+ // Disable GPU compositing in all cases.
+ // This keeps Chromium's compositor on the software path even when GPU
108
+ // rendering stays enabled for other browser pipelines.
109
+ commandLine->AppendSwitch("disable-gpu-compositing");
110
+
111
// Hardware video decoding - enable when GPU is enabled and video acceleration is requested
112
if (!disableGpu && enableVideoAccel)
113
0 commit comments