* src/truetype/ttgload.c (TT_Process_Simple_Glyph): Minor.

This commit is contained in:
Werner Lemberg 2019-05-09 11:37:58 +02:00
parent bc3b5281ed
commit a113e5df0c
2 changed files with 9 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2019-05-09 Werner Lemberg <wl@gnu.org>
* src/truetype/ttgload.c (TT_Process_Simple_Glyph): Minor.
2019-05-08 Alexei Podtelezhnikov <apodtele@gmail.com>
[smooth] Faster fractions.

View File

@ -971,14 +971,6 @@
#endif /* TT_CONFIG_OPTION_GX_VAR_SUPPORT */
if ( IS_HINTED( loader->load_flags ) )
{
tt_prepare_zone( &loader->zone, &gloader->current, 0, 0 );
FT_ARRAY_COPY( loader->zone.orus, loader->zone.cur,
loader->zone.n_points + 4 );
}
{
#ifdef TT_SUPPORT_SUBPIXEL_HINTING_INFINALITY
TT_Face face = loader->face;
@ -1075,6 +1067,11 @@
if ( IS_HINTED( loader->load_flags ) )
{
tt_prepare_zone( &loader->zone, &gloader->current, 0, 0 );
FT_ARRAY_COPY( loader->zone.orus, loader->zone.cur,
loader->zone.n_points + 4 );
loader->zone.n_points += 4;
error = TT_Hint_Glyph( loader, 0 );