Khaled Hosny 2023-07-08 13:57:05 +03:00 committed by Behdad Esfahbod
parent 73ee9c346f
commit c650858c63
2 changed files with 6 additions and 4 deletions

View file

@ -368,9 +368,10 @@ _hb_graphite2_shape (hb_shape_plan_t *shape_plan HB_UNUSED,
}
else
{
auto origin_X = gr_slot_origin_X (is) * xscale;
c->advance = 0;
clusters[ci].advance += gr_slot_origin_X(is) * xscale - curradv;
curradv += clusters[ci].advance;
clusters[ci].advance += origin_X - curradv;
curradv = origin_X;
}
ci++;
}

View file

@ -164,9 +164,10 @@ shape (void *shape_plan,
}
else
{
auto origin_X = gr_slot_origin_X (is) * xscale;
c->advance = 0;
clusters[ci].advance += gr_slot_origin_X(is) * xscale - curradv;
curradv += clusters[ci].advance;
clusters[ci].advance += origin_X - curradv;
curradv = origin_X;
}
ci++;
}