Backed out 7 changesets (bug 1839993) for causing build bustages on DecoderTemplate...
[gecko.git] / modules / woff2 / src / table_tags.h
blob42dc0ae1c44062919dca55bdfcf9e2147dc095a9
1 /* Copyright 2014 Google Inc. All Rights Reserved.
3 Distributed under MIT license.
4 See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
5 */
7 /* Font table tags */
9 #ifndef WOFF2_TABLE_TAGS_H_
10 #define WOFF2_TABLE_TAGS_H_
12 #include <inttypes.h>
14 namespace woff2 {
16 // Tags of popular tables.
17 static const uint32_t kGlyfTableTag = 0x676c7966;
18 static const uint32_t kHeadTableTag = 0x68656164;
19 static const uint32_t kLocaTableTag = 0x6c6f6361;
20 static const uint32_t kDsigTableTag = 0x44534947;
21 static const uint32_t kCffTableTag = 0x43464620;
22 static const uint32_t kHmtxTableTag = 0x686d7478;
23 static const uint32_t kHheaTableTag = 0x68686561;
24 static const uint32_t kMaxpTableTag = 0x6d617870;
26 extern const uint32_t kKnownTags[];
28 } // namespace woff2
30 #endif // WOFF2_TABLE_TAGS_H_