blob: 0707a2ff8c6937bc778f7da742af76a71fa34520 [file] [log] [blame]
Behdad Esfahbod90364842014-03-24 14:26:36 -07001/*
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 Esfahbodc77ae402018-08-25 22:36:36 -070027#include "hb.hh"
Behdad Esfahbod90364842014-03-24 14:26:36 -070028
29#include "hb-ot.h"
30
Behdad Esfahbodc77ae402018-08-25 22:36:36 -070031#include "hb-font.hh"
32#include "hb-machinery.hh"
Behdad Esfahbod1c48a7e2018-08-25 23:54:06 -070033#include "hb-ot-face.hh"
Behdad Esfahbod90364842014-03-24 14:26:36 -070034
Behdad Esfahbod41ca1fb2014-05-09 15:35:56 -040035#include "hb-ot-cmap-table.hh"
Behdad Esfahbod3a0b3a22018-08-26 15:11:24 -070036#include "hb-ot-glyf-table.hh"
Michiharu Ariza8af96902018-08-29 13:26:17 -070037#include "hb-ot-cff1-table.hh"
38#include "hb-ot-cff2-table.hh"
Behdad Esfahbod3a0b3a22018-08-26 15:11:24 -070039#include "hb-ot-hmtx-table.hh"
Ebrahim Byagowi7867c2b2018-11-14 22:13:50 +033040#include "hb-ot-os2-table.hh"
Behdad Esfahbod3a0b3a22018-08-26 15:11:24 -070041#include "hb-ot-post-table.hh"
Ebrahim Byagowi7867c2b2018-11-14 22:13:50 +033042#include "hb-ot-stat-table.hh" // Just so we compile it; unused otherwise.
Behdad Esfahbod48ed5982018-10-23 02:19:32 -070043#include "hb-ot-vorg-table.hh"
Ebrahim Byagowi0ef6ab22018-03-04 02:47:26 +033044#include "hb-ot-color-cbdt-table.hh"
Ebrahim Byagowi38706a02018-10-28 23:19:04 +033045#include "hb-ot-color-sbix-table.hh"
Behdad Esfahbod3a0b3a22018-08-26 15:11:24 -070046
Behdad Esfahbod90364842014-03-24 14:26:36 -070047
Behdad Esfahbod80d9a422018-10-27 04:58:32 -070048/**
49 * SECTION:hb-ot-font
50 * @title: hb-ot-font
51 * @short_description: OpenType font implementation
52 * @include: hb-ot.h
53 *
Evgeniy Reiznerd29c8422019-02-19 18:35:00 +020054 * Functions for using OpenType fonts with hb_shape(). Note that fonts returned
Behdad Esfahbodd6d6f3b2018-10-28 11:41:33 -070055 * by hb_font_create() default to using these functions, so most clients would
56 * never need to call these functions directly.
Behdad Esfahbod80d9a422018-10-27 04:58:32 -070057 **/
Behdad Esfahbod90364842014-03-24 14:26:36 -070058
Behdad Esfahbod90364842014-03-24 14:26:36 -070059
Behdad Esfahbod90364842014-03-24 14:26:36 -070060static hb_bool_t
Behdad Esfahbod8b5bc142016-02-24 19:05:23 +090061hb_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 Esfahbod90364842014-03-24 14:26:36 -070066{
Behdad Esfahbod914b5952018-11-05 22:39:50 -050067 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
Behdad Esfahbod03348ce2018-11-05 12:59:32 -050068 return ot_face->cmap->get_nominal_glyph (unicode, glyph);
Behdad Esfahbod8b5bc142016-02-24 19:05:23 +090069}
70
Behdad Esfahbodec844602018-10-09 15:07:04 -040071static unsigned int
72hb_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 Esfahbod914b5952018-11-05 22:39:50 -050081 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
Behdad Esfahbod56ba9982018-11-05 19:49:54 -050082 return ot_face->cmap->get_nominal_glyphs (count,
83 first_unicode, unicode_stride,
84 first_glyph, glyph_stride);
Behdad Esfahbod8b5bc142016-02-24 19:05:23 +090085}
86
87static hb_bool_t
88hb_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 Esfahbod914b5952018-11-05 22:39:50 -050095 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
Behdad Esfahbod03348ce2018-11-05 12:59:32 -050096 return ot_face->cmap->get_variation_glyph (unicode, variation_selector, glyph);
Behdad Esfahbod90364842014-03-24 14:26:36 -070097}
98
Behdad Esfahbodd8a67da2018-09-11 12:55:54 +020099static void
100hb_ot_get_glyph_h_advances (hb_font_t* font, void* font_data,
101 unsigned count,
Behdad Esfahbodbee93e22018-10-09 08:01:49 -0400102 const hb_codepoint_t *first_glyph,
Behdad Esfahbodd8a67da2018-09-11 12:55:54 +0200103 unsigned glyph_stride,
104 hb_position_t *first_advance,
105 unsigned advance_stride,
106 void *user_data HB_UNUSED)
107{
Behdad Esfahbod914b5952018-11-05 22:39:50 -0500108 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
Behdad Esfahbod03348ce2018-11-05 12:59:32 -0500109 const OT::hmtx_accelerator_t &hmtx = *ot_face->hmtx;
Behdad Esfahbodd8a67da2018-09-11 12:55:54 +0200110
111 for (unsigned int i = 0; i < count; i++)
112 {
113 *first_advance = font->em_scale_x (hmtx.get_advance (*first_glyph, font));
Behdad Esfahbod447323b2019-01-22 12:45:40 +0100114 first_glyph = &StructAtOffsetUnaligned<hb_codepoint_t> (first_glyph, glyph_stride);
115 first_advance = &StructAtOffsetUnaligned<hb_position_t> (first_advance, advance_stride);
Behdad Esfahbodd8a67da2018-09-11 12:55:54 +0200116 }
Behdad Esfahbod90364842014-03-24 14:26:36 -0700117}
118
Behdad Esfahbodd8a67da2018-09-11 12:55:54 +0200119static void
120hb_ot_get_glyph_v_advances (hb_font_t* font, void* font_data,
121 unsigned count,
Behdad Esfahbodbee93e22018-10-09 08:01:49 -0400122 const hb_codepoint_t *first_glyph,
Behdad Esfahbodd8a67da2018-09-11 12:55:54 +0200123 unsigned glyph_stride,
124 hb_position_t *first_advance,
125 unsigned advance_stride,
126 void *user_data HB_UNUSED)
127{
Behdad Esfahbod914b5952018-11-05 22:39:50 -0500128 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
Behdad Esfahbod03348ce2018-11-05 12:59:32 -0500129 const OT::vmtx_accelerator_t &vmtx = *ot_face->vmtx;
Behdad Esfahbodd8a67da2018-09-11 12:55:54 +0200130
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 Esfahbod447323b2019-01-22 12:45:40 +0100134 first_glyph = &StructAtOffsetUnaligned<hb_codepoint_t> (first_glyph, glyph_stride);
135 first_advance = &StructAtOffsetUnaligned<hb_position_t> (first_advance, advance_stride);
Behdad Esfahbodd8a67da2018-09-11 12:55:54 +0200136 }
Behdad Esfahbod90364842014-03-24 14:26:36 -0700137}
138
139static hb_bool_t
Behdad Esfahbod8dc62962018-10-15 01:09:05 -0700140hb_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 Esfahbod914b5952018-11-05 22:39:50 -0500147 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
Behdad Esfahbod8dc62962018-10-15 01:09:05 -0700148
149 *x = font->get_glyph_h_advance (glyph) / 2;
150
Behdad Esfahbodd7e27cd2019-06-18 14:38:05 -0700151#ifndef HB_NO_OT_FONT_CFF
Behdad Esfahbod03348ce2018-11-05 12:59:32 -0500152 const OT::VORG &VORG = *ot_face->VORG;
Behdad Esfahbod48ed5982018-10-23 02:19:32 -0700153 if (VORG.has_data ())
154 {
155 *y = font->em_scale_y (VORG.get_y_origin (glyph));
156 return true;
157 }
Behdad Esfahbodd7e27cd2019-06-18 14:38:05 -0700158#endif
Behdad Esfahbod48ed5982018-10-23 02:19:32 -0700159
Behdad Esfahbod8dc62962018-10-15 01:09:05 -0700160 hb_glyph_extents_t extents = {0};
Behdad Esfahbod48ed5982018-10-23 02:19:32 -0700161 if (ot_face->glyf->get_extents (glyph, &extents))
Behdad Esfahbod8dc62962018-10-15 01:09:05 -0700162 {
Behdad Esfahbod03348ce2018-11-05 12:59:32 -0500163 const OT::vmtx_accelerator_t &vmtx = *ot_face->vmtx;
Behdad Esfahbod8dc62962018-10-15 01:09:05 -0700164 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
176static hb_bool_t
Ebrahim Byagowi24b8b9b2018-04-23 19:03:57 +0430177hb_ot_get_glyph_extents (hb_font_t *font,
Behdad Esfahbod90364842014-03-24 14:26:36 -0700178 void *font_data,
179 hb_codepoint_t glyph,
180 hb_glyph_extents_t *extents,
181 void *user_data HB_UNUSED)
182{
Behdad Esfahbod914b5952018-11-05 22:39:50 -0500183 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
Behdad Esfahbod32d3c062019-05-11 11:59:18 -0700184 bool ret = false;
185
186#if !defined(HB_NO_OT_FONT_BITMAP) && !defined(HB_NO_COLOR)
Behdad Esfahboda6048e42019-05-11 12:11:22 -0700187 if (!ret) ret = ot_face->sbix->get_extents (font, glyph, extents);
Behdad Esfahbod32d3c062019-05-11 11:59:18 -0700188#endif
189 if (!ret) ret = ot_face->glyf->get_extents (glyph, extents);
Behdad Esfahbod227d85e2019-05-10 23:15:58 -0700190#ifndef HB_NO_OT_FONT_CFF
Behdad Esfahbod32d3c062019-05-11 11:59:18 -0700191 if (!ret) ret = ot_face->cff1->get_extents (glyph, extents);
192 if (!ret) ret = ot_face->cff2->get_extents (font, glyph, extents);
Behdad Esfahbod160c4d82019-04-12 14:57:49 -0400193#endif
Behdad Esfahbod32d3c062019-05-11 11:59:18 -0700194#if !defined(HB_NO_OT_FONT_BITMAP) && !defined(HB_NO_COLOR)
195 if (!ret) ret = ot_face->CBDT->get_extents (font, glyph, extents);
Behdad Esfahbod60a58aa2019-04-12 14:58:53 -0400196#endif
Behdad Esfahbod32d3c062019-05-11 11:59:18 -0700197
Behdad Esfahbod79e8e272017-01-23 17:55:31 -0800198 // TODO Hook up side-bearings variations.
Behdad Esfahbodb50fcfa2015-08-23 14:42:20 +0100199 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 Esfahbod90364842014-03-24 14:26:36 -0700204}
205
Simon Cozens6f2e6de2015-10-26 16:23:22 +0900206static hb_bool_t
Khaled Hosny9d4d2fb2017-10-16 10:05:42 +0200207hb_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 Esfahbod914b5952018-11-05 22:39:50 -0500213 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
Behdad Esfahbodcbea7d42018-09-11 12:56:17 +0200214 return ot_face->post->get_glyph_name (glyph, name, size);
Khaled Hosny9d4d2fb2017-10-16 10:05:42 +0200215}
216
217static hb_bool_t
Khaled Hosnyd9e166f2017-10-18 20:49:16 +0200218hb_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 Esfahbod914b5952018-11-05 22:39:50 -0500224 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
Behdad Esfahbodcbea7d42018-09-11 12:56:17 +0200225 return ot_face->post->get_glyph_from_name (name, len, glyph);
Khaled Hosnyd9e166f2017-10-18 20:49:16 +0200226}
227
228static hb_bool_t
Ebrahim Byagowi24b8b9b2018-04-23 19:03:57 +0430229hb_ot_get_font_h_extents (hb_font_t *font,
Simon Cozens6f2e6de2015-10-26 16:23:22 +0900230 void *font_data,
231 hb_font_extents_t *metrics,
232 void *user_data HB_UNUSED)
233{
Behdad Esfahbod914b5952018-11-05 22:39:50 -0500234 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
Behdad Esfahbod03348ce2018-11-05 12:59:32 -0500235 const OT::hmtx_accelerator_t &hmtx = *ot_face->hmtx;
Behdad Esfahbod13da3be2018-10-07 18:23:45 +0200236 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 Esfahbod79e8e272017-01-23 17:55:31 -0800239 // TODO Hook up variations.
Behdad Esfahbod13da3be2018-10-07 18:23:45 +0200240 return hmtx.has_font_extents;
Simon Cozens6f2e6de2015-10-26 16:23:22 +0900241}
242
243static hb_bool_t
Ebrahim Byagowi24b8b9b2018-04-23 19:03:57 +0430244hb_ot_get_font_v_extents (hb_font_t *font,
Simon Cozens6f2e6de2015-10-26 16:23:22 +0900245 void *font_data,
246 hb_font_extents_t *metrics,
247 void *user_data HB_UNUSED)
248{
Behdad Esfahbod914b5952018-11-05 22:39:50 -0500249 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
Behdad Esfahbod03348ce2018-11-05 12:59:32 -0500250 const OT::vmtx_accelerator_t &vmtx = *ot_face->vmtx;
Behdad Esfahbod13da3be2018-10-07 18:23:45 +0200251 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 Esfahbod79e8e272017-01-23 17:55:31 -0800254 // TODO Hook up variations.
Behdad Esfahbod13da3be2018-10-07 18:23:45 +0200255 return vmtx.has_font_extents;
Simon Cozens6f2e6de2015-10-26 16:23:22 +0900256}
Behdad Esfahbod90364842014-03-24 14:26:36 -0700257
Behdad Esfahbodb89c7fd2018-11-21 12:32:48 -0500258#if HB_USE_ATEXIT
Ebrahim Byagowie4120082018-12-17 21:31:01 +0330259static void free_static_ot_funcs ();
Behdad Esfahbod75ea2da2015-11-04 20:43:59 -0800260#endif
261
Behdad Esfahbod856db4c2018-10-07 18:21:15 +0200262static struct hb_ot_font_funcs_lazy_loader_t : hb_font_funcs_lazy_loader_t<hb_ot_font_funcs_lazy_loader_t>
Behdad Esfahbod90364842014-03-24 14:26:36 -0700263{
Ebrahim Byagowie4120082018-12-17 21:31:01 +0330264 static hb_font_funcs_t *create ()
Behdad Esfahbod75ea2da2015-11-04 20:43:59 -0800265 {
Behdad Esfahbodc7ca30a2018-08-12 13:46:53 -0700266 hb_font_funcs_t *funcs = hb_font_funcs_create ();
Behdad Esfahbod90364842014-03-24 14:26:36 -0700267
Behdad Esfahboddbdbfe32017-10-15 12:11:08 +0200268 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 Esfahbodec844602018-10-09 15:07:04 -0400271 hb_font_funcs_set_nominal_glyphs_func (funcs, hb_ot_get_nominal_glyphs, nullptr, nullptr);
Behdad Esfahboddbdbfe32017-10-15 12:11:08 +0200272 hb_font_funcs_set_variation_glyph_func (funcs, hb_ot_get_variation_glyph, nullptr, nullptr);
Behdad Esfahbodd8a67da2018-09-11 12:55:54 +0200273 hb_font_funcs_set_glyph_h_advances_func (funcs, hb_ot_get_glyph_h_advances, nullptr, nullptr);
Behdad Esfahbodd8a67da2018-09-11 12:55:54 +0200274 hb_font_funcs_set_glyph_v_advances_func (funcs, hb_ot_get_glyph_v_advances, nullptr, nullptr);
Behdad Esfahboddbdbfe32017-10-15 12:11:08 +0200275 //hb_font_funcs_set_glyph_h_origin_func (funcs, hb_ot_get_glyph_h_origin, nullptr, nullptr);
Behdad Esfahbod8dc62962018-10-15 01:09:05 -0700276 hb_font_funcs_set_glyph_v_origin_func (funcs, hb_ot_get_glyph_v_origin, nullptr, nullptr);
Behdad Esfahboddbdbfe32017-10-15 12:11:08 +0200277 hb_font_funcs_set_glyph_extents_func (funcs, hb_ot_get_glyph_extents, nullptr, nullptr);
Behdad Esfahbod7b408762017-11-14 20:22:05 -0800278 //hb_font_funcs_set_glyph_contour_point_func (funcs, hb_ot_get_glyph_contour_point, nullptr, nullptr);
Khaled Hosny9d4d2fb2017-10-16 10:05:42 +0200279 hb_font_funcs_set_glyph_name_func (funcs, hb_ot_get_glyph_name, nullptr, nullptr);
Khaled Hosnyd9e166f2017-10-18 20:49:16 +0200280 hb_font_funcs_set_glyph_from_name_func (funcs, hb_ot_get_glyph_from_name, nullptr, nullptr);
Behdad Esfahbod75ea2da2015-11-04 20:43:59 -0800281
282 hb_font_funcs_make_immutable (funcs);
283
Behdad Esfahbodb89c7fd2018-11-21 12:32:48 -0500284#if HB_USE_ATEXIT
Behdad Esfahbodc7ca30a2018-08-12 13:46:53 -0700285 atexit (free_static_ot_funcs);
286#endif
287
288 return funcs;
289 }
290} static_ot_funcs;
Behdad Esfahbod75ea2da2015-11-04 20:43:59 -0800291
Behdad Esfahbodb89c7fd2018-11-21 12:32:48 -0500292#if HB_USE_ATEXIT
Behdad Esfahbodc7ca30a2018-08-12 13:46:53 -0700293static
Ebrahim Byagowie4120082018-12-17 21:31:01 +0330294void free_static_ot_funcs ()
Behdad Esfahbodc7ca30a2018-08-12 13:46:53 -0700295{
Behdad Esfahbod7bd508a2018-08-12 17:19:55 -0700296 static_ot_funcs.free_instance ();
Behdad Esfahbodc7ca30a2018-08-12 13:46:53 -0700297}
Behdad Esfahbod75ea2da2015-11-04 20:43:59 -0800298#endif
Behdad Esfahbod90364842014-03-24 14:26:36 -0700299
Behdad Esfahbodc7ca30a2018-08-12 13:46:53 -0700300static hb_font_funcs_t *
Ebrahim Byagowie4120082018-12-17 21:31:01 +0330301_hb_ot_get_font_funcs ()
Behdad Esfahbodc7ca30a2018-08-12 13:46:53 -0700302{
Behdad Esfahbod53442be2018-08-12 16:20:11 -0700303 return static_ot_funcs.get_unconst ();
Behdad Esfahbod90364842014-03-24 14:26:36 -0700304}
305
306
Sascha Brawer01c3a882015-06-01 13:22:01 +0200307/**
Behdad Esfahbod35d18582015-11-26 19:30:37 -0500308 * hb_ot_font_set_funcs:
309 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200310 * Since: 0.9.28
311 **/
Behdad Esfahbod90364842014-03-24 14:26:36 -0700312void
313hb_ot_font_set_funcs (hb_font_t *font)
314{
Behdad Esfahbod90364842014-03-24 14:26:36 -0700315 hb_font_set_funcs (font,
316 _hb_ot_get_font_funcs (),
Behdad Esfahbod0fe7a742018-11-05 23:08:33 -0500317 &font->face->table,
Behdad Esfahbod1c48a7e2018-08-25 23:54:06 -0700318 nullptr);
Behdad Esfahbod90364842014-03-24 14:26:36 -0700319}