Title: [198321] releases/WebKitGTK/webkit-2.10/Source/WebKit2
Revision
198321
Author
[email protected]
Date
2016-03-17 00:44:44 -0700 (Thu, 17 Mar 2016)

Log Message

Merge r196467 - [GTK] Allow applications to disable Accelerated Compositing mode.
https://bugs.webkit.org/show_bug.cgi?id=154147

Reviewed by Carlos Garcia Campos.

* UIProcess/gtk/WebPreferencesGtk.cpp:
(WebKit::WebPreferences::platformInitializeStore): if the environment
variable  WEBKIT_DISABLE_COMPOSITING_MODE is defined, then disable AC.

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.10/Source/WebKit2/ChangeLog (198320 => 198321)


--- releases/WebKitGTK/webkit-2.10/Source/WebKit2/ChangeLog	2016-03-17 07:44:29 UTC (rev 198320)
+++ releases/WebKitGTK/webkit-2.10/Source/WebKit2/ChangeLog	2016-03-17 07:44:44 UTC (rev 198321)
@@ -1,3 +1,14 @@
+2016-02-12  Carlos Alberto Lopez Perez  <[email protected]>
+
+        [GTK] Allow applications to disable Accelerated Compositing mode.
+        https://bugs.webkit.org/show_bug.cgi?id=154147
+
+        Reviewed by Carlos Garcia Campos.
+
+        * UIProcess/gtk/WebPreferencesGtk.cpp:
+        (WebKit::WebPreferences::platformInitializeStore): if the environment
+        variable  WEBKIT_DISABLE_COMPOSITING_MODE is defined, then disable AC.
+
 2016-03-11  Carlos Garcia Campos  <[email protected]>
 
         Unreviewed. Update OptionsGTK.cmake and NEWS for 2.10.8 release.

Modified: releases/WebKitGTK/webkit-2.10/Source/WebKit2/UIProcess/gtk/WebPreferencesGtk.cpp (198320 => 198321)


--- releases/WebKitGTK/webkit-2.10/Source/WebKit2/UIProcess/gtk/WebPreferencesGtk.cpp	2016-03-17 07:44:29 UTC (rev 198320)
+++ releases/WebKitGTK/webkit-2.10/Source/WebKit2/UIProcess/gtk/WebPreferencesGtk.cpp	2016-03-17 07:44:44 UTC (rev 198321)
@@ -48,6 +48,8 @@
 #else
     if (getenv("WEBKIT_FORCE_COMPOSITING_MODE"))
         setForceCompositingMode(true);
+    if (getenv("WEBKIT_DISABLE_COMPOSITING_MODE"))
+        setAcceleratedCompositingEnabled(false);
 #endif
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to