[glyf] Remove unneeded point init()

This commit is contained in:
Behdad Esfahbod 2022-06-26 16:43:05 -06:00
parent fc72a1d22d
commit 2bb0fa878a
1 changed files with 0 additions and 3 deletions

View File

@ -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 +