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

Side by Side Diff: src/ots.h

Issue 139563002: [OTS] Add support for the MATH table. (Closed) Base URL: https://chromium.googlesource.com/external/ots.git@master
Patch Set: More fixes. Created 6 years, 11 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
« no previous file with comments | « src/math_.h ('k') | src/ots.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef OTS_H_ 5 #ifndef OTS_H_
6 #define OTS_H_ 6 #define OTS_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <cstdarg> 9 #include <cstdarg>
10 #include <cstddef> 10 #include <cstddef>
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 F(glyf, GLYF) \ 192 F(glyf, GLYF) \
193 F(gpos, GPOS) \ 193 F(gpos, GPOS) \
194 F(gsub, GSUB) \ 194 F(gsub, GSUB) \
195 F(hdmx, HDMX) \ 195 F(hdmx, HDMX) \
196 F(head, HEAD) \ 196 F(head, HEAD) \
197 F(hhea, HHEA) \ 197 F(hhea, HHEA) \
198 F(hmtx, HMTX) \ 198 F(hmtx, HMTX) \
199 F(kern, KERN) \ 199 F(kern, KERN) \
200 F(loca, LOCA) \ 200 F(loca, LOCA) \
201 F(ltsh, LTSH) \ 201 F(ltsh, LTSH) \
202 F(math, MATH) \
202 F(maxp, MAXP) \ 203 F(maxp, MAXP) \
203 F(name, NAME) \ 204 F(name, NAME) \
204 F(os2, OS2) \ 205 F(os2, OS2) \
205 F(post, POST) \ 206 F(post, POST) \
206 F(prep, PREP) \ 207 F(prep, PREP) \
207 F(vdmx, VDMX) \ 208 F(vdmx, VDMX) \
208 F(vorg, VORG) \ 209 F(vorg, VORG) \
209 F(vhea, VHEA) \ 210 F(vhea, VHEA) \
210 F(vmtx, VMTX) 211 F(vmtx, VMTX)
211 212
(...skipping 24 matching lines...) Expand all
236 bool ots_##name##_should_serialise(OpenTypeFile *f); \ 237 bool ots_##name##_should_serialise(OpenTypeFile *f); \
237 bool ots_##name##_serialise(OTSStream *s, OpenTypeFile *f); \ 238 bool ots_##name##_serialise(OTSStream *s, OpenTypeFile *f); \
238 void ots_##name##_free(OpenTypeFile *f); 239 void ots_##name##_free(OpenTypeFile *f);
239 // TODO(yusukes): change these function names to follow Chromium coding rule. 240 // TODO(yusukes): change these function names to follow Chromium coding rule.
240 FOR_EACH_TABLE_TYPE 241 FOR_EACH_TABLE_TYPE
241 #undef F 242 #undef F
242 243
243 } // namespace ots 244 } // namespace ots
244 245
245 #endif // OTS_H_ 246 #endif // OTS_H_
OLDNEW
« no previous file with comments | « src/math_.h ('k') | src/ots.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698