Trace reorder, not normalize

This commit is contained in:
Simon Cozens 2020-09-18 16:37:22 +01:00
parent 2e0193d741
commit fd8f4ffcc6
2 changed files with 3 additions and 5 deletions

View File

@ -373,7 +373,7 @@ _hb_ot_shape_normalize (const hb_ot_shape_plan_t *plan,
/* Second round, reorder (inplace) */
if (!all_simple)
if (!all_simple && buffer->message(font, "start reorder"))
{
count = buffer->len;
for (unsigned int i = 0; i < count; i++)
@ -399,6 +399,7 @@ _hb_ot_shape_normalize (const hb_ot_shape_plan_t *plan,
i = end;
}
(void) buffer->message(font, "end reorder");
}
if (buffer->scratch_flags & HB_BUFFER_SCRATCH_FLAG_HAS_CGJ)
{

View File

@ -851,10 +851,7 @@ hb_ot_substitute_default (const hb_ot_shape_context_t *c)
HB_BUFFER_ALLOCATE_VAR (buffer, glyph_index);
if (buffer->message(c->font, "start normalize")) {
_hb_ot_shape_normalize (c->plan, buffer, c->font);
buffer->message(c->font, "end normalize");
}
_hb_ot_shape_normalize (c->plan, buffer, c->font);
hb_ot_shape_setup_masks (c);