Home | History | Annotate | Download | only in sfnt

Lines Matching refs:library

41   sfnt_module_class_pic_free(  FT_Library library )
43 FT_PIC_Container* pic_container = &library->pic_container;
44 FT_Memory memory = library->memory;
49 FT_Destroy_Class_sfnt_services(library, container->sfnt_services);
52 FT_Destroy_Class_tt_cmap_classes(library, container->tt_cmap_classes);
61 sfnt_module_class_pic_init( FT_Library library )
63 FT_PIC_Container* pic_container = &library->pic_container;
66 FT_Memory memory = library->memory;
76 error = FT_Create_Class_sfnt_services(library, &container->sfnt_services);
79 error = FT_Create_Class_tt_cmap_classes(library, &container->tt_cmap_classes);
82 FT_Init_Class_sfnt_service_glyph_dict(library, &container->sfnt_service_glyph_dict);
83 FT_Init_Class_sfnt_service_ps_name(library, &container->sfnt_service_ps_name);
84 FT_Init_Class_tt_service_get_cmap_info(library, &container->tt_service_get_cmap_info);
89 FT_Init_Class_sfnt_interface(library, &container->sfnt_interface);
93 sfnt_module_class_pic_free(library);