Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2011,2014 Google, Inc. |
| 3 | * |
| 4 | * This is part of HarfBuzz, a text shaping library. |
| 5 | * |
| 6 | * Permission is hereby granted, without written agreement and without |
| 7 | * license or royalty fees, to use, copy, modify, and distribute this |
| 8 | * software and its documentation for any purpose, provided that the |
| 9 | * above copyright notice and the following two paragraphs appear in |
| 10 | * all copies of this software. |
| 11 | * |
| 12 | * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR |
| 13 | * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES |
| 14 | * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN |
| 15 | * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH |
| 16 | * DAMAGE. |
| 17 | * |
| 18 | * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, |
| 19 | * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS |
| 21 | * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO |
| 22 | * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 23 | * |
| 24 | * Google Author(s): Behdad Esfahbod, Roozbeh Pournader |
| 25 | */ |
| 26 | |
Behdad Esfahbod | c77ae40 | 2018-08-25 22:36:36 -0700 | [diff] [blame] | 27 | #include "hb.hh" |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 28 | |
| 29 | #include "hb-ot.h" |
| 30 | |
Behdad Esfahbod | c77ae40 | 2018-08-25 22:36:36 -0700 | [diff] [blame] | 31 | #include "hb-font.hh" |
| 32 | #include "hb-machinery.hh" |
Behdad Esfahbod | 1c48a7e | 2018-08-25 23:54:06 -0700 | [diff] [blame] | 33 | #include "hb-ot-face.hh" |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 34 | |
Behdad Esfahbod | 41ca1fb | 2014-05-09 15:35:56 -0400 | [diff] [blame] | 35 | #include "hb-ot-cmap-table.hh" |
Behdad Esfahbod | 3a0b3a2 | 2018-08-26 15:11:24 -0700 | [diff] [blame] | 36 | #include "hb-ot-glyf-table.hh" |
Michiharu Ariza | 8af9690 | 2018-08-29 13:26:17 -0700 | [diff] [blame] | 37 | #include "hb-ot-cff1-table.hh" |
| 38 | #include "hb-ot-cff2-table.hh" |
Behdad Esfahbod | 3a0b3a2 | 2018-08-26 15:11:24 -0700 | [diff] [blame] | 39 | #include "hb-ot-hmtx-table.hh" |
Ebrahim Byagowi | 7867c2b | 2018-11-14 22:13:50 +0330 | [diff] [blame] | 40 | #include "hb-ot-os2-table.hh" |
Behdad Esfahbod | 3a0b3a2 | 2018-08-26 15:11:24 -0700 | [diff] [blame] | 41 | #include "hb-ot-post-table.hh" |
Ebrahim Byagowi | 7867c2b | 2018-11-14 22:13:50 +0330 | [diff] [blame] | 42 | #include "hb-ot-stat-table.hh" // Just so we compile it; unused otherwise. |
Behdad Esfahbod | 48ed598 | 2018-10-23 02:19:32 -0700 | [diff] [blame] | 43 | #include "hb-ot-vorg-table.hh" |
Ebrahim Byagowi | 0ef6ab2 | 2018-03-04 02:47:26 +0330 | [diff] [blame] | 44 | #include "hb-ot-color-cbdt-table.hh" |
Ebrahim Byagowi | 38706a0 | 2018-10-28 23:19:04 +0330 | [diff] [blame] | 45 | #include "hb-ot-color-sbix-table.hh" |
Behdad Esfahbod | 3a0b3a2 | 2018-08-26 15:11:24 -0700 | [diff] [blame] | 46 | |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 47 | |
Behdad Esfahbod | 80d9a42 | 2018-10-27 04:58:32 -0700 | [diff] [blame] | 48 | /** |
| 49 | * SECTION:hb-ot-font |
| 50 | * @title: hb-ot-font |
| 51 | * @short_description: OpenType font implementation |
| 52 | * @include: hb-ot.h |
| 53 | * |
Evgeniy Reizner | d29c842 | 2019-02-19 18:35:00 +0200 | [diff] [blame] | 54 | * Functions for using OpenType fonts with hb_shape(). Note that fonts returned |
Behdad Esfahbod | d6d6f3b | 2018-10-28 11:41:33 -0700 | [diff] [blame] | 55 | * by hb_font_create() default to using these functions, so most clients would |
| 56 | * never need to call these functions directly. |
Behdad Esfahbod | 80d9a42 | 2018-10-27 04:58:32 -0700 | [diff] [blame] | 57 | **/ |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 58 | |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 59 | |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 60 | static hb_bool_t |
Behdad Esfahbod | 8b5bc14 | 2016-02-24 19:05:23 +0900 | [diff] [blame] | 61 | hb_ot_get_nominal_glyph (hb_font_t *font HB_UNUSED, |
| 62 | void *font_data, |
| 63 | hb_codepoint_t unicode, |
| 64 | hb_codepoint_t *glyph, |
| 65 | void *user_data HB_UNUSED) |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 66 | { |
Behdad Esfahbod | 914b595 | 2018-11-05 22:39:50 -0500 | [diff] [blame] | 67 | const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data; |
Behdad Esfahbod | 03348ce | 2018-11-05 12:59:32 -0500 | [diff] [blame] | 68 | return ot_face->cmap->get_nominal_glyph (unicode, glyph); |
Behdad Esfahbod | 8b5bc14 | 2016-02-24 19:05:23 +0900 | [diff] [blame] | 69 | } |
| 70 | |
Behdad Esfahbod | ec84460 | 2018-10-09 15:07:04 -0400 | [diff] [blame] | 71 | static unsigned int |
| 72 | hb_ot_get_nominal_glyphs (hb_font_t *font HB_UNUSED, |
| 73 | void *font_data, |
| 74 | unsigned int count, |
| 75 | const hb_codepoint_t *first_unicode, |
| 76 | unsigned int unicode_stride, |
| 77 | hb_codepoint_t *first_glyph, |
| 78 | unsigned int glyph_stride, |
| 79 | void *user_data HB_UNUSED) |
| 80 | { |
Behdad Esfahbod | 914b595 | 2018-11-05 22:39:50 -0500 | [diff] [blame] | 81 | const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data; |
Behdad Esfahbod | 56ba998 | 2018-11-05 19:49:54 -0500 | [diff] [blame] | 82 | return ot_face->cmap->get_nominal_glyphs (count, |
| 83 | first_unicode, unicode_stride, |
| 84 | first_glyph, glyph_stride); |
Behdad Esfahbod | 8b5bc14 | 2016-02-24 19:05:23 +0900 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | static hb_bool_t |
| 88 | hb_ot_get_variation_glyph (hb_font_t *font HB_UNUSED, |
| 89 | void *font_data, |
| 90 | hb_codepoint_t unicode, |
| 91 | hb_codepoint_t variation_selector, |
| 92 | hb_codepoint_t *glyph, |
| 93 | void *user_data HB_UNUSED) |
| 94 | { |
Behdad Esfahbod | 914b595 | 2018-11-05 22:39:50 -0500 | [diff] [blame] | 95 | const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data; |
Behdad Esfahbod | 03348ce | 2018-11-05 12:59:32 -0500 | [diff] [blame] | 96 | return ot_face->cmap->get_variation_glyph (unicode, variation_selector, glyph); |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 97 | } |
| 98 | |
Behdad Esfahbod | d8a67da | 2018-09-11 12:55:54 +0200 | [diff] [blame] | 99 | static void |
| 100 | hb_ot_get_glyph_h_advances (hb_font_t* font, void* font_data, |
| 101 | unsigned count, |
Behdad Esfahbod | bee93e2 | 2018-10-09 08:01:49 -0400 | [diff] [blame] | 102 | const hb_codepoint_t *first_glyph, |
Behdad Esfahbod | d8a67da | 2018-09-11 12:55:54 +0200 | [diff] [blame] | 103 | unsigned glyph_stride, |
| 104 | hb_position_t *first_advance, |
| 105 | unsigned advance_stride, |
| 106 | void *user_data HB_UNUSED) |
| 107 | { |
Behdad Esfahbod | 914b595 | 2018-11-05 22:39:50 -0500 | [diff] [blame] | 108 | const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data; |
Behdad Esfahbod | 03348ce | 2018-11-05 12:59:32 -0500 | [diff] [blame] | 109 | const OT::hmtx_accelerator_t &hmtx = *ot_face->hmtx; |
Behdad Esfahbod | d8a67da | 2018-09-11 12:55:54 +0200 | [diff] [blame] | 110 | |
| 111 | for (unsigned int i = 0; i < count; i++) |
| 112 | { |
| 113 | *first_advance = font->em_scale_x (hmtx.get_advance (*first_glyph, font)); |
Behdad Esfahbod | 447323b | 2019-01-22 12:45:40 +0100 | [diff] [blame] | 114 | first_glyph = &StructAtOffsetUnaligned<hb_codepoint_t> (first_glyph, glyph_stride); |
| 115 | first_advance = &StructAtOffsetUnaligned<hb_position_t> (first_advance, advance_stride); |
Behdad Esfahbod | d8a67da | 2018-09-11 12:55:54 +0200 | [diff] [blame] | 116 | } |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 117 | } |
| 118 | |
Behdad Esfahbod | d8a67da | 2018-09-11 12:55:54 +0200 | [diff] [blame] | 119 | static void |
| 120 | hb_ot_get_glyph_v_advances (hb_font_t* font, void* font_data, |
| 121 | unsigned count, |
Behdad Esfahbod | bee93e2 | 2018-10-09 08:01:49 -0400 | [diff] [blame] | 122 | const hb_codepoint_t *first_glyph, |
Behdad Esfahbod | d8a67da | 2018-09-11 12:55:54 +0200 | [diff] [blame] | 123 | unsigned glyph_stride, |
| 124 | hb_position_t *first_advance, |
| 125 | unsigned advance_stride, |
| 126 | void *user_data HB_UNUSED) |
| 127 | { |
Behdad Esfahbod | 914b595 | 2018-11-05 22:39:50 -0500 | [diff] [blame] | 128 | const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data; |
Behdad Esfahbod | 03348ce | 2018-11-05 12:59:32 -0500 | [diff] [blame] | 129 | const OT::vmtx_accelerator_t &vmtx = *ot_face->vmtx; |
Behdad Esfahbod | d8a67da | 2018-09-11 12:55:54 +0200 | [diff] [blame] | 130 | |
| 131 | for (unsigned int i = 0; i < count; i++) |
| 132 | { |
| 133 | *first_advance = font->em_scale_y (-(int) vmtx.get_advance (*first_glyph, font)); |
Behdad Esfahbod | 447323b | 2019-01-22 12:45:40 +0100 | [diff] [blame] | 134 | first_glyph = &StructAtOffsetUnaligned<hb_codepoint_t> (first_glyph, glyph_stride); |
| 135 | first_advance = &StructAtOffsetUnaligned<hb_position_t> (first_advance, advance_stride); |
Behdad Esfahbod | d8a67da | 2018-09-11 12:55:54 +0200 | [diff] [blame] | 136 | } |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | static hb_bool_t |
Behdad Esfahbod | 8dc6296 | 2018-10-15 01:09:05 -0700 | [diff] [blame] | 140 | hb_ot_get_glyph_v_origin (hb_font_t *font, |
| 141 | void *font_data, |
| 142 | hb_codepoint_t glyph, |
| 143 | hb_position_t *x, |
| 144 | hb_position_t *y, |
| 145 | void *user_data HB_UNUSED) |
| 146 | { |
Behdad Esfahbod | 914b595 | 2018-11-05 22:39:50 -0500 | [diff] [blame] | 147 | const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data; |
Behdad Esfahbod | 8dc6296 | 2018-10-15 01:09:05 -0700 | [diff] [blame] | 148 | |
| 149 | *x = font->get_glyph_h_advance (glyph) / 2; |
| 150 | |
Behdad Esfahbod | d7e27cd | 2019-06-18 14:38:05 -0700 | [diff] [blame^] | 151 | #ifndef HB_NO_OT_FONT_CFF |
Behdad Esfahbod | 03348ce | 2018-11-05 12:59:32 -0500 | [diff] [blame] | 152 | const OT::VORG &VORG = *ot_face->VORG; |
Behdad Esfahbod | 48ed598 | 2018-10-23 02:19:32 -0700 | [diff] [blame] | 153 | if (VORG.has_data ()) |
| 154 | { |
| 155 | *y = font->em_scale_y (VORG.get_y_origin (glyph)); |
| 156 | return true; |
| 157 | } |
Behdad Esfahbod | d7e27cd | 2019-06-18 14:38:05 -0700 | [diff] [blame^] | 158 | #endif |
Behdad Esfahbod | 48ed598 | 2018-10-23 02:19:32 -0700 | [diff] [blame] | 159 | |
Behdad Esfahbod | 8dc6296 | 2018-10-15 01:09:05 -0700 | [diff] [blame] | 160 | hb_glyph_extents_t extents = {0}; |
Behdad Esfahbod | 48ed598 | 2018-10-23 02:19:32 -0700 | [diff] [blame] | 161 | if (ot_face->glyf->get_extents (glyph, &extents)) |
Behdad Esfahbod | 8dc6296 | 2018-10-15 01:09:05 -0700 | [diff] [blame] | 162 | { |
Behdad Esfahbod | 03348ce | 2018-11-05 12:59:32 -0500 | [diff] [blame] | 163 | const OT::vmtx_accelerator_t &vmtx = *ot_face->vmtx; |
Behdad Esfahbod | 8dc6296 | 2018-10-15 01:09:05 -0700 | [diff] [blame] | 164 | hb_position_t tsb = vmtx.get_side_bearing (glyph); |
| 165 | *y = font->em_scale_y (extents.y_bearing + tsb); |
| 166 | return true; |
| 167 | } |
| 168 | |
| 169 | hb_font_extents_t font_extents; |
| 170 | font->get_h_extents_with_fallback (&font_extents); |
| 171 | *y = font_extents.ascender; |
| 172 | |
| 173 | return true; |
| 174 | } |
| 175 | |
| 176 | static hb_bool_t |
Ebrahim Byagowi | 24b8b9b | 2018-04-23 19:03:57 +0430 | [diff] [blame] | 177 | hb_ot_get_glyph_extents (hb_font_t *font, |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 178 | void *font_data, |
| 179 | hb_codepoint_t glyph, |
| 180 | hb_glyph_extents_t *extents, |
| 181 | void *user_data HB_UNUSED) |
| 182 | { |
Behdad Esfahbod | 914b595 | 2018-11-05 22:39:50 -0500 | [diff] [blame] | 183 | const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data; |
Behdad Esfahbod | 32d3c06 | 2019-05-11 11:59:18 -0700 | [diff] [blame] | 184 | bool ret = false; |
| 185 | |
| 186 | #if !defined(HB_NO_OT_FONT_BITMAP) && !defined(HB_NO_COLOR) |
Behdad Esfahbod | a6048e4 | 2019-05-11 12:11:22 -0700 | [diff] [blame] | 187 | if (!ret) ret = ot_face->sbix->get_extents (font, glyph, extents); |
Behdad Esfahbod | 32d3c06 | 2019-05-11 11:59:18 -0700 | [diff] [blame] | 188 | #endif |
| 189 | if (!ret) ret = ot_face->glyf->get_extents (glyph, extents); |
Behdad Esfahbod | 227d85e | 2019-05-10 23:15:58 -0700 | [diff] [blame] | 190 | #ifndef HB_NO_OT_FONT_CFF |
Behdad Esfahbod | 32d3c06 | 2019-05-11 11:59:18 -0700 | [diff] [blame] | 191 | if (!ret) ret = ot_face->cff1->get_extents (glyph, extents); |
| 192 | if (!ret) ret = ot_face->cff2->get_extents (font, glyph, extents); |
Behdad Esfahbod | 160c4d8 | 2019-04-12 14:57:49 -0400 | [diff] [blame] | 193 | #endif |
Behdad Esfahbod | 32d3c06 | 2019-05-11 11:59:18 -0700 | [diff] [blame] | 194 | #if !defined(HB_NO_OT_FONT_BITMAP) && !defined(HB_NO_COLOR) |
| 195 | if (!ret) ret = ot_face->CBDT->get_extents (font, glyph, extents); |
Behdad Esfahbod | 60a58aa | 2019-04-12 14:58:53 -0400 | [diff] [blame] | 196 | #endif |
Behdad Esfahbod | 32d3c06 | 2019-05-11 11:59:18 -0700 | [diff] [blame] | 197 | |
Behdad Esfahbod | 79e8e27 | 2017-01-23 17:55:31 -0800 | [diff] [blame] | 198 | // TODO Hook up side-bearings variations. |
Behdad Esfahbod | b50fcfa | 2015-08-23 14:42:20 +0100 | [diff] [blame] | 199 | extents->x_bearing = font->em_scale_x (extents->x_bearing); |
| 200 | extents->y_bearing = font->em_scale_y (extents->y_bearing); |
| 201 | extents->width = font->em_scale_x (extents->width); |
| 202 | extents->height = font->em_scale_y (extents->height); |
| 203 | return ret; |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 204 | } |
| 205 | |
Simon Cozens | 6f2e6de | 2015-10-26 16:23:22 +0900 | [diff] [blame] | 206 | static hb_bool_t |
Khaled Hosny | 9d4d2fb | 2017-10-16 10:05:42 +0200 | [diff] [blame] | 207 | hb_ot_get_glyph_name (hb_font_t *font HB_UNUSED, |
| 208 | void *font_data, |
| 209 | hb_codepoint_t glyph, |
| 210 | char *name, unsigned int size, |
| 211 | void *user_data HB_UNUSED) |
| 212 | { |
Behdad Esfahbod | 914b595 | 2018-11-05 22:39:50 -0500 | [diff] [blame] | 213 | const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data; |
Behdad Esfahbod | cbea7d4 | 2018-09-11 12:56:17 +0200 | [diff] [blame] | 214 | return ot_face->post->get_glyph_name (glyph, name, size); |
Khaled Hosny | 9d4d2fb | 2017-10-16 10:05:42 +0200 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | static hb_bool_t |
Khaled Hosny | d9e166f | 2017-10-18 20:49:16 +0200 | [diff] [blame] | 218 | hb_ot_get_glyph_from_name (hb_font_t *font HB_UNUSED, |
| 219 | void *font_data, |
| 220 | const char *name, int len, |
| 221 | hb_codepoint_t *glyph, |
| 222 | void *user_data HB_UNUSED) |
| 223 | { |
Behdad Esfahbod | 914b595 | 2018-11-05 22:39:50 -0500 | [diff] [blame] | 224 | const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data; |
Behdad Esfahbod | cbea7d4 | 2018-09-11 12:56:17 +0200 | [diff] [blame] | 225 | return ot_face->post->get_glyph_from_name (name, len, glyph); |
Khaled Hosny | d9e166f | 2017-10-18 20:49:16 +0200 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | static hb_bool_t |
Ebrahim Byagowi | 24b8b9b | 2018-04-23 19:03:57 +0430 | [diff] [blame] | 229 | hb_ot_get_font_h_extents (hb_font_t *font, |
Simon Cozens | 6f2e6de | 2015-10-26 16:23:22 +0900 | [diff] [blame] | 230 | void *font_data, |
| 231 | hb_font_extents_t *metrics, |
| 232 | void *user_data HB_UNUSED) |
| 233 | { |
Behdad Esfahbod | 914b595 | 2018-11-05 22:39:50 -0500 | [diff] [blame] | 234 | const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data; |
Behdad Esfahbod | 03348ce | 2018-11-05 12:59:32 -0500 | [diff] [blame] | 235 | const OT::hmtx_accelerator_t &hmtx = *ot_face->hmtx; |
Behdad Esfahbod | 13da3be | 2018-10-07 18:23:45 +0200 | [diff] [blame] | 236 | metrics->ascender = font->em_scale_y (hmtx.ascender); |
| 237 | metrics->descender = font->em_scale_y (hmtx.descender); |
| 238 | metrics->line_gap = font->em_scale_y (hmtx.line_gap); |
Behdad Esfahbod | 79e8e27 | 2017-01-23 17:55:31 -0800 | [diff] [blame] | 239 | // TODO Hook up variations. |
Behdad Esfahbod | 13da3be | 2018-10-07 18:23:45 +0200 | [diff] [blame] | 240 | return hmtx.has_font_extents; |
Simon Cozens | 6f2e6de | 2015-10-26 16:23:22 +0900 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | static hb_bool_t |
Ebrahim Byagowi | 24b8b9b | 2018-04-23 19:03:57 +0430 | [diff] [blame] | 244 | hb_ot_get_font_v_extents (hb_font_t *font, |
Simon Cozens | 6f2e6de | 2015-10-26 16:23:22 +0900 | [diff] [blame] | 245 | void *font_data, |
| 246 | hb_font_extents_t *metrics, |
| 247 | void *user_data HB_UNUSED) |
| 248 | { |
Behdad Esfahbod | 914b595 | 2018-11-05 22:39:50 -0500 | [diff] [blame] | 249 | const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data; |
Behdad Esfahbod | 03348ce | 2018-11-05 12:59:32 -0500 | [diff] [blame] | 250 | const OT::vmtx_accelerator_t &vmtx = *ot_face->vmtx; |
Behdad Esfahbod | 13da3be | 2018-10-07 18:23:45 +0200 | [diff] [blame] | 251 | metrics->ascender = font->em_scale_x (vmtx.ascender); |
| 252 | metrics->descender = font->em_scale_x (vmtx.descender); |
| 253 | metrics->line_gap = font->em_scale_x (vmtx.line_gap); |
Behdad Esfahbod | 79e8e27 | 2017-01-23 17:55:31 -0800 | [diff] [blame] | 254 | // TODO Hook up variations. |
Behdad Esfahbod | 13da3be | 2018-10-07 18:23:45 +0200 | [diff] [blame] | 255 | return vmtx.has_font_extents; |
Simon Cozens | 6f2e6de | 2015-10-26 16:23:22 +0900 | [diff] [blame] | 256 | } |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 257 | |
Behdad Esfahbod | b89c7fd | 2018-11-21 12:32:48 -0500 | [diff] [blame] | 258 | #if HB_USE_ATEXIT |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 259 | static void free_static_ot_funcs (); |
Behdad Esfahbod | 75ea2da | 2015-11-04 20:43:59 -0800 | [diff] [blame] | 260 | #endif |
| 261 | |
Behdad Esfahbod | 856db4c | 2018-10-07 18:21:15 +0200 | [diff] [blame] | 262 | static struct hb_ot_font_funcs_lazy_loader_t : hb_font_funcs_lazy_loader_t<hb_ot_font_funcs_lazy_loader_t> |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 263 | { |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 264 | static hb_font_funcs_t *create () |
Behdad Esfahbod | 75ea2da | 2015-11-04 20:43:59 -0800 | [diff] [blame] | 265 | { |
Behdad Esfahbod | c7ca30a | 2018-08-12 13:46:53 -0700 | [diff] [blame] | 266 | hb_font_funcs_t *funcs = hb_font_funcs_create (); |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 267 | |
Behdad Esfahbod | dbdbfe3 | 2017-10-15 12:11:08 +0200 | [diff] [blame] | 268 | hb_font_funcs_set_font_h_extents_func (funcs, hb_ot_get_font_h_extents, nullptr, nullptr); |
| 269 | hb_font_funcs_set_font_v_extents_func (funcs, hb_ot_get_font_v_extents, nullptr, nullptr); |
| 270 | hb_font_funcs_set_nominal_glyph_func (funcs, hb_ot_get_nominal_glyph, nullptr, nullptr); |
Behdad Esfahbod | ec84460 | 2018-10-09 15:07:04 -0400 | [diff] [blame] | 271 | hb_font_funcs_set_nominal_glyphs_func (funcs, hb_ot_get_nominal_glyphs, nullptr, nullptr); |
Behdad Esfahbod | dbdbfe3 | 2017-10-15 12:11:08 +0200 | [diff] [blame] | 272 | hb_font_funcs_set_variation_glyph_func (funcs, hb_ot_get_variation_glyph, nullptr, nullptr); |
Behdad Esfahbod | d8a67da | 2018-09-11 12:55:54 +0200 | [diff] [blame] | 273 | hb_font_funcs_set_glyph_h_advances_func (funcs, hb_ot_get_glyph_h_advances, nullptr, nullptr); |
Behdad Esfahbod | d8a67da | 2018-09-11 12:55:54 +0200 | [diff] [blame] | 274 | hb_font_funcs_set_glyph_v_advances_func (funcs, hb_ot_get_glyph_v_advances, nullptr, nullptr); |
Behdad Esfahbod | dbdbfe3 | 2017-10-15 12:11:08 +0200 | [diff] [blame] | 275 | //hb_font_funcs_set_glyph_h_origin_func (funcs, hb_ot_get_glyph_h_origin, nullptr, nullptr); |
Behdad Esfahbod | 8dc6296 | 2018-10-15 01:09:05 -0700 | [diff] [blame] | 276 | hb_font_funcs_set_glyph_v_origin_func (funcs, hb_ot_get_glyph_v_origin, nullptr, nullptr); |
Behdad Esfahbod | dbdbfe3 | 2017-10-15 12:11:08 +0200 | [diff] [blame] | 277 | hb_font_funcs_set_glyph_extents_func (funcs, hb_ot_get_glyph_extents, nullptr, nullptr); |
Behdad Esfahbod | 7b40876 | 2017-11-14 20:22:05 -0800 | [diff] [blame] | 278 | //hb_font_funcs_set_glyph_contour_point_func (funcs, hb_ot_get_glyph_contour_point, nullptr, nullptr); |
Khaled Hosny | 9d4d2fb | 2017-10-16 10:05:42 +0200 | [diff] [blame] | 279 | hb_font_funcs_set_glyph_name_func (funcs, hb_ot_get_glyph_name, nullptr, nullptr); |
Khaled Hosny | d9e166f | 2017-10-18 20:49:16 +0200 | [diff] [blame] | 280 | hb_font_funcs_set_glyph_from_name_func (funcs, hb_ot_get_glyph_from_name, nullptr, nullptr); |
Behdad Esfahbod | 75ea2da | 2015-11-04 20:43:59 -0800 | [diff] [blame] | 281 | |
| 282 | hb_font_funcs_make_immutable (funcs); |
| 283 | |
Behdad Esfahbod | b89c7fd | 2018-11-21 12:32:48 -0500 | [diff] [blame] | 284 | #if HB_USE_ATEXIT |
Behdad Esfahbod | c7ca30a | 2018-08-12 13:46:53 -0700 | [diff] [blame] | 285 | atexit (free_static_ot_funcs); |
| 286 | #endif |
| 287 | |
| 288 | return funcs; |
| 289 | } |
| 290 | } static_ot_funcs; |
Behdad Esfahbod | 75ea2da | 2015-11-04 20:43:59 -0800 | [diff] [blame] | 291 | |
Behdad Esfahbod | b89c7fd | 2018-11-21 12:32:48 -0500 | [diff] [blame] | 292 | #if HB_USE_ATEXIT |
Behdad Esfahbod | c7ca30a | 2018-08-12 13:46:53 -0700 | [diff] [blame] | 293 | static |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 294 | void free_static_ot_funcs () |
Behdad Esfahbod | c7ca30a | 2018-08-12 13:46:53 -0700 | [diff] [blame] | 295 | { |
Behdad Esfahbod | 7bd508a | 2018-08-12 17:19:55 -0700 | [diff] [blame] | 296 | static_ot_funcs.free_instance (); |
Behdad Esfahbod | c7ca30a | 2018-08-12 13:46:53 -0700 | [diff] [blame] | 297 | } |
Behdad Esfahbod | 75ea2da | 2015-11-04 20:43:59 -0800 | [diff] [blame] | 298 | #endif |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 299 | |
Behdad Esfahbod | c7ca30a | 2018-08-12 13:46:53 -0700 | [diff] [blame] | 300 | static hb_font_funcs_t * |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 301 | _hb_ot_get_font_funcs () |
Behdad Esfahbod | c7ca30a | 2018-08-12 13:46:53 -0700 | [diff] [blame] | 302 | { |
Behdad Esfahbod | 53442be | 2018-08-12 16:20:11 -0700 | [diff] [blame] | 303 | return static_ot_funcs.get_unconst (); |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | |
Sascha Brawer | 01c3a88 | 2015-06-01 13:22:01 +0200 | [diff] [blame] | 307 | /** |
Behdad Esfahbod | 35d1858 | 2015-11-26 19:30:37 -0500 | [diff] [blame] | 308 | * hb_ot_font_set_funcs: |
| 309 | * |
Sascha Brawer | 01c3a88 | 2015-06-01 13:22:01 +0200 | [diff] [blame] | 310 | * Since: 0.9.28 |
| 311 | **/ |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 312 | void |
| 313 | hb_ot_font_set_funcs (hb_font_t *font) |
| 314 | { |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 315 | hb_font_set_funcs (font, |
| 316 | _hb_ot_get_font_funcs (), |
Behdad Esfahbod | 0fe7a74 | 2018-11-05 23:08:33 -0500 | [diff] [blame] | 317 | &font->face->table, |
Behdad Esfahbod | 1c48a7e | 2018-08-25 23:54:06 -0700 | [diff] [blame] | 318 | nullptr); |
Behdad Esfahbod | 9036484 | 2014-03-24 14:26:36 -0700 | [diff] [blame] | 319 | } |