v3d: avoid warning about unused function

This function is only used if V3D_VERSION < 40

Fixes a clang warning about unused static inlined functions.

Reviewed-by: Juan A. Suarez <jasuarez@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14790>
This commit is contained in:
Thomas H.P. Andersen 2022-01-08 20:34:01 +01:00 committed by Marge Bot
parent cc79959b09
commit 3fdea42339
1 changed files with 1 additions and 1 deletions

View File

@ -77,6 +77,7 @@ v3d_factor(enum pipe_blendfactor factor, bool dst_alpha_one)
}
}
#if V3D_VERSION < 40
static inline uint16_t
swizzled_border_color(const struct v3d_device_info *devinfo,
struct pipe_sampler_state *sampler,
@ -109,7 +110,6 @@ swizzled_border_color(const struct v3d_device_info *devinfo,
}
}
#if V3D_VERSION < 40
static uint32_t
translate_swizzle(unsigned char pipe_swizzle)
{