* src/cff/cffgload.c (cff_slot_load): Fix logic of 2007-05-28


			
			
				david-pic-changes
			
			
		
Werner Lemberg 18 years ago
parent c67fb6f1a3
commit 5b4d435a96
  1. 5
      ChangeLog
  2. 12
      src/cff/cffgload.c

@ -1,3 +1,8 @@
2007-06-20 Werner Lemberg <wl@gnu.org>
* src/cff/cffgload.c (cff_slot_load): Fix logic of 2007-05-28
change.
2007-06-19 Werner Lemberg <wl@gnu.org>
* src/type1/t1load.c (parse_encoding): Handle one more error.

@ -2566,14 +2566,14 @@
glyph->root.outline.flags |= FT_OUTLINE_REVERSE_FILL;
/* apply the font matrix */
if ( font_matrix.xx != 0x10000L &&
font_matrix.yy != 0x10000L &&
font_matrix.xy != 0 &&
font_matrix.yx != 0 )
if ( !( font_matrix.xx == 0x10000L &&
font_matrix.yy == 0x10000L &&
font_matrix.xy == 0 &&
font_matrix.yx == 0 ) )
FT_Outline_Transform( &glyph->root.outline, &font_matrix );
if ( font_offset.x != 0 ||
font_offset.y != 0 )
if ( !( font_offset.x == 0 &&
font_offset.y == 0 ) )
FT_Outline_Translate( &glyph->root.outline,
font_offset.x, font_offset.y );

Loading…
Cancel
Save