summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/nouveau
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2015-02-11 14:24:33 -0800
committerEric Anholt <eric@anholt.net>2015-02-20 11:36:34 -0800
commit41b1882ed45f0fcb827a178cb3f7143fcaa8c4d9 (patch)
treeb9a2f335d36f6bc2adbf4963a4ab82cdefb6cfd9 /src/mesa/drivers/dri/nouveau
parent5ca019358f7a598174bd4adb6746fedc0ca78943 (diff)
downloadexternal_mesa3d-41b1882ed45f0fcb827a178cb3f7143fcaa8c4d9.zip
external_mesa3d-41b1882ed45f0fcb827a178cb3f7143fcaa8c4d9.tar.gz
external_mesa3d-41b1882ed45f0fcb827a178cb3f7143fcaa8c4d9.tar.bz2
mesa: Use u_math.h from macros.h
This avoids duplication of some macros and other definitions across the tree. Note that COPY_4FV switches from a memcpy-based implementation to an assignment of 4 floats. Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Diffstat (limited to 'src/mesa/drivers/dri/nouveau')
-rw-r--r--src/mesa/drivers/dri/nouveau/nouveau_util.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_util.h b/src/mesa/drivers/dri/nouveau/nouveau_util.h
index e9721c3..8087445 100644
--- a/src/mesa/drivers/dri/nouveau/nouveau_util.h
+++ b/src/mesa/drivers/dri/nouveau/nouveau_util.h
@@ -129,12 +129,6 @@ log2i(unsigned i)
return r;
}
-static inline unsigned
-align(unsigned x, unsigned m)
-{
- return (x + m - 1) & ~(m - 1);
-}
-
static inline void
get_scissors(struct gl_framebuffer *fb, int *x, int *y, int *w, int *h)
{