[Webkit-unassigned] [Bug 54004] -webkit-font-smoothing:antialiased has no effect on GDI text

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Aug 24 11:18:58 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=54004


Roger Fong <roger_fong at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |roger_fong at apple.com




--- Comment #2 from Roger Fong <roger_fong at apple.com>  2012-08-24 11:18:58 PST ---
When specifying -webkit-font-smoothing: antialised; the code path ends up using GDI to draw the text. 
Firstly, this causes a lot of transparency issues since GDI has no concept of an alpha channel.
Secondly, in the code path, GDI ends up drawing subpixel antialiased text, not aliased text anyways.

The CG code path also has the capability of drawing antialiased text. The reason that the GDI path was used in the first place is no longer a concern here so we can stop using the GDI code path.

I'll be getting rid of the GDI code path so that font rendering on windows only uses CG code path for font rendering, instead of sometimes using CG and sometimes using GDI.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list