summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_math.h
diff options
context:
space:
mode:
authorAndreas Boll <andreas.boll.dev@gmail.com>2014-09-12 10:11:24 +0200
committerAndreas Boll <andreas.boll.dev@gmail.com>2014-09-12 15:55:12 +0200
commit2a13ff954d3d8cea73bbcf728edffa867828cb78 (patch)
treec9129b4f79721c6f3697f4faa6e154c3580abde4 /src/gallium/auxiliary/util/u_math.h
parent802018df5f4c193f1c642a187ecf3c429e2c2ada (diff)
gallium/util: add missing u_debug include
Needed for assert. Fixes build on BE archs with -Werror=implicit-function-declaration. In file included from ../../../../../src/gallium/auxiliary/draw/draw_fs.c:30:0: ../../../../../src/gallium/auxiliary/util/u_math.h: In function 'util_memcpy_cpu_to_le32': ../../../../../src/gallium/auxiliary/util/u_math.h:810:4: error: implicit declaration of function 'assert' [-Werror=implicit-function-declaration] assert(n % 4 == 0); ^ Cc: "10.3" <mesa-stable@lists.freedesktop.org> Signed-off-by: Andreas Boll <andreas.boll.dev@gmail.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Diffstat (limited to 'src/gallium/auxiliary/util/u_math.h')
-rw-r--r--src/gallium/auxiliary/util/u_math.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_math.h b/src/gallium/auxiliary/util/u_math.h
index 25bcfb57d8e..39bd40fa153 100644
--- a/src/gallium/auxiliary/util/u_math.h
+++ b/src/gallium/auxiliary/util/u_math.h
@@ -40,6 +40,7 @@
#include "pipe/p_compiler.h"
+#include "util/u_debug.h"
#ifdef __cplusplus