summaryrefslogtreecommitdiff
path: root/include/freetype/internal/pshints.h
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2002-07-08 22:26:11 +0000
committerDavid Turner <david@freetype.org>2002-07-08 22:26:11 +0000
commit27c322e9835b8fec7e5f65a012f56e1c64fc9879 (patch)
tree0be3fe96e6871546fc50f5a76ca50d25169567b6 /include/freetype/internal/pshints.h
parentdcb61e478566a67134a16195ca462730c1bb1030 (diff)
downloadfreetype2-27c322e9835b8fec7e5f65a012f56e1c64fc9879.tar.gz
* include/freetype/freetype.h, src/base/ftobjs.h,
freetype/internal/ftobjs.h, freetype/internal/psaux.h, freetype/internal/pshints.h, src/psaux/t1decode.c, src/cff/cffgload.h, src/cff/cffgload.c, src/pshinter/pshalgo1.h, src/pshinter/pshalgo1.c, src/pshinter/pshalgo2.h, src/pshinter/pshalgo2.c, src/pshinter/pshalgo3.h, src/pshinter/pshalgo3.c: Adding support for hinter-specific bit flags, and the new FT_Set_Hint_Flags high-level API
Diffstat (limited to 'include/freetype/internal/pshints.h')
-rw-r--r--include/freetype/internal/pshints.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/freetype/internal/pshints.h b/include/freetype/internal/pshints.h
index 9b85065b9..e7fd76faa 100644
--- a/include/freetype/internal/pshints.h
+++ b/include/freetype/internal/pshints.h
@@ -267,6 +267,8 @@ FT_BEGIN_HEADER
/* */
/* globals :: The hinter globals for this font. */
/* */
+ /* hint_flags :: hinter bit flags */
+ /* */
/* @return: */
/* FreeType error code. 0 means success. */
/* */
@@ -280,7 +282,8 @@ FT_BEGIN_HEADER
typedef FT_Error
(*T1_Hints_ApplyFunc)( T1_Hints hints,
FT_Outline* outline,
- PSH_Globals globals );
+ PSH_Globals globals,
+ FT_UInt32 hint_flags );
/*************************************************************************/
@@ -545,6 +548,8 @@ FT_BEGIN_HEADER
/* */
/* globals :: The hinter globals for this font. */
/* */
+ /* hint_flags :: hinter bit flags */
+ /* */
/* @return: */
/* FreeType error code. 0 means success. */
/* */
@@ -558,7 +563,8 @@ FT_BEGIN_HEADER
typedef FT_Error
(*T2_Hints_ApplyFunc)( T2_Hints hints,
FT_Outline* outline,
- PSH_Globals globals );
+ PSH_Globals globals,
+ FT_UInt32 hint_flags );
/*************************************************************************/