[pango/fix-FcConfig-uses: 1/2] Use the right FcConfig for FcRenderPrepare
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pango/fix-FcConfig-uses: 1/2] Use the right FcConfig for FcRenderPrepare
- Date: Mon, 22 Feb 2021 13:19:51 +0000 (UTC)
commit 479f99dc3bf4c7e74a77ebbc558847b8fb39f002
Author: Matthias Clasen <mclasen redhat com>
Date: Wed Aug 19 07:42:31 2020 -0400
Use the right FcConfig for FcRenderPrepare
Passing NULL for a config argument in a fontconfig
api means we are using the default configuration,
which may be different from the one the fontmap
is supposed to be using.
Fix an instance of this in pango_fc_fontset_load_next_font.
pango/pangofc-fontmap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/pango/pangofc-fontmap.c b/pango/pangofc-fontmap.c
index fd17309d..2009c46a 100644
--- a/pango/pangofc-fontmap.c
+++ b/pango/pangofc-fontmap.c
@@ -978,7 +978,7 @@ pango_fc_fontset_load_next_font (PangoFcFontset *fontset)
if (prepare)
{
- font_pattern = FcFontRenderPrepare (NULL, pattern, font_pattern);
+ font_pattern = FcFontRenderPrepare (fontset->key->fontmap->priv->config, pattern, font_pattern);
if (G_UNLIKELY (!font_pattern))
return NULL;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]