[glyf] Remove unneeded point init()
This commit is contained in:
parent
fc72a1d22d
commit
2bb0fa878a
|
@ -92,8 +92,6 @@ struct Glyph
|
||||||
/* pseudo component points for each component in composite glyph */
|
/* pseudo component points for each component in composite glyph */
|
||||||
unsigned num_points = hb_len (CompositeGlyph (*header, bytes).iter ());
|
unsigned num_points = hb_len (CompositeGlyph (*header, bytes).iter ());
|
||||||
if (unlikely (!points.resize (num_points))) return false;
|
if (unlikely (!points.resize (num_points))) return false;
|
||||||
for (unsigned i = 0; i < points.length; i++)
|
|
||||||
points[i].init ();
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case SIMPLE:
|
case SIMPLE:
|
||||||
|
@ -107,7 +105,6 @@ struct Glyph
|
||||||
if (unlikely (!points.resize (points.length + PHANTOM_COUNT))) return false;
|
if (unlikely (!points.resize (points.length + PHANTOM_COUNT))) return false;
|
||||||
hb_array_t<contour_point_t> phantoms = points.sub_array (points.length - PHANTOM_COUNT, PHANTOM_COUNT);
|
hb_array_t<contour_point_t> phantoms = points.sub_array (points.length - PHANTOM_COUNT, PHANTOM_COUNT);
|
||||||
{
|
{
|
||||||
for (unsigned i = 0; i < PHANTOM_COUNT; ++i) phantoms[i].init ();
|
|
||||||
int h_delta = (int) header->xMin -
|
int h_delta = (int) header->xMin -
|
||||||
glyf_accelerator.hmtx->get_side_bearing (gid);
|
glyf_accelerator.hmtx->get_side_bearing (gid);
|
||||||
int v_orig = (int) header->yMax +
|
int v_orig = (int) header->yMax +
|
||||||
|
|
Loading…
Reference in New Issue