diff options
| author | Eli Zaretskii | 2019-05-31 11:30:36 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-05-31 11:30:36 +0300 |
| commit | fba3687db414306da780d1faeb13fe947d2e6da6 (patch) | |
| tree | 5518fa631be611f8534bc67ed0a9140788a39650 /src/lisp.h | |
| parent | b40dde705af4d53853de6185a2468153b442dc9a (diff) | |
| download | emacs-fba3687db414306da780d1faeb13fe947d2e6da6.tar.gz emacs-fba3687db414306da780d1faeb13fe947d2e6da6.zip | |
Add HarfBuzz font backend for MS-Windows
* src/w32uniscribe.c [HAVE_HARFBUZZ]: Include math.h and
hb.h.
(bswap_32): Define for GCC 4.3.0 and later; else include
<byteswap.h> from Gnulib.
(struct uniscribe_font_info): Extend for HarfBuzz; 'cache' is
now a 'void *' (all users changed).
[HAVE_HARFBUZZ]: Define typedefs for HarfBuzz functions to be
loaded dynamically from the HarfBuzz DLL. Define macros to
call those functions via function pointers.
(uniscribe_open) [HAVE_HARFBUZZ]: Use the HarfBuzz font driver
if the type of the font entity is 'harfbuzz'.
(uniscribe_close) [HAVE_HARFBUZZ]: For fonts using the
HarfBuzz backend, call hb_font_destroy to free memory used for
the cached hb_font data.
(uniscribe_shape): Fix assignment of character codepoints to
glyphs from a single cluster.
(w32hb_list, w32hb_match, free_cb, w32hb_get_font_table)
(w32hb_get_font, w32hb_encode_char, w32hb_begin_font)
(w32uni_combining, w32uni_general, w32uni_mirroring)
(get_hb_unicode_funcs, w32hb_shape)
(w32hb_combining_capability, load_harfbuzz_funcs)
[HAVE_HARFBUZZ]: New functions.
(syms_of_w32uniscribe_for_pdumper) [HAVE_HARFBUZZ]: Load the
HarfBuzz DLL and register the HarfBuzz backend with its
functions.
* src/w32font.c (syms_of_w32font) <Qharfbuzz>: New DEFSYM.
* src/w32fns.c (Fx_create_frame, w32_create_tip_frame)
[HAVE_HARFBUZZ]: Register the harfbuzz font backend.
* src/lisp.h (get_unicode_property): Declare prototype.
* src/font.h (harfbuzz_font_driver) [HAVE_NTGUI]: Declare.
* src/chartab.c (get_unicode_property): New function, body
taken from get-unicode-property-internal.
(Fget_unicode_property_internal): Call get_unicode_property
after validating input.
* doc/lispref/frames.texi (Font and Color Parameters):
* doc/emacs/msdos.texi (Windows Fonts): Document support for
HarfBuzz text shaping on MS-Windows.
* configure.ac (HAVE_HARFBUZZ): Move out of the X-specific
part, and consider HarfBuzz also for HAVE_W32 systems.
Require HarfBuzz v1.2.3 for w32.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h index 6db90596899..5bd88f32e6e 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3994,6 +3994,7 @@ extern void map_char_table_for_charset (void (*c_function) (Lisp_Object, Lisp_Ob | |||
| 3994 | Lisp_Object, struct charset *, | 3994 | Lisp_Object, struct charset *, |
| 3995 | unsigned, unsigned); | 3995 | unsigned, unsigned); |
| 3996 | extern Lisp_Object uniprop_table (Lisp_Object); | 3996 | extern Lisp_Object uniprop_table (Lisp_Object); |
| 3997 | extern Lisp_Object get_unicode_property (Lisp_Object, int); | ||
| 3997 | extern void syms_of_chartab (void); | 3998 | extern void syms_of_chartab (void); |
| 3998 | 3999 | ||
| 3999 | /* Defined in print.c. */ | 4000 | /* Defined in print.c. */ |