Home
last modified time | relevance | path

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

/external/harfbuzz_ng/src/
Dhb-ft.cc75 FT_Face ft_face; member
85 _hb_ft_font_create (FT_Face ft_face, bool symbol, bool unref) in _hb_ft_font_create() argument
93 ft_font->ft_face = ft_face; in _hb_ft_font_create()
119 _hb_ft_face_destroy (ft_font->ft_face); in _hb_ft_font_destroy()
177 return ft_font->ft_face; in hb_ft_font_get_face()
191 unsigned int g = FT_Get_Char_Index (ft_font->ft_face, unicode); in hb_ft_get_nominal_glyph()
202 g = FT_Get_Char_Index (ft_font->ft_face, 0xF000u + unicode); in hb_ft_get_nominal_glyph()
228 done < count && (*first_glyph = FT_Get_Char_Index (ft_font->ft_face, *first_unicode)); in hb_ft_get_nominal_glyphs()
250 unsigned int g = FT_Face_GetCharVariantIndex (ft_font->ft_face, unicode, variation_selector); in hb_ft_get_variation_glyph()
270 FT_Face ft_face = ft_font->ft_face; in hb_ft_get_glyph_h_advances() local
[all …]
Dhb-ft.h63 hb_ft_face_create (FT_Face ft_face,
75 hb_ft_face_create_cached (FT_Face ft_face);
85 hb_ft_face_create_referenced (FT_Face ft_face);
102 hb_ft_font_create (FT_Face ft_face,
108 hb_ft_font_create_referenced (FT_Face ft_face);
Dtest-ot-color.cc312 FT_Face ft_face; in main() local
313 FT_New_Face (library, argv[1], 0, &ft_face); in main()
314 cairo_face = cairo_ft_font_face_create_for_ft_face (ft_face, 0); in main()
/external/harfbuzz_ng/util/
Dhelper-cairo.cc84 FT_Face ft_face = nullptr;//hb_ft_font_get_face (font); in helper_cairo_create_scaled_font() local
85 if (!ft_face) in helper_cairo_create_scaled_font()
102 &ft_face)) in helper_cairo_create_scaled_font()
105 if (!ft_face) in helper_cairo_create_scaled_font()
124 FT_Set_Var_Blend_Coordinates (ft_face, num_coords, ft_coords); in helper_cairo_create_scaled_font()
130 cairo_face = cairo_ft_font_face_create_for_ft_face (ft_face, font_opts->ft_load_flags); in helper_cairo_create_scaled_font()
166 FT_Face ft_face = cairo_ft_scaled_font_lock_face (scaled_font); in helper_cairo_scaled_font_has_color() local
167 if (ft_face) in helper_cairo_scaled_font_has_color()
169 if (FT_HAS_COLOR (ft_face)) in helper_cairo_scaled_font_has_color()
/external/harfbuzz_ng/test/api/
Dtest-ot-math.c36 static FT_Face ft_face; variable
64 if ((ft_error = FT_New_Face (ft_library, path, 0, &ft_face))) { in openFont()
70 if ((ft_error = FT_Set_Char_Size (ft_face, 2000, 1000, 0, 0))) in openFont()
72 hb_font = hb_ft_font_create (ft_face, NULL); in openFont()
81 FT_Done_Face (ft_face); in closeFont()
84 ft_face = NULL; in closeFont()