Lines Matching full:font
33 #include <graphite2/Font.h>
42 HB_SHAPER_DATA_ENSURE_DECLARE(graphite2, font)
153 * shaper font data
162 _hb_graphite2_shaper_font_data_create (hb_font_t *font)
164 if (unlikely (!hb_graphite2_shaper_face_data_ensure (font->face))) return NULL;
166 hb_face_t *face = font->face;
169 return gr_make_font_with_advance_fn (font->x_scale, font, &hb_graphite2_get_advance, face_data->grface);
179 hb_graphite2_font_get_gr_font (hb_font_t *font)
181 if (unlikely (!hb_graphite2_shaper_font_data_ensure (font))) return NULL;
182 return HB_SHAPER_DATA_GET (font);
219 hb_font_t *font,
224 hb_face_t *face = font->face;
226 gr_font *grfont = HB_SHAPER_DATA_GET (font);