agl / otc

OpenType Condom

This URL has Read+Write access

Adam Langley (author)
Thu Apr 09 14:55:48 -0700 2009
otc / src / maxp.h
100644 17 lines (13 sloc) 0.289 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef OTC_MAXP_H_
#define OTC_MAXP_H_
 
struct OpenTypeMAXP {
  uint16_t num_glyphs;
  bool version_1;
 
  uint16_t max_points;
  uint16_t max_contours;
  uint16_t max_c_points;
  uint16_t max_c_contours;
  uint16_t max_c_components;
  uint16_t max_c_recursion;
};
 
#endif // OTC_MAXP_H_