summaryrefslogtreecommitdiff
path: root/include/freetype/internal/ftobjs.h
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2006-10-01 00:09:35 +0000
committerDavid Turner <david@freetype.org>2006-10-01 00:09:35 +0000
commitdf430e1a20c4ecc2727834cd345b7509faf51c13 (patch)
tree6fbc16894e421ae75837a4e198b86418919873b9 /include/freetype/internal/ftobjs.h
parent9884faed9d43777f04fccd8ef898a08d0a3b3eb6 (diff)
downloadfreetype2-df430e1a20c4ecc2727834cd345b7509faf51c13.tar.gz
* include/freetype/internal/ftobjs.h, src/base/ftobjs.c,
src/truetype/ttobjs.c: fixes related to the unpatented hinter
Diffstat (limited to 'include/freetype/internal/ftobjs.h')
-rw-r--r--include/freetype/internal/ftobjs.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/freetype/internal/ftobjs.h b/include/freetype/internal/ftobjs.h
index e1c1c1af0..e13ff274f 100644
--- a/include/freetype/internal/ftobjs.h
+++ b/include/freetype/internal/ftobjs.h
@@ -211,11 +211,11 @@ FT_BEGIN_HEADER
/* this data when first opened. This field exists only if */
/* @FT_CONFIG_OPTION_INCREMENTAL is defined. */
/* */
- /* unpatented_hinting :: */
- /* This boolean flag instructs the glyph loader that this font */
- /* can only be loaded through the unpatented bytecode interpreter. */
- /* In that case, the auto-hinter is never called for it, except if */
- /* you use FT_LOAD_FORCE_AUTOHINT. */
+ /* 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. */
/* */
typedef struct FT_Face_InternalRec_
{
@@ -233,7 +233,7 @@ FT_BEGIN_HEADER
FT_Incremental_InterfaceRec* incremental_interface;
#endif
- FT_Bool unpatented_hinting;
+ FT_Bool ignore_unpatented_hinter;
} FT_Face_InternalRec;