Changeset 209435 in webkit


Ignore:
Timestamp:
Dec 6, 2016, 4:46:02 PM (9 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r209391.
https://bugs.webkit.org/show_bug.cgi?id=165501

requires explicit nullptr checks so missing env vars don't
flip AC mode (Requested by mcatanzaro on #webkit).

Reverted changeset:

"[GTK] Process accelerated compositing env variables only if
they are really enabled"
https://bugs.webkit.org/show_bug.cgi?id=165300
http://trac.webkit.org/changeset/209391

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r209434 r209435  
     12016-12-06  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r209391.
     4        https://bugs.webkit.org/show_bug.cgi?id=165501
     5
     6        requires explicit nullptr checks so missing env vars don't
     7        flip AC mode (Requested by mcatanzaro on #webkit).
     8
     9        Reverted changeset:
     10
     11        "[GTK] Process accelerated compositing env variables only if
     12        they are really enabled"
     13        https://bugs.webkit.org/show_bug.cgi?id=165300
     14        http://trac.webkit.org/changeset/209391
     15
    1162016-12-06  Alexey Proskuryakov  <ap@apple.com>
    217
  • trunk/Source/WebKit2/UIProcess/gtk/WebPreferencesGtk.cpp

    r209391 r209435  
    4848    setForceCompositingMode(true);
    4949#else
    50     if (g_strcmp0(getenv("WEBKIT_FORCE_COMPOSITING_MODE"), "0"))
     50    if (getenv("WEBKIT_FORCE_COMPOSITING_MODE"))
    5151        setForceCompositingMode(true);
    5252#endif
    5353
    54     if (g_strcmp0(getenv("WEBKIT_DISABLE_COMPOSITING_MODE"), "0")) {
     54    if (getenv("WEBKIT_DISABLE_COMPOSITING_MODE")) {
    5555        setAcceleratedCompositingEnabled(false);
    5656        return;
Note: See TracChangeset for help on using the changeset viewer.