diff options
Diffstat (limited to 'src/mesa/drivers/dri/nouveau')
-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) { |