mirror of https://github.com/freetype/freetype
* src/autofit/aflatin.c (af_latin_hints_init): fixed a bug that
prevented internal hint mode bitflags from being computed correctly
This commit is contained in:
parent
f0721f9897
commit
a879e8e278
|
@ -1,3 +1,8 @@
|
|||
2005-09-23 David Turner <david@freetype.org>
|
||||
|
||||
* src/autofit/aflatin.c (af_latin_hints_init): fixed a bug that
|
||||
prevented internal hint mode bitflags from being computed correctly
|
||||
|
||||
2005-09-22 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* docs/CHANGES: Mention SING Glyphlet support.
|
||||
|
@ -419,7 +424,7 @@
|
|||
|
||||
2005-07-04 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* include/freetype/internal/ftmemory.h (FT_REALLOC_ARRAY): Fix typo.
|
||||
* include/freetype/internal/ftmemory.h (FT_REALLOC_ARRAY): Fix typo.
|
||||
Reported by Brett Hutley.
|
||||
|
||||
2005-06-30 David Turner <david@freetype.org>
|
||||
|
|
|
@ -848,7 +848,7 @@
|
|||
AF_Direction major_dir = axis->major_dir;
|
||||
AF_Segment seg1, seg2;
|
||||
|
||||
|
||||
|
||||
/* now compare each segment to the others */
|
||||
for ( seg1 = segments; seg1 < segment_limit; seg1++ )
|
||||
{
|
||||
|
@ -1311,6 +1311,8 @@
|
|||
|
||||
mode = metrics->root.scaler.render_mode;
|
||||
|
||||
hints->other_flags = 0;
|
||||
|
||||
/*
|
||||
* We snap the width of vertical stems for the monochrome and
|
||||
* horizontal LCD rendering targets only.
|
||||
|
|
Loading…
Reference in New Issue