| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright © 2013 Red Hat, Inc. | 2 * Copyright © 2013 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 18 matching lines...) Expand all Loading... |
| 29 #endif | 29 #endif |
| 30 | 30 |
| 31 #ifndef HB_OT_SHAPE_H | 31 #ifndef HB_OT_SHAPE_H |
| 32 #define HB_OT_SHAPE_H | 32 #define HB_OT_SHAPE_H |
| 33 | 33 |
| 34 #include "hb.h" | 34 #include "hb.h" |
| 35 | 35 |
| 36 HB_BEGIN_DECLS | 36 HB_BEGIN_DECLS |
| 37 | 37 |
| 38 /* TODO port to shape-plan / set. */ | 38 /* TODO port to shape-plan / set. */ |
| 39 void | 39 HB_EXTERN void |
| 40 hb_ot_shape_glyphs_closure (hb_font_t *font, | 40 hb_ot_shape_glyphs_closure (hb_font_t *font, |
| 41 hb_buffer_t *buffer, | 41 hb_buffer_t *buffer, |
| 42 const hb_feature_t *features, | 42 const hb_feature_t *features, |
| 43 unsigned int num_features, | 43 unsigned int num_features, |
| 44 hb_set_t *glyphs); | 44 hb_set_t *glyphs); |
| 45 | 45 |
| 46 void | 46 HB_EXTERN void |
| 47 hb_ot_shape_plan_collect_lookups (hb_shape_plan_t *shape_plan, | 47 hb_ot_shape_plan_collect_lookups (hb_shape_plan_t *shape_plan, |
| 48 hb_tag_t table_tag, | 48 hb_tag_t table_tag, |
| 49 hb_set_t *lookup_indexes /* OUT */); | 49 hb_set_t *lookup_indexes /* OUT */); |
| 50 | 50 |
| 51 HB_END_DECLS | 51 HB_END_DECLS |
| 52 | 52 |
| 53 #endif /* HB_OT_SHAPE_H */ | 53 #endif /* HB_OT_SHAPE_H */ |
| OLD | NEW |