Changeset 96635 in webkit


Ignore:
Timestamp:
Oct 4, 2011 1:20:13 PM (13 years ago)
Author:
caryclark@google.com
Message:

Enable sub pixel text (Skia on Mac)
https://bugs.webkit.org/show_bug.cgi?id=69354
http://code.google.com/p/chromium/issues/detail?id=98165

Reviewed by Eric Seidel.

No new tests. Layout test pixel results have been
disabled and will be rebaselined once all Skia on Mac
changes are in.

  • platform/graphics/skia/FontSkia.cpp:

(WebCore::setupPaint):
Enable sub pixel text. This is set by default to enabled
by CoreGraphics, but by default disabled on Skia.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r96633 r96635  
     12011-10-04  Cary Clark  <caryclark@google.com>
     2
     3        Enable sub pixel text (Skia on Mac)
     4        https://bugs.webkit.org/show_bug.cgi?id=69354
     5        http://code.google.com/p/chromium/issues/detail?id=98165
     6
     7        Reviewed by Eric Seidel.
     8
     9        No new tests. Layout test pixel results have been
     10        disabled and will be rebaselined once all Skia on Mac
     11        changes are in.
     12
     13        * platform/graphics/skia/FontSkia.cpp:
     14        (WebCore::setupPaint):
     15        Enable sub pixel text. This is set by default to enabled
     16        by CoreGraphics, but by default disabled on Skia.
     17
    1182011-10-04  Anders Carlsson  <andersca@apple.com>
    219
  • trunk/Source/WebCore/platform/graphics/skia/FontSkia.cpp

    r96366 r96635  
    9090    paint->setAutohinted(false); // freetype specific
    9191    paint->setLCDRenderText(shouldSmoothFonts);
     92    paint->setSubpixelText(true);
    9293}
    9394
Note: See TracChangeset for help on using the changeset viewer.