patch from Tom to fix a problem with path_begun.

david-pic-changes
Werner Lemberg 25 years ago
parent c118a32d48
commit 0634cedb62
  1. 9
      src/psaux/t1decode.c

@ -784,7 +784,8 @@
FT_TRACE4(( " hmoveto" ));
x += top[0];
builder->path_begun = 0;
if ( !decoder->flex_state )
builder->path_begun = 0;
break;
case op_hvcurveto:
@ -822,7 +823,8 @@
x += top[0];
y += top[1];
builder->path_begun = 0;
if ( !decoder->flex_state )
builder->path_begun = 0;
break;
case op_rrcurveto:
@ -874,7 +876,8 @@
FT_TRACE4(( " vmoveto" ));
y += top[0];
builder->path_begun = 0;
if ( !decoder->flex_state )
builder->path_begun = 0;
break;
case op_div:

Loading…
Cancel
Save