* 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.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
diff --git a/ChangeLog b/ChangeLog
index 3175eb8..6876dbb 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 <wl@gnu.org>
* devel/ftoption.h: Updated to recent changes.
diff --git a/include/freetype/config/ftmodule.h b/include/freetype/config/ftmodule.h
index 74782f0..b8f67bb 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)