| Index: third_party/harfbuzz-ng/src/hb-ot-shape-private.hh
|
| diff --git a/third_party/harfbuzz-ng/src/hb-ot-shape-private.hh b/third_party/harfbuzz-ng/src/hb-ot-shape-private.hh
|
| index 54ac2c3cf7c03c3bbe98bd91786609286fd7d1f5..594e54c026ac0281e402a5fcf81c3390aee809de 100644
|
| --- a/third_party/harfbuzz-ng/src/hb-ot-shape-private.hh
|
| +++ b/third_party/harfbuzz-ng/src/hb-ot-shape-private.hh
|
| @@ -77,11 +77,13 @@ struct hb_ot_shape_planner_t
|
| map (face, &props) {}
|
| ~hb_ot_shape_planner_t (void) { map.finish (); }
|
|
|
| - inline void compile (hb_ot_shape_plan_t &plan)
|
| + inline void compile (hb_ot_shape_plan_t &plan,
|
| + const int *coords,
|
| + unsigned int num_coords)
|
| {
|
| plan.props = props;
|
| plan.shaper = shaper;
|
| - map.compile (plan.map);
|
| + map.compile (plan.map, coords, num_coords);
|
|
|
| plan.rtlm_mask = plan.map.get_1_mask (HB_TAG ('r','t','l','m'));
|
| plan.frac_mask = plan.map.get_1_mask (HB_TAG ('f','r','a','c'));
|
|
|