OLD | NEW |
1 /* | 1 /* |
2 * Copyright © 2009 Red Hat, Inc. | 2 * Copyright © 2009 Red Hat, Inc. |
3 * Copyright © 2011 Google, Inc. | 3 * Copyright © 2011 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_FACE_PRIVATE_HH | 29 #ifndef HB_FACE_PRIVATE_HH |
30 #define HB_FACE_PRIVATE_HH | 30 #define HB_FACE_PRIVATE_HH |
31 | 31 |
32 #include "hb-private.hh" | 32 #include "hb-private.hh" |
33 | 33 |
34 #include "hb-font.h" | |
35 #include "hb-object-private.hh" | 34 #include "hb-object-private.hh" |
36 #include "hb-shaper-private.hh" | 35 #include "hb-shaper-private.hh" |
37 #include "hb-shape-plan-private.hh" | 36 #include "hb-shape-plan-private.hh" |
38 | 37 |
39 | 38 |
40 /* | 39 /* |
41 * hb_face_t | 40 * hb_face_t |
42 */ | 41 */ |
43 | 42 |
44 struct hb_face_t { | 43 struct hb_face_t { |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 extern HB_INTERNAL const hb_face_t _hb_face_nil; | 98 extern HB_INTERNAL const hb_face_t _hb_face_nil; |
100 | 99 |
101 #define HB_SHAPER_DATA_CREATE_FUNC_EXTRA_ARGS | 100 #define HB_SHAPER_DATA_CREATE_FUNC_EXTRA_ARGS |
102 #define HB_SHAPER_IMPLEMENT(shaper) HB_SHAPER_DATA_PROTOTYPE(shaper, face); | 101 #define HB_SHAPER_IMPLEMENT(shaper) HB_SHAPER_DATA_PROTOTYPE(shaper, face); |
103 #include "hb-shaper-list.hh" | 102 #include "hb-shaper-list.hh" |
104 #undef HB_SHAPER_IMPLEMENT | 103 #undef HB_SHAPER_IMPLEMENT |
105 #undef HB_SHAPER_DATA_CREATE_FUNC_EXTRA_ARGS | 104 #undef HB_SHAPER_DATA_CREATE_FUNC_EXTRA_ARGS |
106 | 105 |
107 | 106 |
108 #endif /* HB_FACE_PRIVATE_HH */ | 107 #endif /* HB_FACE_PRIVATE_HH */ |
OLD | NEW |