diff options
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2019-07-01 16:58:53 +0900 |
---|---|---|
committer | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2019-07-01 16:58:53 +0900 |
commit | 6cabb698f99a6b9e931cdac7347b18c44fde6041 (patch) | |
tree | eaccdb78e9ca1103e55afc0939c93fc665f44700 /src/xftfont.c | |
parent | fd9ea1e511ba3b1f5d338c3fc8faf0b85df951f9 (diff) | |
download | emacs-6cabb698f99a6b9e931cdac7347b18c44fde6041.tar.gz emacs-6cabb698f99a6b9e931cdac7347b18c44fde6041.tar.bz2 emacs-6cabb698f99a6b9e931cdac7347b18c44fde6041.zip |
Implement the otf_capability method for HarfBuzz
* src/hbfont.c: Include hb-ot.h.
[HAVE_NTGUI]: Add DEF_DLL_FN and #define for hb_tag_to_string,
hb_font_get_face, hb_ot_layout_table_get_script_tags,
hb_ot_layout_table_get_feature_tags, hb_ot_layout_script_get_language_tags,
and hb_ot_layout_language_get_feature_tags.
(hbfont_init_w32_funcs) [HAVE_NTGUI]: Add LOAD_DLL_FN for them.
(hbfont_otf_features, hbfont_otf_capability): New functions.
* src/font.h (hbfont_otf_capability) [HAVE_HARFBUZZ]: Add extern.
* src/ftcrfont.c (syms_of_ftcrfont_for_pdumper) [HAVE_HARFBUZZ]:
* src/ftfont.c (syms_of_ftfont_for_pdumper) [HAVE_HARFBUZZ]:
* src/w32uniscribe.c (syms_of_w32uniscribe_for_pdumper) [HAVE_HARFBUZZ]:
* src/xftfont.c (syms_of_xftfont_for_pdumper) [HAVE_HARFBUZZ]: Populate
otf_capability method with hbfont_otf_capability.
Diffstat (limited to 'src/xftfont.c')
-rw-r--r-- | src/xftfont.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xftfont.c b/src/xftfont.c index 4d2a5f520e0..2cad6db933b 100644 --- a/src/xftfont.c +++ b/src/xftfont.c @@ -700,6 +700,7 @@ syms_of_xftfont_for_pdumper (void) xfthbfont_driver.type = Qxfthb; xfthbfont_driver.list = xfthbfont_list; xfthbfont_driver.match = xfthbfont_match; + xfthbfont_driver.otf_capability = hbfont_otf_capability, xfthbfont_driver.shape = hbfont_shape; xfthbfont_driver.combining_capability = hbfont_combining_capability; xfthbfont_driver.begin_hb_font = xfthbfont_begin_hb_font; |