blob: c2ea1e0b25767fc1fa2dcf0fdf72869b7bf32e87 [file] [log] [blame]
bungeman@google.com8ec99562012-02-07 21:30:21 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkSFNTHeader_DEFINED
9#define SkSFNTHeader_DEFINED
10
11#include "SkEndian.h"
bungeman@google.coma5501992012-05-18 19:06:41 +000012#include "SkOTTableTypes.h"
bungeman@google.com8ec99562012-02-07 21:30:21 +000013
14//All SK_SFNT_ prefixed types should be considered as big endian.
15typedef uint16_t SK_SFNT_USHORT;
16typedef uint32_t SK_SFNT_ULONG;
17
18#pragma pack(push, 1)
19
20struct SkSFNTHeader {
21 SK_SFNT_ULONG fontType;
bungeman@google.comec95a4a2012-06-25 14:26:48 +000022 struct fontType_WindowsTrueType {
23 static const SK_OT_CHAR TAG0 = 0;
24 static const SK_OT_CHAR TAG1 = 1;
25 static const SK_OT_CHAR TAG2 = 0;
26 static const SK_OT_CHAR TAG3 = 0;
27 static const SK_OT_ULONG TAG = SkOTTableTAG<fontType_WindowsTrueType>::value;
28 };
29 struct fontType_MacTrueType {
30 static const SK_OT_CHAR TAG0 = 't';
31 static const SK_OT_CHAR TAG1 = 'r';
32 static const SK_OT_CHAR TAG2 = 'u';
33 static const SK_OT_CHAR TAG3 = 'e';
34 static const SK_OT_ULONG TAG = SkOTTableTAG<fontType_MacTrueType>::value;
35 };
36 struct fontType_PostScript {
37 static const SK_OT_CHAR TAG0 = 't';
38 static const SK_OT_CHAR TAG1 = 'y';
39 static const SK_OT_CHAR TAG2 = 'p';
40 static const SK_OT_CHAR TAG3 = '1';
41 static const SK_OT_ULONG TAG = SkOTTableTAG<fontType_PostScript>::value;
42 };
43 struct fontType_OpenTypeCFF {
44 static const SK_OT_CHAR TAG0 = 'O';
45 static const SK_OT_CHAR TAG1 = 'T';
46 static const SK_OT_CHAR TAG2 = 'T';
47 static const SK_OT_CHAR TAG3 = 'O';
48 static const SK_OT_ULONG TAG = SkOTTableTAG<fontType_OpenTypeCFF>::value;
49 };
bungeman@google.com8ec99562012-02-07 21:30:21 +000050
51 SK_SFNT_USHORT numTables;
52 SK_SFNT_USHORT searchRange;
53 SK_SFNT_USHORT entrySelector;
54 SK_SFNT_USHORT rangeShift;
skia.committer@gmail.comb0a327e2012-11-21 02:02:25 +000055
bungeman@google.coma544f292012-11-20 18:52:23 +000056 struct TableDirectoryEntry {
57 SK_SFNT_ULONG tag;
58 SK_SFNT_ULONG checksum;
59 SK_SFNT_ULONG offset; //From beginning of header.
60 SK_SFNT_ULONG logicalLength;
61 }; //tableDirectoryEntries[numTables]
bungeman@google.com8ec99562012-02-07 21:30:21 +000062};
63
64#pragma pack(pop)
65
66
bungeman99fe8222015-08-20 07:57:51 -070067static_assert(sizeof(SkSFNTHeader) == 12, "sizeof_SkSFNTHeader_not_12");
68static_assert(sizeof(SkSFNTHeader::TableDirectoryEntry) == 16, "sizeof_SkSFNTHeader_TableDirectoryEntry_not_16");
bungeman@google.com8ec99562012-02-07 21:30:21 +000069
70#endif