Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(482)

Side by Side Diff: third_party/harfbuzz-ng/src/hb-ot-maxp-table.hh

Issue 396393005: Roll HarfBuzz to 0.9.32 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for include order presubmit issue Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 { 43 {
44 static const hb_tag_t tableTag = HB_OT_TAG_maxp; 44 static const hb_tag_t tableTag = HB_OT_TAG_maxp;
45 45
46 inline unsigned int get_num_glyphs (void) const { 46 inline unsigned int get_num_glyphs (void) const {
47 return numGlyphs; 47 return numGlyphs;
48 } 48 }
49 49
50 inline bool sanitize (hb_sanitize_context_t *c) { 50 inline bool sanitize (hb_sanitize_context_t *c) {
51 TRACE_SANITIZE (this); 51 TRACE_SANITIZE (this);
52 return TRACE_RETURN (c->check_struct (this) && 52 return TRACE_RETURN (c->check_struct (this) &&
53 » » » likely (version.major == 1 || (version.major == 0 && ve rsion.minor == 0x5000))); 53 » » » likely (version.major == 1 || (version.major == 0 && ve rsion.minor == 0x5000u)));
54 } 54 }
55 55
56 /* 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. */
57 protected: 57 protected:
58 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 ),
59 » » » » » * 0x00005000 or 0x00010000. */ 59 » » » » » * 0x00005000u or 0x00010000u. */
60 USHORT numGlyphs; /* The number of glyphs in the font. */ 60 USHORT numGlyphs; /* The number of glyphs in the font. */
61 public: 61 public:
62 DEFINE_SIZE_STATIC (6); 62 DEFINE_SIZE_STATIC (6);
63 }; 63 };
64 64
65 65
66 } /* namespace OT */ 66 } /* namespace OT */
67 67
68 68
69 #endif /* HB_OT_MAXP_TABLE_HH */ 69 #endif /* HB_OT_MAXP_TABLE_HH */
OLDNEW
« no previous file with comments | « third_party/harfbuzz-ng/src/hb-ot-map-private.hh ('k') | third_party/harfbuzz-ng/src/hb-ot-name-table.hh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698