From 1339b974f13e9ff5bc1f2497870f5305a32fee02 Mon Sep 17 00:00:00 2001 From: David Turner Date: Thu, 3 Mar 2005 14:10:21 +0000 Subject: [PATCH] * 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. --- ChangeLog | 4 ++++ include/freetype/config/ftmodule.h | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) 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)