From d670ddf99192dd4999775a9215a818ae63fa3416 Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Sat, 21 Feb 2004 14:53:12 +0000 Subject: [PATCH] Sign convention for y offsets is opposite between PangoGlyphString and FT Sat Feb 21 09:49:23 2004 Owen Taylor * pango/opentype/pango-ot-ruleset.c (pango_ot_ruleset_shape): Sign convention for y offsets is opposite between PangoGlyphString and FT code. (#132591) --- src/pango-ot-ruleset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pango-ot-ruleset.c b/src/pango-ot-ruleset.c index 996bd0416..bf297f114 100644 --- a/src/pango-ot-ruleset.c +++ b/src/pango-ot-ruleset.c @@ -267,7 +267,7 @@ pango_ot_ruleset_shape (PangoOTRuleset *ruleset, glyphs->glyphs[i].geometry.x_offset -= glyphs->glyphs[j].geometry.width; glyphs->glyphs[i].geometry.x_offset += PANGO_UNITS_26_6(x_pos); - glyphs->glyphs[i].geometry.y_offset += PANGO_UNITS_26_6(y_pos); + glyphs->glyphs[i].geometry.y_offset -= PANGO_UNITS_26_6(y_pos); if (outgpos[i].new_advance) glyphs->glyphs[i].geometry.width = PANGO_UNITS_26_6(outgpos[i].x_advance);