[dwrite] Set face index / glyph_count on hb-face

This commit is contained in:
Behdad Esfahbod 2025-03-15 20:04:37 -06:00
parent 93f8cbf4fa
commit 08781f6f7d

View file

@ -215,8 +215,14 @@ hb_directwrite_face_create (IDWriteFontFace *dw_face)
return hb_face_get_empty ();
dw_face->AddRef ();
return hb_face_create_for_tables (_hb_directwrite_reference_table, dw_face,
_hb_directwrite_face_release);
hb_face_t *face = hb_face_create_for_tables (_hb_directwrite_reference_table,
dw_face,
_hb_directwrite_face_release);
hb_face_set_index (face, dw_face->GetIndex ());
hb_face_set_glyph_count (face, dw_face->GetGlyphCount ());
return face;
}
/**