| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright © 2013 Google, Inc. | 2 * Copyright © 2013 Google, 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 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 HB_BEGIN_DECLS | 38 HB_BEGIN_DECLS |
| 39 | 39 |
| 40 #ifndef HB_DISABLE_DEPRECATED | 40 #ifndef HB_DISABLE_DEPRECATED |
| 41 | 41 |
| 42 #define HB_SCRIPT_CANADIAN_ABORIGINAL HB_SCRIPT_CANADIAN_SYLLABICS | 42 #define HB_SCRIPT_CANADIAN_ABORIGINAL HB_SCRIPT_CANADIAN_SYLLABICS |
| 43 | 43 |
| 44 #define HB_BUFFER_FLAGS_DEFAULT HB_BUFFER_FLAG_DEFAULT | 44 #define HB_BUFFER_FLAGS_DEFAULT HB_BUFFER_FLAG_DEFAULT |
| 45 #define HB_BUFFER_SERIALIZE_FLAGS_DEFAULT HB_BUFFER_SERIALIZE_FLAG_DEFAULT | 45 #define HB_BUFFER_SERIALIZE_FLAGS_DEFAULT HB_BUFFER_SERIALIZE_FLAG_DEFAULT |
| 46 | 46 |
| 47 typedef hb_bool_t (*hb_font_get_glyph_func_t) (hb_font_t *font, void *font_data, |
| 48 hb_codepoint_t unicode, hb_codepo
int_t variation_selector, |
| 49 hb_codepoint_t *glyph, |
| 50 void *user_data); |
| 51 |
| 52 HB_EXTERN void |
| 53 hb_font_funcs_set_glyph_func (hb_font_funcs_t *ffuncs, |
| 54 hb_font_get_glyph_func_t func, |
| 55 void *user_data, hb_destroy_func_t destroy); |
| 56 |
| 47 #endif | 57 #endif |
| 48 | 58 |
| 49 HB_END_DECLS | 59 HB_END_DECLS |
| 50 | 60 |
| 51 #endif /* HB_DEPRECATED_H */ | 61 #endif /* HB_DEPRECATED_H */ |
| OLD | NEW |