1 /***************************************************************************/
5 /* Auto-hinting module implementation (declaration). */
7 /* Copyright 2000 Catharon Productions Inc. */
8 /* Author: David Turner */
10 /* This file is part of the Catharon Typography Project and shall only */
11 /* be used, modified, and distributed under the terms of the Catharon */
12 /* Open Source License that should come with this file under the name */
13 /* `CatharonLicense.txt'. By continuing to use, modify, or distribute */
14 /* this file you indicate that you have read the license and */
15 /* understand and accept it fully. */
17 /* Note that this license is compatible with the FreeType license. */
19 /***************************************************************************/
22 #include <freetype/ftmodule.h>
25 #ifdef FT_FLAT_COMPILE
31 #include <autohint/ahhint.h>
36 typedef struct FT_AutoHinterRec_
45 FT_Error
ft_autohinter_init( FT_AutoHinter
module )
47 return ah_hinter_new( module->root
.library
, &module->hinter
);
52 void ft_autohinter_done( FT_AutoHinter
module )
54 ah_hinter_done( module->hinter
);
59 FT_Error
ft_autohinter_load( FT_AutoHinter
module,
65 return ah_hinter_load_glyph( module->hinter
,
66 slot
, size
, glyph_index
, load_flags
);
71 void ft_autohinter_reset( FT_AutoHinter
module,
76 if ( face
->autohint
.data
)
77 ah_hinter_done_face_globals( (AH_Face_Globals
*)(face
->autohint
.data
) );
82 void ft_autohinter_get_globals( FT_AutoHinter
module,
87 ah_hinter_get_global_hints( module->hinter
, face
,
88 global_hints
, global_len
);
93 void ft_autohinter_done_globals( FT_AutoHinter
module,
96 ah_hinter_done_global_hints( module->hinter
, global_hints
);
101 const FT_AutoHinter_Interface autohinter_interface
=
105 ft_autohinter_get_globals
,
106 ft_autohinter_done_globals
110 const FT_Module_Class autohint_module_class
=
113 sizeof ( FT_AutoHinterRec
),
116 0x10000L
, /* version 1.0 of the autohinter */
117 0x20000L
, /* requires FreeType 2.0 or above */
119 (const void*)&autohinter_interface
,
121 (FT_Module_Constructor
)ft_autohinter_init
,
122 (FT_Module_Destructor
) ft_autohinter_done
,
123 (FT_Module_Requester
) 0