| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright © 2011,2012 Google, Inc. | 2 * Copyright © 2011,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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #define HB_OT_TAG_vhea HB_TAG('v','h','e','a') | 42 #define HB_OT_TAG_vhea HB_TAG('v','h','e','a') |
| 43 | 43 |
| 44 | 44 |
| 45 struct _hea | 45 struct _hea |
| 46 { | 46 { |
| 47 static const hb_tag_t tableTag = HB_TAG('_','h','e','a'); | 47 static const hb_tag_t tableTag = HB_TAG('_','h','e','a'); |
| 48 | 48 |
| 49 static const hb_tag_t hheaTag = HB_OT_TAG_hhea; | 49 static const hb_tag_t hheaTag = HB_OT_TAG_hhea; |
| 50 static const hb_tag_t vheaTag = HB_OT_TAG_vhea; | 50 static const hb_tag_t vheaTag = HB_OT_TAG_vhea; |
| 51 | 51 |
| 52 inline bool sanitize (hb_sanitize_context_t *c) { | 52 inline bool sanitize (hb_sanitize_context_t *c) const |
| 53 { |
| 53 TRACE_SANITIZE (this); | 54 TRACE_SANITIZE (this); |
| 54 return TRACE_RETURN (c->check_struct (this) && likely (version.major == 1)); | 55 return TRACE_RETURN (c->check_struct (this) && likely (version.major == 1)); |
| 55 } | 56 } |
| 56 | 57 |
| 57 public: | 58 public: |
| 58 FixedVersion version; /* 0x00010000u for version 1.0. */ | 59 FixedVersion version; /* 0x00010000u for version 1.0. */ |
| 59 FWORD ascender; /* Typographic ascent. */ | 60 FWORD ascender; /* Typographic ascent. */ |
| 60 FWORD descender; /* Typographic descent. */ | 61 FWORD descender; /* Typographic descent. */ |
| 61 FWORD lineGap; /* Typographic line gap. */ | 62 FWORD lineGap; /* Typographic line gap. */ |
| 62 UFWORD advanceMax; /* Maximum advance width/height value in | 63 UFWORD advanceMax; /* Maximum advance width/height value in |
| (...skipping 30 matching lines...) Expand all Loading... |
| 93 }; | 94 }; |
| 94 struct vhea : _hea { | 95 struct vhea : _hea { |
| 95 static const hb_tag_t tableTag = HB_OT_TAG_vhea; | 96 static const hb_tag_t tableTag = HB_OT_TAG_vhea; |
| 96 }; | 97 }; |
| 97 | 98 |
| 98 | 99 |
| 99 } /* namespace OT */ | 100 } /* namespace OT */ |
| 100 | 101 |
| 101 | 102 |
| 102 #endif /* HB_OT_HHEA_TABLE_HH */ | 103 #endif /* HB_OT_HHEA_TABLE_HH */ |
| OLD | NEW |