Fix conditions for autohinting.
* src/base/ftobjs.c (FT_Load_Glyph): Handle FT_LOAD_IGNORE_TRANSFORM.
This commit is contained in:
parent
faddba4474
commit
298608d1d2
|
@ -1,3 +1,10 @@
|
|||
2011-10-15 Kal Conley <kcconley@gmail.com>
|
||||
|
||||
Fix conditions for autohinting.
|
||||
|
||||
* src/base/ftobjs.c (FT_Load_Glyph): Handle
|
||||
FT_LOAD_IGNORE_TRANSFORM.
|
||||
|
||||
2011-10-07 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
|
||||
[gxvalid] Fix a bug to detect too large offset in morx table.
|
||||
|
|
|
@ -620,7 +620,8 @@
|
|||
FT_DRIVER_IS_SCALABLE( driver ) &&
|
||||
FT_DRIVER_USES_OUTLINES( driver ) &&
|
||||
!FT_IS_TRICKY( face ) &&
|
||||
( ( face->internal->transform_matrix.yx == 0 &&
|
||||
( ( load_flags & FT_LOAD_IGNORE_TRANSFORM ) ||
|
||||
( face->internal->transform_matrix.yx == 0 &&
|
||||
face->internal->transform_matrix.xx != 0 ) ||
|
||||
( face->internal->transform_matrix.xx == 0 &&
|
||||
face->internal->transform_matrix.yx != 0 ) ) )
|
||||
|
|
Loading…
Reference in New Issue