| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright © 2010,2012 Google, Inc. | 2 * Copyright © 2010,2012 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 | 156 |
| 157 | 157 |
| 158 const hb_ot_complex_shaper_t _hb_ot_complex_shaper_hebrew = | 158 const hb_ot_complex_shaper_t _hb_ot_complex_shaper_hebrew = |
| 159 { | 159 { |
| 160 "hebrew", | 160 "hebrew", |
| 161 NULL, /* collect_features */ | 161 NULL, /* collect_features */ |
| 162 NULL, /* override_features */ | 162 NULL, /* override_features */ |
| 163 NULL, /* data_create */ | 163 NULL, /* data_create */ |
| 164 NULL, /* data_destroy */ | 164 NULL, /* data_destroy */ |
| 165 NULL, /* preprocess_text */ | 165 NULL, /* preprocess_text */ |
| 166 NULL, /* postprocess_glyphs */ |
| 166 HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT, | 167 HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT, |
| 167 NULL, /* decompose */ | 168 NULL, /* decompose */ |
| 168 compose_hebrew, | 169 compose_hebrew, |
| 169 NULL, /* setup_masks */ | 170 NULL, /* setup_masks */ |
| 170 HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE, | 171 HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE, |
| 171 true, /* fallback_position */ | 172 true, /* fallback_position */ |
| 172 }; | 173 }; |
| OLD | NEW |