shithub: freetype+ttf2subf

Download patch

ref: 1339b974f13e9ff5bc1f2497870f5305a32fee02
parent: dc736a6ac0d6abe15da0139a00e205e84f82deec
author: David Turner <[email protected]>
date: Thu Mar 3 09:10:21 EST 2005

* 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.

git/fs: mount .git/fs: mount/attach disallowed
--- 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  <[email protected]>
 
 	* devel/ftoption.h: Updated to recent changes.
--- a/include/freetype/config/ftmodule.h
+++ b/include/freetype/config/ftmodule.h
@@ -3,8 +3,10 @@
 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(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)