ref: a7ee608c1de138a3da93407104120198207c99aa
parent: a4875bdcca1cdde7c745242862549b614255c591
author: David Turner <[email protected]>
date: Tue Jan 30 05:33:53 EST 2007
disable light auto-hinting optimization for the next release
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-01-30 David Turner <[email protected]>
+
+ * src/autofit/aftypes.h, src/autofit/afloader.c: disabling the
+ warper (i.e. light hinting improvements) to make a 2.3.1 bugfix
+ release before introducing a new feature. This should give us
+ more time to tune and improve the warper for the next release
+
2007-01-25 David Turner <[email protected]>
For light auto-hinting, improve glyph advance widths and resurrect
--- a/src/autofit/afloader.c
+++ b/src/autofit/afloader.c
@@ -233,7 +233,7 @@
FT_Pos pp2x = loader->pp2.x;
loader->pp1.x = FT_PIX_ROUND( pp1x + hints->xmin_delta );
- loader->pp2.x = FT_PIX_ROUND( pp2x + hints->xmax_delta + 16 );
+ loader->pp2.x = FT_PIX_ROUND( pp2x + hints->xmax_delta );
slot->lsb_delta = loader->pp1.x - pp1x;
slot->rsb_delta = loader->pp2.x - pp2x;
--- a/src/autofit/aftypes.h
+++ b/src/autofit/aftypes.h
@@ -53,7 +53,7 @@
/*************************************************************************/
/*************************************************************************/
-#define AF_USE_WARPER /* only define to use warp hinting */
+#define xxAF_USE_WARPER /* only define to use warp hinting */
#define xxAF_DEBUG
#ifdef AF_DEBUG