Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ft.cc94 hb_ft_font_t *ft_font = (hb_ft_font_t *) hb_calloc (1, sizeof (hb_ft_font_t)); in _hb_ft_font_create() local
95 if (unlikely (!ft_font)) return nullptr; in _hb_ft_font_create()
97 ft_font->lock.init (); in _hb_ft_font_create()
98 ft_font->ft_face = ft_face; in _hb_ft_font_create()
99 ft_font->symbol = symbol; in _hb_ft_font_create()
100 ft_font->unref = unref; in _hb_ft_font_create()
102 ft_font->load_flags = FT_LOAD_DEFAULT | FT_LOAD_NO_HINTING; in _hb_ft_font_create()
104 ft_font->cached_x_scale = 0; in _hb_ft_font_create()
105 ft_font->advance_cache.init (); in _hb_ft_font_create()
107 return ft_font; in _hb_ft_font_create()
[all …]
/third_party/chromium/patch/
D0001-cve.patch32133 + const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
32134 + hb_lock_t lock (ft_font->lock);
32135 + FT_Face ft_face = ft_font->ft_face;
32138 + FT_LOAD_NO_BITMAP | ft_font->load_flags)))