Bug 739096 - Add a synth_flags parameter to cairo_ft_font_face_create_for_ft_face. r=jrmuizel

Differential Revision: https://phabricator.services.mozilla.com/D112587
This commit is contained in:
Jonathan Kew 2021-04-28 18:06:52 +00:00
Родитель 3bbecd5897
Коммит 68fd445cdb
2 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -3736,7 +3736,8 @@ cairo_ft_font_face_create_for_pattern (FcPattern *pattern)
**/
cairo_font_face_t *
cairo_ft_font_face_create_for_ft_face (FT_Face face,
int load_flags)
int load_flags,
unsigned int synth_flags)
{
cairo_ft_unscaled_font_t *unscaled;
cairo_font_face_t *font_face;
@ -3748,7 +3749,7 @@ cairo_ft_font_face_create_for_ft_face (FT_Face face,
return (cairo_font_face_t *)&_cairo_font_face_nil;
ft_options.load_flags = load_flags;
ft_options.synth_flags = 0;
ft_options.synth_flags = synth_flags;
_cairo_font_options_init_default (&ft_options.base);
font_face = _cairo_ft_font_face_create (unscaled, &ft_options);

Просмотреть файл

@ -54,7 +54,8 @@ CAIRO_BEGIN_DECLS
cairo_public cairo_font_face_t *
cairo_ft_font_face_create_for_ft_face (FT_Face face,
int load_flags);
int load_flags,
unsigned int synth_flags);
/**
* cairo_ft_synthesize_t: