From 640b6ffddd0dd7dc7d17f66e252d5450333035a0 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 8 Feb 2022 18:20:59 -0600 Subject: [PATCH] [util] Default font-funcs to 'ot' instead of 'ft' --- util/font-options.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/font-options.hh b/util/font-options.hh index 8b59c9681..36e0430d1 100644 --- a/util/font-options.hh +++ b/util/font-options.hh @@ -74,10 +74,10 @@ static struct supported_font_funcs_t { void (*func) (hb_font_t *); } supported_font_funcs[] = { + {"ot", hb_ot_font_set_funcs}, #ifdef HAVE_FREETYPE {"ft", hb_ft_font_set_funcs}, #endif - {"ot", hb_ot_font_set_funcs}, };