| 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 22 matching lines...) Expand all Loading... |
| 33 NULL, /* collect_features */ | 33 NULL, /* collect_features */ |
| 34 NULL, /* override_features */ | 34 NULL, /* override_features */ |
| 35 NULL, /* data_create */ | 35 NULL, /* data_create */ |
| 36 NULL, /* data_destroy */ | 36 NULL, /* data_destroy */ |
| 37 NULL, /* preprocess_text */ | 37 NULL, /* preprocess_text */ |
| 38 NULL, /* postprocess_glyphs */ | 38 NULL, /* postprocess_glyphs */ |
| 39 HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT, | 39 HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT, |
| 40 NULL, /* decompose */ | 40 NULL, /* decompose */ |
| 41 NULL, /* compose */ | 41 NULL, /* compose */ |
| 42 NULL, /* setup_masks */ | 42 NULL, /* setup_masks */ |
| 43 HB_OT_SHAPE_ZERO_WIDTH_MARKS_DEFAULT, | 43 HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_UNICODE_LATE, |
| 44 true, /* fallback_position */ | 44 true, /* fallback_position */ |
| 45 }; | 45 }; |
| OLD | NEW |