diff options
author | Eric Anholt <[email protected]> | 2015-02-11 14:24:33 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2015-02-20 11:36:34 -0800 |
commit | 41b1882ed45f0fcb827a178cb3f7143fcaa8c4d9 (patch) | |
tree | b9a2f335d36f6bc2adbf4963a4ab82cdefb6cfd9 /src/mesa/drivers/dri/nouveau/nouveau_util.h | |
parent | 5ca019358f7a598174bd4adb6746fedc0ca78943 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/nouveau/nouveau_util.h')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nouveau_util.h | 6 |
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 e9721c3a7ab..8087445b65a 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) { |