forked from minhngoc25a/freetype2
* src/base/ftsynth.c (FT_GlyphSlot_Embolden): Handle vertical layout
also.
This commit is contained in:
parent
111b5aefca
commit
5e43089b4f
|
@ -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'.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue