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

Unified Diff: third_party/skia/src/ports/SkFontHost_FreeType.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
Index: third_party/skia/src/ports/SkFontHost_FreeType.cpp
===================================================================
--- third_party/skia/src/ports/SkFontHost_FreeType.cpp (revision 14586)
+++ third_party/skia/src/ports/SkFontHost_FreeType.cpp (working copy)
@@ -1407,7 +1407,8 @@
ymin = -SkIntToScalar(face->bbox.yMin) / upem;
ymax = -SkIntToScalar(face->bbox.yMax) / upem;
underlineThickness = SkIntToScalar(face->underline_thickness) / upem;
- underlinePosition = -SkIntToScalar(face->underline_position) / upem;
+ underlinePosition = -SkIntToScalar(face->underline_position +
+ face->underline_thickness / 2) / upem;
if(mx) {
mx->fFlags |= SkPaint::FontMetrics::kUnderlineThinknessIsValid_Flag;
@@ -1483,8 +1484,8 @@
mx->fXMax = xmax;
mx->fXHeight = x_height;
mx->fCapHeight = cap_height;
- mx->fUnderlineThickness = underlineThickness;
- mx->fUnderlinePosition = underlinePosition;
+ mx->fUnderlineThickness = underlineThickness * mxy;
+ mx->fUnderlinePosition = underlinePosition * mxy;
}
if (my) {
my->fTop = ymax * myy;
@@ -1497,8 +1498,8 @@
my->fXMax = xmax;
my->fXHeight = x_height;
my->fCapHeight = cap_height;
- my->fUnderlineThickness = underlineThickness;
- my->fUnderlinePosition = underlinePosition;
+ my->fUnderlineThickness = underlineThickness * myy;
+ my->fUnderlinePosition = underlinePosition * myy;
}
}
« no previous file with comments | « third_party/WebKit/Source/platform/fonts/skia/SimpleFontDataSkia.cpp ('k') | third_party/skia/src/ports/SkFontHost_win.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698