[HarfBuzz] harfbuzz: Branch 'master'
Behdad Esfahbod
behdad at kemper.freedesktop.org
Wed Jan 22 04:54:26 PST 2014
src/hb-ot-shape-normalize.cc | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 08cf5d75ef0c75095173dec822ccb07defaaa6c2
Author: Behdad Esfahbod <behdad at behdad.org>
Date: Wed Jan 22 07:53:55 2014 -0500
[ot] Don't try to compose if normalization is off
diff --git a/src/hb-ot-shape-normalize.cc b/src/hb-ot-shape-normalize.cc
index 94fc4a9..2a6a439 100644
--- a/src/hb-ot-shape-normalize.cc
+++ b/src/hb-ot-shape-normalize.cc
@@ -355,7 +355,8 @@ _hb_ot_shape_normalize (const hb_ot_shape_plan_t *plan,
}
- if (mode == HB_OT_SHAPE_NORMALIZATION_MODE_DECOMPOSED)
+ if (mode == HB_OT_SHAPE_NORMALIZATION_MODE_NONE ||
+ mode == HB_OT_SHAPE_NORMALIZATION_MODE_DECOMPOSED)
return;
/* Third round, recompose */
More information about the HarfBuzz
mailing list