diff --git a/ChangeLog b/ChangeLog index 3175eb86c..6876dbbba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,10 @@ * src/sfnt/ttsbit0.c, src/truetype/ttpload.c: removing compiler warnings + * include/freetype/config/ftmodule.h: moving the order of drivers to + speed up font loading. the pcf and bdf loaders are still slow and + eat memory like crazy. + 2005-03-03 Werner Lemberg * devel/ftoption.h: Updated to recent changes. diff --git a/include/freetype/config/ftmodule.h b/include/freetype/config/ftmodule.h index 74782f0ad..b8f67bb04 100644 --- a/include/freetype/config/ftmodule.h +++ b/include/freetype/config/ftmodule.h @@ -3,8 +3,10 @@ FT_USE_MODULE(tt_driver_class) FT_USE_MODULE(t1_driver_class) FT_USE_MODULE(cff_driver_class) FT_USE_MODULE(t1cid_driver_class) +FT_USE_MODULE(pfr_driver_class) +FT_USE_MODULE(t42_driver_class) +FT_USE_MODULE(winfnt_driver_class) FT_USE_MODULE(pcf_driver_class) -FT_USE_MODULE(bdf_driver_class) FT_USE_MODULE(psaux_module_class) FT_USE_MODULE(psnames_module_class) FT_USE_MODULE(pshinter_module_class) @@ -13,7 +15,5 @@ FT_USE_MODULE(sfnt_module_class) FT_USE_MODULE(ft_smooth_renderer_class) FT_USE_MODULE(ft_smooth_lcd_renderer_class) FT_USE_MODULE(ft_smooth_lcdv_renderer_class) -FT_USE_MODULE(t42_driver_class) -FT_USE_MODULE(pfr_driver_class) -FT_USE_MODULE(winfnt_driver_class) FT_USE_MODULE(otv_module_class) +FT_USE_MODULE(bdf_driver_class)