mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
[graphite] Fix cluster advance width
Based on https://github.com/harfbuzz/harfbuzz/issues/4309#issuecomment-1624730406 Fixes https://github.com/harfbuzz/harfbuzz/issues/4309
This commit is contained in:
parent
73ee9c346f
commit
c650858c63
2 changed files with 6 additions and 4 deletions
|
@ -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++;
|
||||
}
|
||||
|
|
|
@ -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++;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue