* src/base/ftsynth.c (FT_GlyphSlot_Embolden): Handle vertical layout

also.
This commit is contained in:
Werner Lemberg 2006-11-07 09:35:03 +00:00
parent 111b5aefca
commit 5e43089b4f
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-11-07 Zhe Su <james.su@gmail.com>
* src/base/ftsynth.c (FT_GlyphSlot_Embolden): Handle vertical layout
also.
2006-11-03 Werner Lemberg <wl@gnu.org>
* src/base/ftcalc.c: Don't use `long long' but `FT_Int64'.

View File

@ -137,8 +137,11 @@
return;
}
/* assume the layout is horizontal */
slot->advance.x += xstr;
if (slot->advance.x)
slot->advance.x += xstr;
if (slot->advance.y)
slot->advance.y += ystr;
slot->metrics.width += xstr;
slot->metrics.height += ystr;