[SimpleGlyph] Handle cubic curves when instancing

pull/4217/head
Behdad Esfahbod 2 years ago
parent 85a0a12338
commit fbffd4e65e
  1. 2
      src/OT/glyf/SimpleGlyph.hh

@ -291,7 +291,7 @@ struct SimpleGlyph
for (unsigned i = 0; i < num_points; i++)
{
unsigned flag = all_points.arrayZ[i].flag;
flag &= FLAG_ON_CURVE + FLAG_OVERLAP_SIMPLE;
flag &= FLAG_ON_CURVE | FLAG_OVERLAP_SIMPLE | FLAG_CUBIC;
int cur_x = roundf (all_points.arrayZ[i].x);
int cur_y = roundf (all_points.arrayZ[i].y);

Loading…
Cancel
Save