diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-07-18 16:22:35 -0700 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-07-18 16:23:19 -0700 |
commit | c80f0fcf71fd67c6b06039de37bc67e3ecace931 (patch) | |
tree | 461cc017dbd4a3b7392aa232ff117ed8728a7652 /pango/pangocoretext.c | |
parent | fdd9e9e707e42131e7749d8674c59f57e0923a35 (diff) | |
download | pango-c80f0fcf71fd67c6b06039de37bc67e3ecace931.tar.gz |
Make hb fonts immutable in the frontend
It makes more sense to do this in the frontend
that hands the objects out, rather than in each
backend implementation.
Diffstat (limited to 'pango/pangocoretext.c')
-rw-r--r-- | pango/pangocoretext.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pango/pangocoretext.c b/pango/pangocoretext.c index 70fd67d4..5faac64c 100644 --- a/pango/pangocoretext.c +++ b/pango/pangocoretext.c @@ -223,8 +223,6 @@ pango_core_text_font_create_hb_font (PangoFont *font) hb_font = hb_coretext_font_create (ctfont->priv->font_ref); hb_font_set_scale (hb_font, size, size); - hb_font_make_immutable (hb_font); - return hb_font; } |