1 /***************************************************************************/
5 /* The FreeType position independent code services for autofit module. */
7 /* Copyright 2009 by */
8 /* Oran Agra and Mickey Gabel. */
10 /* This file is part of the FreeType project, and may only be used, */
11 /* modified, and distributed under the terms of the FreeType project */
12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13 /* this file you indicate that you have read the license and */
14 /* understand and accept it fully. */
16 /***************************************************************************/
20 #include FT_FREETYPE_H
21 #include FT_INTERNAL_OBJECTS_H
24 #ifdef FT_CONFIG_OPTION_PIC
26 /* forward declaration of PIC init functions from afmodule.c */
27 void FT_Init_Class_af_autofitter_service( FT_Library
, FT_AutoHinter_ServiceRec
*);
29 /* forward declaration of PIC init functions from script classes */
37 autofit_module_class_pic_free( FT_Library library
)
39 FT_PIC_Container
* pic_container
= &library
->pic_container
;
40 FT_Memory memory
= library
->memory
;
41 if ( pic_container
->autofit
)
43 FT_FREE( pic_container
->autofit
);
44 pic_container
->autofit
= NULL
;
49 autofit_module_class_pic_init( FT_Library library
)
51 FT_PIC_Container
* pic_container
= &library
->pic_container
;
53 FT_Error error
= FT_Err_Ok
;
54 AFModulePIC
* container
;
55 FT_Memory memory
= library
->memory
;
57 /* allocate pointer, clear and set global container pointer */
58 if ( FT_ALLOC ( container
, sizeof ( *container
) ) )
60 FT_MEM_SET( container
, 0, sizeof(*container
) );
61 pic_container
->autofit
= container
;
63 /* initialize pointer table - this is how the module usually expects this data */
64 for ( ss
= 0 ; ss
< AF_SCRIPT_CLASSES_REC_COUNT
; ss
++ )
66 container
->af_script_classes
[ss
] = &container
->af_script_classes_rec
[ss
];
68 container
->af_script_classes
[AF_SCRIPT_CLASSES_COUNT
-1] = NULL
;
70 /* add call to initialization function when you add new scripts */
72 FT_Init_Class_af_dummy_script_class(&container
->af_script_classes_rec
[ss
++]);
73 #ifdef FT_OPTION_AUTOFIT2
74 FT_Init_Class_af_latin2_script_class(&container
->af_script_classes_rec
[ss
++]);
76 FT_Init_Class_af_latin_script_class(&container
->af_script_classes_rec
[ss
++]);
77 FT_Init_Class_af_cjk_script_class(&container
->af_script_classes_rec
[ss
++]);
78 FT_Init_Class_af_indic_script_class(&container
->af_script_classes_rec
[ss
++]);
80 FT_Init_Class_af_autofitter_service(library
, &container
->af_autofitter_service
);
84 autofit_module_class_pic_free(library
);
89 #endif /* FT_CONFIG_OPTION_PIC */