Searched defs:ft_face (Results 1 - 1 of 1) sorted by relevance

/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-mkfont.c1151 FT_Face ft_face; local
1155 err = FT_New_Face (ft_lib, argv[optind], font_index, &ft_face);
1168 if ((! font_info.name) && (ft_face->family_name))
1169 font_info.name = xstrdup (ft_face->family_name);
1174 if ((ft_face->face_flags & FT_FACE_FLAG_SCALABLE) ||
1175 (! ft_face->num_fixed_sizes))
1178 size = ft_face->available_sizes[0].height;
1181 font_info.style = ft_face->style_flags;
1184 if (FT_Set_Pixel_Sizes (ft_face, size, size))
1186 add_font (&font_info, ft_face, file_forma
[all...]

Completed in 17 milliseconds