Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Unified Diff: third_party/skia/src/ports/SkFontHost_win.cpp

Issue 280003002: Fix underline position. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/skia/src/ports/SkFontHost_FreeType.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/skia/src/ports/SkFontHost_win.cpp
===================================================================
--- third_party/skia/src/ports/SkFontHost_win.cpp (revision 14586)
+++ third_party/skia/src/ports/SkFontHost_win.cpp (working copy)
@@ -1055,12 +1055,13 @@
my->fMaxCharWidth = SkIntToScalar(otm.otmTextMetrics.tmMaxCharWidth);
my->fXMin = SkIntToScalar(otm.otmrcFontBox.left);
my->fXMax = SkIntToScalar(otm.otmrcFontBox.right);
+#endif
my->fUnderlineThickness = SkIntToScalar(otm.otmsUnderscoreSize);
my->fUnderlinePosition = -SkIntToScalar(otm.otmsUnderscorePosition);
my->fFlags |= SkPaint::FontMetrics::kUnderlineThinknessIsValid_Flag;
my->fFlags |= SkPaint::FontMetrics::kUnderlinePositionIsValid_Flag;
-#endif
+
my->fXHeight = SkIntToScalar(otm.otmsXHeight);
GLYPHMETRICS gm;
« no previous file with comments | « third_party/skia/src/ports/SkFontHost_FreeType.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698