simple fix required by the auto-hinting module

(sets the ft_outline_reverse_fill bit_flag)
VER-2-0-4-PATCH
David Turner 25 years ago
parent 3562d014e6
commit 82942cc279
  1. 6
      src/type1/t1gload.c
  2. 3
      src/type1z/t1gload.c

@ -1597,7 +1597,9 @@
if ( size->root.metrics.y_ppem < 24 )
glyph->root.outline.flags |= ft_outline_high_precision;
glyph->root.outline.flags |= ft_outline_reverse_fill;
/*
glyph->root.outline.second_pass = TRUE;
glyph->root.outline.high_precision = ( size->root.metrics.y_ppem < 24 );
@ -1642,7 +1644,7 @@
}
}
}
return error;
}

@ -1332,6 +1332,9 @@
glyph->root.outline.flags &= ft_outline_owner;
if ( size->root.metrics.y_ppem < 24 )
glyph->root.outline.flags |= ft_outline_high_precision;
glyph->root.outline.flags |= ft_outline_reverse_fill;
/*
glyph->root.outline.second_pass = TRUE;
glyph->root.outline.high_precision = ( size->root.metrics.y_ppem < 24 );

Loading…
Cancel
Save