Browse Source

Merge pull request #124 from TheFeelTrain/patch-1

Properly enable QWebEngine GPU acceleration
Ian Walton 3 years ago
parent
commit
e9a24ccfb9
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/main.cpp

+ 2 - 1
src/main.cpp

@@ -81,7 +81,8 @@ void ShowLicenseInfo()
 
 /////////////////////////////////////////////////////////////////////////////////////////
 QStringList g_qtFlags = {
-  "--disable-web-security"
+  "--disable-web-security",
+  "--enable-gpu-rasterization"
 };
 
 /////////////////////////////////////////////////////////////////////////////////////////