Home
last modified time | relevance | path

Searched refs:ft_font (Results 1 – 1 of 1) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-ft.cc79 hb_ft_font_t *ft_font = (hb_ft_font_t *) calloc (1, sizeof (hb_ft_font_t)); in _hb_ft_font_create() local
81 if (unlikely (!ft_font)) in _hb_ft_font_create()
84 ft_font->ft_face = ft_face; in _hb_ft_font_create()
85 ft_font->unref = unref; in _hb_ft_font_create()
87 ft_font->load_flags = FT_LOAD_DEFAULT | FT_LOAD_NO_HINTING; in _hb_ft_font_create()
89 return ft_font; in _hb_ft_font_create()
93 _hb_ft_font_destroy (hb_ft_font_t *ft_font) in _hb_ft_font_destroy() argument
95 if (ft_font->unref) in _hb_ft_font_destroy()
96 FT_Done_Face (ft_font->ft_face); in _hb_ft_font_destroy()
98 free (ft_font); in _hb_ft_font_destroy()
[all …]