* src/autohint/ahhint.c: disabled the advance width "correction" which

seemed to provide more trouble than benefits..
This commit is contained in:
David Turner 2003-02-18 22:36:04 +00:00
parent 7946aa6f7b
commit 21493df9bd
2 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,8 @@
problem that occured due to the latest auto-hinter changes
* src/autohint/ahhint.c: disabled the advance width "correction" which
seemed to provide more trouble than benefits..
2003-02-13 Graham Asher <graham.asher@btinternet.com>

View File

@ -1428,9 +1428,11 @@
hinter->pp1.x = ( ( new_lsb - old_lsb ) + 32 ) & -64;
hinter->pp2.x = ( ( edge2->pos + old_rsb ) + 32 ) & -64;
#if 0
/* try to fix certain bad advance computations */
if ( hinter->pp2.x + hinter->pp1.x == edge2->pos && old_rsb > 4 )
hinter->pp2.x += 64;
#endif
}
/* good, we simply add the glyph to our loader's base */