From 587e5753e088b4d0b82c74ddbde790a8369a7517 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Fri, 5 Apr 2013 12:38:58 -0400 Subject: [PATCH] Add note re Hangul shaping --- src/hb-ot-shape-complex-private.hh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/hb-ot-shape-complex-private.hh b/src/hb-ot-shape-complex-private.hh index 3c9922d..1474a3d 100644 --- a/src/hb-ot-shape-complex-private.hh +++ b/src/hb-ot-shape-complex-private.hh @@ -185,6 +185,20 @@ hb_ot_shape_complex_categorize (const hb_ot_shape_planner_t *planner) return &_hb_ot_complex_shaper_thai; +#if 0 + /* Note: + * Currently we don't have a separate Hangul shaper. The default shaper handles + * Hangul by enabling jamo features. We may want to implement a separate shaper + * in the future. See this thread for details of what such a shaper would do: + * + * http://lists.freedesktop.org/archives/harfbuzz/2013-April/003070.html + */ + /* Unicode-1.1 additions */ + case HB_SCRIPT_HANGUL: + + return &_hb_ot_complex_shaper_hangul; +#endif + /* ^--- Add new shapers here */ -- 2.7.4