Changeset 198145 in webkit


Ignore:
Timestamp:
Mar 14, 2016 12:01:28 PM (8 years ago)
Author:
Chris Dumez
Message:

Regression(r197981): Huge regression on Mac PLT
https://bugs.webkit.org/show_bug.cgi?id=155443
<rdar://problem/25113391>

Reviewed by Gavin Barraclough.

We have experience a huge regression on Mac PLT after r197981, so
disable the feature until the performance issue is resolved.

  • platform/graphics/ca/GraphicsLayerCA.cpp:

(WebCore::GraphicsLayer::supportsSmoothedLayerText):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r198143 r198145  
     12016-03-14  Chris Dumez  <cdumez@apple.com>
     2
     3        Regression(r197981): Huge regression on Mac PLT
     4        https://bugs.webkit.org/show_bug.cgi?id=155443
     5        <rdar://problem/25113391>
     6
     7        Reviewed by Gavin Barraclough.
     8
     9        We have experience a huge regression on Mac PLT after r197981, so
     10        disable the feature until the performance issue is resolved.
     11
     12        * platform/graphics/ca/GraphicsLayerCA.cpp:
     13        (WebCore::GraphicsLayer::supportsSmoothedLayerText):
     14
    1152016-03-14  Chris Vienneau  <chris.vno@outlook.com>
    216
  • trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp

    r197981 r198145  
    315315{
    316316#if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101200
    317     return isSmoothedLayerTextEnabled;
     317    // FIXME: This is currently a major regression on PLT (rdar://problem/25113391).
     318    // return isSmoothedLayerTextEnabled;
     319    return false;
    318320#endif
    319321    return false;
Note: See TracChangeset for help on using the changeset viewer.