[truetype] Formatting and an additional subpixel tweak.
This commit is contained in:
parent
18f35ed15a
commit
3c783c1b70
|
@ -1,3 +1,11 @@
|
|||
2013-05-22 Infinality <infinality@infinality.net>
|
||||
|
||||
[truetype] Formatting and an additional subpixel tweak.
|
||||
|
||||
* src/truetype/ttinterp.c (Ins_SHPIX): Formatting fix.
|
||||
* src/truetype/ttsubpix.c (SKIP_NONPIXEL_Y_MOVES_Rules):
|
||||
Revert previous modification for Verdana clones.
|
||||
|
||||
2013-05-22 Infinality <infinality@infinality.net>
|
||||
|
||||
[truetype] Adjust subpixel zp2 moves and tweak rules.
|
||||
|
|
|
@ -6124,9 +6124,9 @@
|
|||
B2 = CUR.zp2.cur[point].y;
|
||||
|
||||
/* reverse any disallowed moves */
|
||||
if ( ( B1 & 63 ) == 0 &&
|
||||
( B2 & 63 ) != 0 &&
|
||||
B1 != B2 )
|
||||
if ( ( B1 & 63 ) == 0 &&
|
||||
( B2 & 63 ) != 0 &&
|
||||
B1 != B2 )
|
||||
MOVE_Zp2_Point( point, 0, -dy, TRUE );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -322,7 +322,7 @@
|
|||
/* Cyrillic small letter I */
|
||||
{ "Legacy Sans Fonts", 0, "", 0 },
|
||||
/* Fix artifacts with some Regular & Bold */
|
||||
{ "Verdana Clones", 17, "", 0 },
|
||||
{ "Verdana Clones", 0, "", 0 },
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue