From: mhosken Date: Tue, 26 Sep 2017 18:29:45 +0000 (+0700) Subject: Fix missing xscale in rtl graphite unpacking (#541) X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=66128d3cfb12705530141b5a4bd2706f0cbb9fc5;p=platform%2Fupstream%2FlibHarfBuzzSharp.git Fix missing xscale in rtl graphite unpacking (#541) * Fix missing xscale in rtl graphite unpacking * Oops didn't need to mess with yscale --- diff --git a/src/hb-graphite2.cc b/src/hb-graphite2.cc index 9e0761e..bc247c6 100644 --- a/src/hb-graphite2.cc +++ b/src/hb-graphite2.cc @@ -389,7 +389,7 @@ _hb_graphite2_shape (hb_shape_plan_t *shape_plan, } 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)) { if (info->cluster != currclus)