| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright © 2009 Red Hat, Inc. | 2 * Copyright © 2009 Red Hat, Inc. |
| 3 * Copyright © 2012 Google, Inc. | 3 * Copyright © 2012 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 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 #include "hb-private.hh" | 29 #include "hb-private.hh" |
| 30 | 30 |
| 31 #include "hb-ot-layout-private.hh" | 31 #include "hb-ot-layout-private.hh" |
| 32 | 32 |
| 33 #include "hb-font-private.hh" | 33 #include "hb-font-private.hh" |
| 34 #include "hb-open-file-private.hh" | 34 #include "hb-open-file-private.hh" |
| 35 #include "hb-ot-head-table.hh" | 35 #include "hb-ot-head-table.hh" |
| 36 #include "hb-ot-maxp-table.hh" | 36 #include "hb-ot-maxp-table.hh" |
| 37 | 37 |
| 38 #include "hb-cache-private.hh" | |
| 39 | |
| 40 #include <string.h> | 38 #include <string.h> |
| 41 | 39 |
| 42 | 40 |
| 43 /* | 41 /* |
| 44 * hb_font_funcs_t | 42 * hb_font_funcs_t |
| 45 */ | 43 */ |
| 46 | 44 |
| 47 static hb_bool_t | 45 static hb_bool_t |
| 48 hb_font_get_font_h_extents_nil (hb_font_t *font, | 46 hb_font_get_font_h_extents_nil (hb_font_t *font, |
| 49 void *font_data HB_UNUSED, | 47 void *font_data HB_UNUSED, |
| (...skipping 1608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1658 trampoline_destroy); | 1656 trampoline_destroy); |
| 1659 | 1657 |
| 1660 trampoline_reference (&trampoline->closure); | 1658 trampoline_reference (&trampoline->closure); |
| 1661 hb_font_funcs_set_variation_glyph_func (ffuncs, | 1659 hb_font_funcs_set_variation_glyph_func (ffuncs, |
| 1662 hb_font_get_variation_glyph_trampoline
, | 1660 hb_font_get_variation_glyph_trampoline
, |
| 1663 trampoline, | 1661 trampoline, |
| 1664 trampoline_destroy); | 1662 trampoline_destroy); |
| 1665 } | 1663 } |
| 1666 | 1664 |
| 1667 #endif /* HB_DISABLE_DEPRECATED */ | 1665 #endif /* HB_DISABLE_DEPRECATED */ |
| OLD | NEW |