Fix missing xscale in rtl graphite unpacking (#541)
* Fix missing xscale in rtl graphite unpacking * Oops didn't need to mess with yscale
This commit is contained in:
parent
3ca69c8c32
commit
66128d3cfb
|
@ -389,7 +389,7 @@ _hb_graphite2_shape (hb_shape_plan_t *shape_plan,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
curradvx = gr_seg_advance_X(seg);
|
curradvx = gr_seg_advance_X(seg) * xscale;
|
||||||
for (is = gr_seg_first_slot (seg); is; pPos++, info++, is = gr_slot_next_in_segment (is))
|
for (is = gr_seg_first_slot (seg); is; pPos++, info++, is = gr_slot_next_in_segment (is))
|
||||||
{
|
{
|
||||||
if (info->cluster != currclus)
|
if (info->cluster != currclus)
|
||||||
|
|
Loading…
Reference in New Issue