| OLD | NEW |
| (Empty) |
| 1 /***************************************************************************/ | |
| 2 /* */ | |
| 3 /* ftmodule.h */ | |
| 4 /* */ | |
| 5 /* FreeType modules public interface (specification). */ | |
| 6 /* */ | |
| 7 /* Copyright 1996-2001, 2002, 2003 by */ | |
| 8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ | |
| 9 /* */ | |
| 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. */ | |
| 15 /* */ | |
| 16 /***************************************************************************/ | |
| 17 | |
| 18 /* | |
| 19 * This file registers the FreeType modules compiled into the library. | |
| 20 * | |
| 21 * If you use GNU make, this file IS NOT USED! Instead, it is created in | |
| 22 * the objects directory (normally `<topdir>/objs/') based on information | |
| 23 * from `<topdir>/modules.cfg'. | |
| 24 * | |
| 25 * Please read `docs/INSTALL.ANY' and `docs/CUSTOMIZE' how to compile | |
| 26 * FreeType without GNU make. | |
| 27 * | |
| 28 */ | |
| 29 | |
| 30 //FT_USE_MODULE( FT_Module_Class, autofit_module_class ) | |
| 31 FT_USE_MODULE( FT_Driver_ClassRec, tt_driver_class ) | |
| 32 FT_USE_MODULE( FT_Driver_ClassRec, t1_driver_class ) | |
| 33 FT_USE_MODULE( FT_Driver_ClassRec, cff_driver_class ) | |
| 34 FT_USE_MODULE( FT_Driver_ClassRec, t1cid_driver_class ) | |
| 35 //FT_USE_MODULE( FT_Driver_ClassRec, pfr_driver_class ) | |
| 36 //FT_USE_MODULE( FT_Driver_ClassRec, t42_driver_class ) | |
| 37 //FT_USE_MODULE( FT_Driver_ClassRec, winfnt_driver_class ) | |
| 38 //FT_USE_MODULE( FT_Driver_ClassRec, pcf_driver_class ) | |
| 39 FT_USE_MODULE( FT_Module_Class, psaux_module_class ) | |
| 40 FT_USE_MODULE( FT_Module_Class, psnames_module_class ) | |
| 41 FT_USE_MODULE( FT_Module_Class, pshinter_module_class ) | |
| 42 FT_USE_MODULE( FT_Renderer_Class, ft_raster1_renderer_class ) | |
| 43 FT_USE_MODULE( FT_Module_Class, sfnt_module_class ) | |
| 44 FT_USE_MODULE( FT_Renderer_Class, ft_smooth_renderer_class ) | |
| 45 FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcd_renderer_class ) | |
| 46 FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcdv_renderer_class ) | |
| 47 //FT_USE_MODULE( FT_Driver_ClassRec, bdf_driver_class ) | |
| 48 | |
| 49 /* EOF */ | |
| OLD | NEW |