mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-05 18:18:13 +02:00
* src/autohint/ahhint.c (ah_hinter_load_glyph): fixed a bug that
corrupted transformed glyphs that were auto-hinted (the transform
was applied twice !!)
This commit is contained in:
parent
f60408c070
commit
0ebd3338f6
2 changed files with 8 additions and 1 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2001-06-08 David Turner <david@freetype.org>
|
||||
|
||||
* src/autohint/ahhint.c (ah_hinter_load_glyph): fixed a bug that
|
||||
corrupted transformed glyphs that were auto-hinted (the transform
|
||||
was applied twice !!)
|
||||
|
||||
2001-06-07 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
Updating to libtool 1.4.0.
|
||||
|
|
|
|||
|
|
@ -1367,7 +1367,8 @@
|
|||
ah_loader_rewind( hinter->loader );
|
||||
|
||||
#if 1
|
||||
load_flags = FT_LOAD_NO_SCALE;
|
||||
load_flags = FT_LOAD_NO_SCALE
|
||||
| FT_LOAD_IGNORE_TRANSFORM ;
|
||||
#else
|
||||
load_flags |= FT_LOAD_NO_SCALE | FT_LOAD_NO_RECURSE;
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue