RESOLVED FIXED Bug 150340
[FreeType] Add support for the USE_TYPO_METRICS flag
https://bugs.webkit.org/show_bug.cgi?id=150340
Summary [FreeType] Add support for the USE_TYPO_METRICS flag
Frédéric Wang (:fredw)
Reported 2015-10-19 14:06:16 PDT
This is bug 131839 for Linux.
Attachments
Patch (9.09 KB, patch)
2015-10-19 14:35 PDT, Frédéric Wang (:fredw)
mrobinson: review+
Patch final version (8.64 KB, patch)
2015-10-20 14:42 PDT, Frédéric Wang (:fredw)
no flags
Patch final version (8.64 KB, patch)
2015-10-20 23:59 PDT, Frédéric Wang (:fredw)
no flags
Frédéric Wang (:fredw)
Comment 1 2015-10-19 14:35:20 PDT
Myles C. Maxfield
Comment 2 2015-10-20 10:51:22 PDT
Comment on attachment 263512 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=263512&action=review I can't comment on the FreeType-specific stuff, but this approach looks good to me. > Source/WebCore/platform/graphics/freetype/SimpleFontDataFreeType.cpp:72 > + if (TT_OS2* os2 = static_cast<TT_OS2*>(FT_Get_Sfnt_Table(freeTypeFace, ft_sfnt_os2))) { > + const FT_Short kUseTypoMetricsMask = 1 << 7; > + if (os2->fsSelection & kUseTypoMetricsMask) { There's really no FreeType API for this? :(
Frédéric Wang (:fredw)
Comment 3 2015-10-20 11:14:49 PDT
> There's really no FreeType API for this? :( I checked the Cairo and FreeType online documentation and could not find any easier way to retrieve the typo values (the yscale parameter was actually taken from Gecko's gfx/thebes/gfxFT2Utils.cpp and they also hardcode the use_typo_metrics bit). I just downloaded the freetype-2.6 source and searched for "typo" metrics but I did not find anything either...
Martin Robinson
Comment 4 2015-10-20 13:56:29 PDT
Comment on attachment 263512 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=263512&action=review Looks good to me, except for a few nits. > Source/WebCore/platform/graphics/freetype/SimpleFontDataFreeType.cpp:70 > + if (TT_OS2* os2 = static_cast<TT_OS2*>(FT_Get_Sfnt_Table(freeTypeFace, ft_sfnt_os2))) { I think WebKit style specifies this should be called OS2Table instead of os2. > LayoutTests/fonts/use-typo-metrics-1.html:9 > + src: url("./lineheight5000-typolineheight2300.woff"); Is the "./" necessary here?
Frédéric Wang (:fredw)
Comment 5 2015-10-20 14:42:25 PDT
Created attachment 263619 [details] Patch final version Thanks!
Frédéric Wang (:fredw)
Comment 6 2015-10-20 23:59:50 PDT
Created attachment 263663 [details] Patch final version
Frédéric Wang (:fredw)
Comment 7 2015-10-21 00:06:07 PDT
Note You need to log in before you can comment on or make changes to this bug.