From: Samuel Pitoiset Date: Wed, 14 Jun 2017 09:37:17 +0000 (+0200) Subject: tgsi/scan: add missing 'static' to tgsi_is_bindless_image_file() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5f8b654b47af12f8e583df7911581379eba549e2;p=mesa.git tgsi/scan: add missing 'static' to tgsi_is_bindless_image_file() This should fix compilation errors in some situations. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=101418 Signed-off-by: Samuel Pitoiset Reviewed-by: Marek Olšák --- diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.h b/src/gallium/auxiliary/tgsi/tgsi_scan.h index cfec9daede5..857434f62a6 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_scan.h +++ b/src/gallium/auxiliary/tgsi/tgsi_scan.h @@ -198,7 +198,7 @@ tgsi_scan_arrays(const struct tgsi_token *tokens, unsigned max_array_id, struct tgsi_array_info *arrays); -inline bool +static inline bool tgsi_is_bindless_image_file(unsigned file) { return file != TGSI_FILE_IMAGE &&