From: Ilia Mirkin Date: Thu, 27 Feb 2014 06:07:30 +0000 (-0500) Subject: gallium/util: add missing u_math include X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f19271c7bf73efe6d583e9dc5fc37329558a5cc3;p=mesa.git gallium/util: add missing u_math include This is needed for MIN2/MAX2 Signed-off-by: Ilia Mirkin Reviewed-by: Marek Olšák --- diff --git a/src/gallium/auxiliary/util/u_range.h b/src/gallium/auxiliary/util/u_range.h index 4b1d0d1be52..efe25ef5e42 100644 --- a/src/gallium/auxiliary/util/u_range.h +++ b/src/gallium/auxiliary/util/u_range.h @@ -36,6 +36,8 @@ #include "os/os_thread.h" +#include "util/u_math.h" + struct util_range { unsigned start; /* inclusive */ unsigned end; /* exclusive */