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 12 matching lines...) Expand all Loading... |
23 * | 23 * |
24 * Google Author(s): Behdad Esfahbod | 24 * Google Author(s): Behdad Esfahbod |
25 */ | 25 */ |
26 | 26 |
27 #ifndef HB_OT_MAXP_TABLE_HH | 27 #ifndef HB_OT_MAXP_TABLE_HH |
28 #define HB_OT_MAXP_TABLE_HH | 28 #define HB_OT_MAXP_TABLE_HH |
29 | 29 |
30 #include "hb-open-type-private.hh" | 30 #include "hb-open-type-private.hh" |
31 | 31 |
32 | 32 |
| 33 namespace OT { |
| 34 |
33 | 35 |
34 /* | 36 /* |
35 * maxp -- The Maximum Profile Table | 37 * maxp -- The Maximum Profile Table |
36 */ | 38 */ |
37 | 39 |
38 #define HB_OT_TAG_maxp HB_TAG('m','a','x','p') | 40 #define HB_OT_TAG_maxp HB_TAG('m','a','x','p') |
39 | 41 |
40 struct maxp | 42 struct maxp |
41 { | 43 { |
42 static const hb_tag_t Tag = HB_OT_TAG_maxp; | 44 static const hb_tag_t Tag = HB_OT_TAG_maxp; |
43 | 45 |
44 inline unsigned int get_num_glyphs (void) const { | 46 inline unsigned int get_num_glyphs (void) const { |
45 return numGlyphs; | 47 return numGlyphs; |
46 } | 48 } |
47 | 49 |
48 inline bool sanitize (hb_sanitize_context_t *c) { | 50 inline bool sanitize (hb_sanitize_context_t *c) { |
49 TRACE_SANITIZE (); | 51 TRACE_SANITIZE (); |
50 return TRACE_RETURN (c->check_struct (this) && | 52 return TRACE_RETURN (c->check_struct (this) && |
51 likely (version.major == 1 || (version.major == 0 && ve
rsion.minor == 0x5000))); | 53 likely (version.major == 1 || (version.major == 0 && ve
rsion.minor == 0x5000))); |
52 } | 54 } |
53 | 55 |
54 /* We only implement version 0.5 as none of the extra fields in version 1.0 ar
e useful. */ | 56 /* We only implement version 0.5 as none of the extra fields in version 1.0 ar
e useful. */ |
55 private: | 57 protected: |
56 FixedVersion version; /* Version of the maxp table (0.5 or 1.0
), | 58 FixedVersion version; /* Version of the maxp table (0.5 or 1.0
), |
57 * 0x00005000 or 0x00010000. */ | 59 * 0x00005000 or 0x00010000. */ |
58 USHORT numGlyphs; /* The number of glyphs in the font. */ | 60 USHORT numGlyphs; /* The number of glyphs in the font. */ |
59 public: | 61 public: |
60 DEFINE_SIZE_STATIC (6); | 62 DEFINE_SIZE_STATIC (6); |
61 }; | 63 }; |
62 | 64 |
63 | 65 |
| 66 } // namespace OT |
| 67 |
64 | 68 |
65 #endif /* HB_OT_MAXP_TABLE_HH */ | 69 #endif /* HB_OT_MAXP_TABLE_HH */ |
OLD | NEW |