simple fix required by the auto-hinting module

(sets the ft_outline_reverse_fill bit_flag)
This commit is contained in:
David Turner 2000-03-30 08:43:03 +00:00
parent 3562d014e6
commit 82942cc279
2 changed files with 7 additions and 2 deletions

View File

@ -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;
}

View File

@ -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 );