mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-14 17:13:40 +00:00
[instancer] iup delta optimize: fix is_composite_glyph value in gvar
This commit is contained in:
parent
4d5fb233e3
commit
97c85ab2d0
1 changed files with 6 additions and 1 deletions
|
@ -101,10 +101,15 @@ struct glyph_variations_t
|
|||
continue;
|
||||
}
|
||||
|
||||
bool is_composite_glyph = false;
|
||||
#ifdef HB_EXPERIMENTAL_API
|
||||
is_composite_glyph = plan->composite_new_gids.has (new_gid);
|
||||
#endif
|
||||
if (!p->decompile_tuple_variations (all_contour_points->length, true /* is_gvar */,
|
||||
iterator, &(plan->axes_old_index_tag_map),
|
||||
shared_indices, shared_tuples,
|
||||
tuple_vars /* OUT */))
|
||||
tuple_vars, /* OUT */
|
||||
is_composite_glyph))
|
||||
return false;
|
||||
glyph_variations.push (std::move (tuple_vars));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue