Changeset 178673 in webkit


Ignore:
Timestamp:
Jan 19, 2015 2:02:48 PM (9 years ago)
Author:
Antti Koivisto
Message:

REGRESSION(r178250): ~2% PLT regression
https://bugs.webkit.org/show_bug.cgi?id=140640

Reviewed by Andreas Kling.

  • platform/graphics/FontCache.cpp:

The patch accidentally contained a change to reduce the size of the cache (to verify that purgin works).
Restore it back to the original value.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r178671 r178673  
     12015-01-19  Antti Koivisto  <antti@apple.com>
     2
     3        REGRESSION(r178250): ~2% PLT regression
     4        https://bugs.webkit.org/show_bug.cgi?id=140640
     5
     6        Reviewed by Andreas Kling.
     7
     8        * platform/graphics/FontCache.cpp:
     9
     10        The patch accidentally contained a change to reduce the size of the cache (to verify that purgin works).
     11        Restore it back to the original value.
     12
    1132015-01-19  peavo@outlook.com  <peavo@outlook.com>
    214
  • trunk/Source/WebCore/platform/graphics/FontCache.cpp

    r178522 r178673  
    373373const int cTargetInactiveFontData = 100;
    374374#else
    375 const int cMaxInactiveFontData = 5;
     375const int cMaxInactiveFontData = 225;
    376376const int cTargetInactiveFontData = 200;
    377377#endif
Note: See TracChangeset for help on using the changeset viewer.