OLD | NEW |
1 /* | 1 /* |
2 * Copyright © 2007,2008,2009 Red Hat, Inc. | 2 * Copyright © 2007,2008,2009 Red Hat, Inc. |
3 * Copyright © 2012,2013 Google, Inc. | 3 * Copyright © 2012,2013 Google, Inc. |
4 * | 4 * |
5 * This is part of HarfBuzz, a text shaping library. | 5 * This is part of HarfBuzz, a text shaping library. |
6 * | 6 * |
7 * Permission is hereby granted, without written agreement and without | 7 * Permission is hereby granted, without written agreement and without |
8 * license or royalty fees, to use, copy, modify, and distribute this | 8 * license or royalty fees, to use, copy, modify, and distribute this |
9 * software and its documentation for any purpose, provided that the | 9 * software and its documentation for any purpose, provided that the |
10 * above copyright notice and the following two paragraphs appear in | 10 * above copyright notice and the following two paragraphs appear in |
(...skipping 13 matching lines...) Expand all Loading... |
24 * | 24 * |
25 * Red Hat Author(s): Behdad Esfahbod | 25 * Red Hat Author(s): Behdad Esfahbod |
26 * Google Author(s): Behdad Esfahbod | 26 * Google Author(s): Behdad Esfahbod |
27 */ | 27 */ |
28 | 28 |
29 #ifndef HB_OT_LAYOUT_PRIVATE_HH | 29 #ifndef HB_OT_LAYOUT_PRIVATE_HH |
30 #define HB_OT_LAYOUT_PRIVATE_HH | 30 #define HB_OT_LAYOUT_PRIVATE_HH |
31 | 31 |
32 #include "hb-private.hh" | 32 #include "hb-private.hh" |
33 | 33 |
34 #include "hb-ot-layout.h" | |
35 | |
36 #include "hb-font-private.hh" | 34 #include "hb-font-private.hh" |
37 #include "hb-buffer-private.hh" | 35 #include "hb-buffer-private.hh" |
38 #include "hb-set-private.hh" | 36 #include "hb-set-private.hh" |
39 | 37 |
40 | 38 |
41 /* | 39 /* |
42 * GDEF | 40 * GDEF |
43 */ | 41 */ |
44 | 42 |
45 typedef enum | 43 typedef enum |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 } | 414 } |
417 | 415 |
418 /* Make sure no one directly touches our props... */ | 416 /* Make sure no one directly touches our props... */ |
419 #undef unicode_props0 | 417 #undef unicode_props0 |
420 #undef unicode_props1 | 418 #undef unicode_props1 |
421 #undef lig_props | 419 #undef lig_props |
422 #undef glyph_props | 420 #undef glyph_props |
423 | 421 |
424 | 422 |
425 #endif /* HB_OT_LAYOUT_PRIVATE_HH */ | 423 #endif /* HB_OT_LAYOUT_PRIVATE_HH */ |
OLD | NEW |