| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright © 2011,2012,2013 Google, Inc. | 2 * Copyright © 2011,2012,2013 Google, Inc. |
| 3 * | 3 * |
| 4 * This is part of HarfBuzz, a text shaping library. | 4 * This is part of HarfBuzz, a text shaping library. |
| 5 * | 5 * |
| 6 * Permission is hereby granted, without written agreement and without | 6 * Permission is hereby granted, without written agreement and without |
| 7 * license or royalty fees, to use, copy, modify, and distribute this | 7 * license or royalty fees, to use, copy, modify, and distribute this |
| 8 * software and its documentation for any purpose, provided that the | 8 * software and its documentation for any purpose, provided that the |
| 9 * above copyright notice and the following two paragraphs appear in | 9 * above copyright notice and the following two paragraphs appear in |
| 10 * all copies of this software. | 10 * all copies of this software. |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 NULL, /* collect_features */ | 514 NULL, /* collect_features */ |
| 515 NULL, /* override_features */ | 515 NULL, /* override_features */ |
| 516 NULL, /* data_create */ | 516 NULL, /* data_create */ |
| 517 NULL, /* data_destroy */ | 517 NULL, /* data_destroy */ |
| 518 NULL, /* preprocess_text */ | 518 NULL, /* preprocess_text */ |
| 519 NULL, /* postprocess_glyphs */ | 519 NULL, /* postprocess_glyphs */ |
| 520 HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT, | 520 HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT, |
| 521 NULL, /* decompose */ | 521 NULL, /* decompose */ |
| 522 NULL, /* compose */ | 522 NULL, /* compose */ |
| 523 NULL, /* setup_masks */ | 523 NULL, /* setup_masks */ |
| 524 NULL, /* disable_otl */ |
| 524 HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE, | 525 HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE, |
| 525 true, /* fallback_position */ | 526 true, /* fallback_position */ |
| 526 }; | 527 }; |
| 527 | 528 |
| 528 const hb_ot_complex_shaper_t _hb_ot_complex_shaper_myanmar = | 529 const hb_ot_complex_shaper_t _hb_ot_complex_shaper_myanmar = |
| 529 { | 530 { |
| 530 "myanmar", | 531 "myanmar", |
| 531 collect_features_myanmar, | 532 collect_features_myanmar, |
| 532 override_features_myanmar, | 533 override_features_myanmar, |
| 533 NULL, /* data_create */ | 534 NULL, /* data_create */ |
| 534 NULL, /* data_destroy */ | 535 NULL, /* data_destroy */ |
| 535 NULL, /* preprocess_text */ | 536 NULL, /* preprocess_text */ |
| 536 NULL, /* postprocess_glyphs */ | 537 NULL, /* postprocess_glyphs */ |
| 537 HB_OT_SHAPE_NORMALIZATION_MODE_COMPOSED_DIACRITICS_NO_SHORT_CIRCUIT, | 538 HB_OT_SHAPE_NORMALIZATION_MODE_COMPOSED_DIACRITICS_NO_SHORT_CIRCUIT, |
| 538 NULL, /* decompose */ | 539 NULL, /* decompose */ |
| 539 NULL, /* compose */ | 540 NULL, /* compose */ |
| 540 setup_masks_myanmar, | 541 setup_masks_myanmar, |
| 542 NULL, /* disable_otl */ |
| 541 HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_EARLY, | 543 HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_EARLY, |
| 542 false, /* fallback_position */ | 544 false, /* fallback_position */ |
| 543 }; | 545 }; |
| OLD | NEW |