ref: e091ce35ff6e2e29d6a85f1401d4f25ce609b06b
parent: da95af6cf67c65bd453fc19908a3f14ac2a8c0c5
author: David Turner <[email protected]>
date: Mon Mar 20 11:01:28 EST 2006
* src/autofit/aflatin.c (af_latin_hints_init): disable horizontal hinting for italic/oblique fonts
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2006-03-20 David Turner <[email protected]>
+ * 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...)
--- a/src/autofit/aflatin.c
+++ b/src/autofit/aflatin.c
@@ -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;