* src/autofit/aflatin.c (af_latin_hints_init):

disable horizontal hinting for italic/oblique fonts
This commit is contained in:
David Turner 2006-03-20 16:01:28 +00:00
parent da95af6cf6
commit e091ce35ff
2 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2006-03-20 David Turner <david@freetype.org>
* src/autofit/aflatin.c (af_latin_hints_init):
disable horizontal hinting for italic/oblique fonts
* builds/win32/visualc/freetype.dsp: updating the project file, adding
missing base source files (e.g. ftstroke.c, ftxf86.c, etc...)

View File

@ -1312,6 +1312,7 @@
{
FT_Render_Mode mode;
FT_UInt32 scaler_flags, other_flags;
FT_Face face = metrics->root.scaler.face;
af_glyph_hints_rescale( hints, (AF_ScriptMetrics)metrics );
@ -1363,8 +1364,10 @@
/*
* In `light' hinting mode we disable horizontal hinting completely.
* we also do it if the face is italic
*/
if ( mode == FT_RENDER_MODE_LIGHT )
if ( mode == FT_RENDER_MODE_LIGHT ||
(face->style_flags & FT_STYLE_FLAG_ITALIC) != 0 )
scaler_flags |= AF_SCALER_FLAG_NO_HORIZONTAL;
hints->scaler_flags = scaler_flags;