| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright © 2011 Google, Inc. | 2 * Copyright © 2011 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 HB_DEFINE_OBJECT_TYPE (font) | 71 HB_DEFINE_OBJECT_TYPE (font) |
| 72 HB_DEFINE_OBJECT_TYPE (font_funcs) | 72 HB_DEFINE_OBJECT_TYPE (font_funcs) |
| 73 HB_DEFINE_OBJECT_TYPE (set) | 73 HB_DEFINE_OBJECT_TYPE (set) |
| 74 HB_DEFINE_OBJECT_TYPE (shape_plan) | 74 HB_DEFINE_OBJECT_TYPE (shape_plan) |
| 75 HB_DEFINE_OBJECT_TYPE (unicode_funcs) | 75 HB_DEFINE_OBJECT_TYPE (unicode_funcs) |
| 76 HB_DEFINE_VALUE_TYPE (feature) | 76 HB_DEFINE_VALUE_TYPE (feature) |
| 77 HB_DEFINE_VALUE_TYPE (glyph_info) | 77 HB_DEFINE_VALUE_TYPE (glyph_info) |
| 78 HB_DEFINE_VALUE_TYPE (glyph_position) | 78 HB_DEFINE_VALUE_TYPE (glyph_position) |
| 79 HB_DEFINE_VALUE_TYPE (segment_properties) | 79 HB_DEFINE_VALUE_TYPE (segment_properties) |
| 80 HB_DEFINE_VALUE_TYPE (user_data_key) | 80 HB_DEFINE_VALUE_TYPE (user_data_key) |
| 81 |
| 82 HB_DEFINE_VALUE_TYPE (ot_math_glyph_variant) |
| 83 HB_DEFINE_VALUE_TYPE (ot_math_glyph_part) |
| OLD | NEW |