patch from Tom to fix a problem with path_begun.
This commit is contained in:
parent
c118a32d48
commit
0634cedb62
|
@ -784,7 +784,8 @@
|
||||||
FT_TRACE4(( " hmoveto" ));
|
FT_TRACE4(( " hmoveto" ));
|
||||||
|
|
||||||
x += top[0];
|
x += top[0];
|
||||||
builder->path_begun = 0;
|
if ( !decoder->flex_state )
|
||||||
|
builder->path_begun = 0;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case op_hvcurveto:
|
case op_hvcurveto:
|
||||||
|
@ -822,7 +823,8 @@
|
||||||
|
|
||||||
x += top[0];
|
x += top[0];
|
||||||
y += top[1];
|
y += top[1];
|
||||||
builder->path_begun = 0;
|
if ( !decoder->flex_state )
|
||||||
|
builder->path_begun = 0;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case op_rrcurveto:
|
case op_rrcurveto:
|
||||||
|
@ -874,7 +876,8 @@
|
||||||
FT_TRACE4(( " vmoveto" ));
|
FT_TRACE4(( " vmoveto" ));
|
||||||
|
|
||||||
y += top[0];
|
y += top[0];
|
||||||
builder->path_begun = 0;
|
if ( !decoder->flex_state )
|
||||||
|
builder->path_begun = 0;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case op_div:
|
case op_div:
|
||||||
|
|
Loading…
Reference in New Issue