OLD | NEW |
1 /* | 1 /* |
2 * Copyright © 2009 Red Hat, Inc. | 2 * Copyright © 2009 Red Hat, Inc. |
3 * | 3 * |
4 * This is part of HarfBuzz, a text shaping library. | 4 * This is part of HarfBuzz, a text shaping library. |
5 * | 5 * |
6 * Permission is hereby granted, without written agreement and without | 6 * Permission is hereby granted, without written agreement and without |
7 * license or royalty fees, to use, copy, modify, and distribute this | 7 * license or royalty fees, to use, copy, modify, and distribute this |
8 * software and its documentation for any purpose, provided that the | 8 * software and its documentation for any purpose, provided that the |
9 * above copyright notice and the following two paragraphs appear in | 9 * above copyright notice and the following two paragraphs appear in |
10 * all copies of this software. | 10 * all copies of this software. |
(...skipping 14 matching lines...) Expand all Loading... |
25 */ | 25 */ |
26 | 26 |
27 #ifndef HB_OT_H | 27 #ifndef HB_OT_H |
28 #define HB_OT_H | 28 #define HB_OT_H |
29 #define HB_OT_H_IN | 29 #define HB_OT_H_IN |
30 | 30 |
31 #include "hb.h" | 31 #include "hb.h" |
32 | 32 |
33 #include "hb-ot-layout.h" | 33 #include "hb-ot-layout.h" |
34 #include "hb-ot-tag.h" | 34 #include "hb-ot-tag.h" |
| 35 #include "hb-ot-shape.h" |
35 | 36 |
36 HB_BEGIN_DECLS | 37 HB_BEGIN_DECLS |
37 | 38 |
38 /* TODO remove */ | |
39 void | |
40 hb_ot_shape_glyphs_closure (hb_font_t *font, | |
41 hb_buffer_t *buffer, | |
42 const hb_feature_t *features, | |
43 unsigned int num_features, | |
44 hb_set_t *glyphs); | |
45 | |
46 HB_END_DECLS | 39 HB_END_DECLS |
47 | 40 |
48 #undef HB_OT_H_IN | 41 #undef HB_OT_H_IN |
49 #endif /* HB_OT_H */ | 42 #endif /* HB_OT_H */ |
OLD | NEW |