From: YAMAMOTO Mitsuharu Date: Fri, 23 Sep 2022 05:17:12 +0000 (+0900) Subject: Fix shaping with bitmap-only fonts on HarfBuzz 5.2.0 (Bug#57976) X-Git-Tag: emacs-28.3-rc1~63 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=60ac12d21f;p=emacs.git Fix shaping with bitmap-only fonts on HarfBuzz 5.2.0 (Bug#57976) * src/ftcrfont.c (ftcrhbfont_begin_hb_font): Undo last change for HarfBuzz 5.2.0. --- diff --git a/src/ftcrfont.c b/src/ftcrfont.c index d5d3e440af6..97b68ac0137 100644 --- a/src/ftcrfont.c +++ b/src/ftcrfont.c @@ -570,8 +570,12 @@ ftcrhbfont_begin_hb_font (struct font *font, double *position_unit) hb_font_t *hb_font = fthbfont_begin_hb_font (font, position_unit); /* HarfBuzz 5 correctly scales bitmap-only fonts without position unit adjustment. - (https://github.com/harfbuzz/harfbuzz/issues/489) */ - if (!hb_version_atleast (5, 0, 0) + (https://github.com/harfbuzz/harfbuzz/issues/489) + + Update: HarfBuzz 5.2.0 no longer does this for an hb_font_t font + object created from a given FT_Face. + (https://github.com/harfbuzz/harfbuzz/issues/3788) */ + if ((hb_version_atleast (5, 2, 0) || !hb_version_atleast (5, 0, 0)) && ftcrfont_info->bitmap_position_unit) *position_unit = ftcrfont_info->bitmap_position_unit;