| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright © 2015 Google, Inc. | 2 * Copyright © 2015 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 83 |
| 84 DEFINE_SIZE_ARRAY (0, dataX); | 84 DEFINE_SIZE_ARRAY (0, dataX); |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 struct glyfGlyphHeader | 87 struct glyfGlyphHeader |
| 88 { | 88 { |
| 89 SHORT numberOfContours; /* If the number of contours is | 89 SHORT numberOfContours; /* If the number of contours is |
| 90 * greater than or equal to zero, | 90 * greater than or equal to zero, |
| 91 * this is a simple glyph; if negative, | 91 * this is a simple glyph; if negative, |
| 92 * this is a composite glyph. */ | 92 * this is a composite glyph. */ |
| 93 SHORT»» xMin;» » » /* Minimum x for coordinate data. */ | 93 FWORD»» xMin;» » » /* Minimum x for coordinate data. */ |
| 94 SHORT»» yMin;» » » /* Minimum y for coordinate data. */ | 94 FWORD»» yMin;» » » /* Minimum y for coordinate data. */ |
| 95 SHORT»» xMax;» » » /* Maximum x for coordinate data. */ | 95 FWORD»» xMax;» » » /* Maximum x for coordinate data. */ |
| 96 SHORT»» yMax;» » » /* Maximum y for coordinate data. */ | 96 FWORD»» yMax;» » » /* Maximum y for coordinate data. */ |
| 97 | 97 |
| 98 DEFINE_SIZE_STATIC (10); | 98 DEFINE_SIZE_STATIC (10); |
| 99 }; | 99 }; |
| 100 | 100 |
| 101 } /* namespace OT */ | 101 } /* namespace OT */ |
| 102 | 102 |
| 103 | 103 |
| 104 #endif /* HB_OT_GLYF_TABLE_HH */ | 104 #endif /* HB_OT_GLYF_TABLE_HH */ |
| OLD | NEW |