Fix more compiler warnings

In case FreeType is not available.
This commit is contained in:
Behdad Esfahbod 2024-10-12 20:08:32 -06:00
parent 377e3c67a4
commit 755929c48d

View file

@ -38,7 +38,7 @@
static inline hb_bool_t
have_ft_colrv1 (void)
{
#if (FREETYPE_MAJOR*10000 + FREETYPE_MINOR*100 + FREETYPE_PATCH) >= 21300
#if defined(HB_HAS_FREETYPE) && (FREETYPE_MAJOR*10000 + FREETYPE_MINOR*100 + FREETYPE_PATCH) >= 21300
return TRUE;
#else
return FALSE;
@ -373,7 +373,7 @@ static paint_test_t paint_tests[] = {
static void
test_hb_paint (gconstpointer d,
hb_bool_t use_ft)
hb_bool_t use_ft HB_UNUSED)
{
const paint_test_t *test = d;
hb_face_t *face;
@ -608,7 +608,7 @@ scrutinize_linear_gradient (hb_paint_funcs_t *funcs HB_UNUSED,
}
static void
test_color_stops (hb_bool_t use_ft)
test_color_stops (hb_bool_t use_ft HB_UNUSED)
{
hb_face_t *face;
hb_font_t *font;