formatting
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
diff --git a/ChangeLog b/ChangeLog
index d523dfb..1403614 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,8 +6,14 @@
2006-09-30 David Turner <david@freetype.org>
- * include/freetype/internal/ftobjs.h, src/base/ftobjs.c,
- src/truetype/ttobjs.c: fixes related to the unpatented hinter
+ * include/freetype/internal/ftobjs.h (FT_Face_InternalRec):
+ s/unpatented_hinting/ignore_unpatented_hinter/.
+ Update all callers.
+
+ * src/base/ftobjs.c (FT_Load_Glyph): Refine the algorithm whether
+ auto-hinting shall be used or not.
+
+ * src/truetype/ttobjs.c (tt_face_init): Ditto.
2006-09-30 Werner Lemberg <wl@gnu.org>
diff --git a/include/freetype/internal/ftobjs.h b/include/freetype/internal/ftobjs.h
index e13ff27..f57f0ac 100644
--- a/include/freetype/internal/ftobjs.h
+++ b/include/freetype/internal/ftobjs.h
@@ -212,10 +212,10 @@ FT_BEGIN_HEADER
/* @FT_CONFIG_OPTION_INCREMENTAL is defined. */
/* */
/* ignore_unpatented_hinter :: */
- /* This boolean flag instructs the glyph loader to ignore */
- /* the native font hinter, if one is found. This is exclusively */
- /* used in the case when the unpatented hinter is compiled within */
- /* the library. */
+ /* This boolean flag instructs the glyph loader to ignore the */
+ /* native font hinter, if one is found. This is exclusively used */
+ /* in the case when the unpatented hinter is compiled within the */
+ /* library. */
/* */
typedef struct FT_Face_InternalRec_
{
diff --git a/src/base/ftobjs.c b/src/base/ftobjs.c
index 958e4b2..0da8768 100644
--- a/src/base/ftobjs.c
+++ b/src/base/ftobjs.c
@@ -573,44 +573,43 @@
load_flags &= ~FT_LOAD_RENDER;
}
- /* determine wether we need to auto-hint or not
- * the general rules are:
- *
- * - only auto-hint if we have a hinter module, a
- * scalable font format dealing with outlines,
- * no transforms except simple slants
- *
- * - then, autohint if FT_LOAD_FORCE_AUTOHINT is set
- * or if we don't have a native font hinter
- *
- * - otherwise, autohint for LIGHT hinting mode
- *
- * - except if the font requires the unpatented
- * bytecode interpreter to load properly
- */
+ /*
+ * Determine whether we need to auto-hint or not.
+ * The general rules are:
+ *
+ * - Do only auto-hinting if we have a hinter module,
+ * a scalable font format dealing with outlines,
+ * and no transforms except simple slants.
+ *
+ * - Then, autohint if FT_LOAD_FORCE_AUTOHINT is set
+ * or if we don't have a native font hinter.
+ *
+ * - Otherwise, auto-hint for LIGHT hinting mode.
+ *
+ * - Exception: The font requires the unpatented
+ * bytecode interpreter to load properly.
+ */
autohint = 0;
- if ( hinter &&
- (load_flags & FT_LOAD_NO_HINTING) == 0 &&
- (load_flags & FT_LOAD_NO_AUTOHINT) == 0 &&
- FT_DRIVER_IS_SCALABLE( driver ) &&
- FT_DRIVER_USES_OUTLINES( driver ) &&
- face->internal->transform_matrix.yy > 0 &&
- face->internal->transform_matrix.yx == 0 )
- {
- if ( (load_flags & FT_LOAD_FORCE_AUTOHINT) != 0 ||
- !FT_DRIVER_HAS_HINTER( driver ) )
+ if ( hinter &&
+ ( load_flags & FT_LOAD_NO_HINTING ) == 0 &&
+ ( load_flags & FT_LOAD_NO_AUTOHINT ) == 0 &&
+ FT_DRIVER_IS_SCALABLE( driver ) &&
+ FT_DRIVER_USES_OUTLINES( driver ) &&
+ face->internal->transform_matrix.yy > 0 &&
+ face->internal->transform_matrix.yx == 0 )
+ {
+ if ( ( load_flags & FT_LOAD_FORCE_AUTOHINT ) != 0 ||
+ !FT_DRIVER_HAS_HINTER( driver ) )
autohint = 1;
-
else
{
- FT_Render_Mode mode = FT_LOAD_TARGET_MODE(load_flags);
+ FT_Render_Mode mode = FT_LOAD_TARGET_MODE( load_flags );
+
if ( mode == FT_RENDER_MODE_LIGHT ||
face->internal->ignore_unpatented_hinter )
- {
autohint = 1;
- }
}
}
diff --git a/src/truetype/ttobjs.c b/src/truetype/ttobjs.c
index 0226029..365d9c8 100644
--- a/src/truetype/ttobjs.c
+++ b/src/truetype/ttobjs.c
@@ -246,16 +246,17 @@
}
-#if defined(TT_CONFIG_OPTION_UNPATENTED_HINTING) && \
- !defined(TT_CONFIG_OPTION_BYTECODE_INTERPRETER)
+#if defined( TT_CONFIG_OPTION_UNPATENTED_HINTING ) && \
+ !defined( TT_CONFIG_OPTION_BYTECODE_INTERPRETER )
{
FT_Bool unpatented_hinting;
int i;
+
/* Determine whether unpatented hinting is to be used for this face. */
unpatented_hinting = FT_BOOL
- ( library->debug_hooks[ FT_DEBUG_HOOK_UNPATENTED_HINTING ] != NULL );
+ ( library->debug_hooks[FT_DEBUG_HOOK_UNPATENTED_HINTING] != NULL );
for ( i = 0; i < num_params && !face->unpatented_hinting; i++ )
if ( params[i].tag == FT_PARAM_TAG_UNPATENTED_HINTING )
@@ -293,7 +294,8 @@
ttface->internal->ignore_unpatented_hinter = !unpatented_hinting;
}
-#endif /* TT_CONFIG_OPTION_UNPATENTED_HINTING */
+#endif /* TT_CONFIG_OPTION_UNPATENTED_HINTING &&
+ !TT_CONFIG_OPTION_BYTECODE_INTERPRETER */
/* initialize standard glyph loading routines */
TT_Init_Glyph_Loading( face );