[Indic] If Khmer fonts have a 'liga' feature, use generic shaper

Seems to produce more coherent results than trying the Indic shaper on
them.  I'm looking at you, Kh-* fonts...
This commit is contained in:
Behdad Esfahbod 2012-11-14 13:38:16 -08:00
parent 6b19fa4862
commit 981748cb2e
1 changed files with 17 additions and 4 deletions

View File

@ -248,8 +248,6 @@ hb_ot_shape_complex_categorize (const hb_ot_shape_planner_t *planner)
case HB_SCRIPT_TELUGU: case HB_SCRIPT_TELUGU:
/* Unicode-3.0 additions */ /* Unicode-3.0 additions */
case HB_SCRIPT_KHMER:
case HB_SCRIPT_MYANMAR:
case HB_SCRIPT_SINHALA: case HB_SCRIPT_SINHALA:
/* Unicode-4.1 additions */ /* Unicode-4.1 additions */
@ -278,10 +276,25 @@ hb_ot_shape_complex_categorize (const hb_ot_shape_planner_t *planner)
case HB_SCRIPT_SHARADA: case HB_SCRIPT_SHARADA:
case HB_SCRIPT_TAKRI: case HB_SCRIPT_TAKRI:
/* Only use Indic shaper if the font has Indic tables. */
if (planner->map.chosen_script[0] == HB_OT_TAG_DEFAULT_SCRIPT)
return &_hb_ot_complex_shaper_default;
else
return &_hb_ot_complex_shaper_indic;
case HB_SCRIPT_KHMER:
/* If the font has 'liga', let the generic shaper do it. */
if (planner->map.chosen_script[0] == HB_OT_TAG_DEFAULT_SCRIPT ||
hb_ot_layout_language_find_feature (planner->face, HB_OT_TAG_GSUB, planner->map.script_index[0], planner->map.language_index[0], HB_TAG ('l','i','g','a'), NULL))
return &_hb_ot_complex_shaper_default;
else
return &_hb_ot_complex_shaper_indic;
case HB_SCRIPT_MYANMAR:
/* For Myanmar, we only want to use the Indic shaper if the "new" script /* For Myanmar, we only want to use the Indic shaper if the "new" script
* tag is found. For "old" script tag we want to use the default shaper. */ * tag is found. For "old" script tag we want to use the default shaper. */
if (planner->map.chosen_script[0] != HB_OT_TAG_DEFAULT_SCRIPT && if (planner->map.chosen_script[0] == HB_TAG ('m','y','m','2'))
planner->map.chosen_script[0] != HB_TAG ('m','y','m','r'))
return &_hb_ot_complex_shaper_indic; return &_hb_ot_complex_shaper_indic;
else else
return &_hb_ot_complex_shaper_default; return &_hb_ot_complex_shaper_default;