| Index: third_party/harfbuzz-ng/src/hb-shape.cc
|
| diff --git a/third_party/harfbuzz-ng/src/hb-shape.cc b/third_party/harfbuzz-ng/src/hb-shape.cc
|
| index 41a4fc500ea9cc36c8199078779f378be26a552b..706f14420d4bd9d674abe365b84e884a99bfa696 100644
|
| --- a/third_party/harfbuzz-ng/src/hb-shape.cc
|
| +++ b/third_party/harfbuzz-ng/src/hb-shape.cc
|
| @@ -373,7 +373,10 @@ hb_shape_full (hb_font_t *font,
|
| unsigned int num_features,
|
| const char * const *shaper_list)
|
| {
|
| - hb_shape_plan_t *shape_plan = hb_shape_plan_create_cached (font->face, &buffer->props, features, num_features, shaper_list);
|
| + hb_shape_plan_t *shape_plan = hb_shape_plan_create_cached2 (font->face, &buffer->props,
|
| + features, num_features,
|
| + font->coords, font->num_coords,
|
| + shaper_list);
|
| hb_bool_t res = hb_shape_plan_execute (shape_plan, font, buffer, features, num_features);
|
| hb_shape_plan_destroy (shape_plan);
|
|
|
|
|