summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_limits.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-04-23 09:10:18 -0600
committerBrian Paul <brianp@vmware.com>2010-04-23 09:13:26 -0600
commit4a72ec49f671015cd556ca2efbe5327f8e02fb28 (patch)
treec7ebc870a394b67c22e1c346d642193c46ba06d2 /src/gallium/drivers/llvmpipe/lp_limits.h
parent2de31f2bf2b9c68aaa76a63fa0d0d3e0731ccfb5 (diff)
llvmpipe: rename MAXWIDTH, MAXHEIGHT
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_limits.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_limits.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_limits.h b/src/gallium/drivers/llvmpipe/lp_limits.h
index 75be000f2f..21776b2d9d 100644
--- a/src/gallium/drivers/llvmpipe/lp_limits.h
+++ b/src/gallium/drivers/llvmpipe/lp_limits.h
@@ -54,8 +54,8 @@
/**
* Max drawing surface size is the max texture size
*/
-#define MAXHEIGHT (1 << (LP_MAX_TEXTURE_LEVELS - 1))
-#define MAXWIDTH (1 << (LP_MAX_TEXTURE_LEVELS - 1))
+#define LP_MAX_HEIGHT (1 << (LP_MAX_TEXTURE_LEVELS - 1))
+#define LP_MAX_WIDTH (1 << (LP_MAX_TEXTURE_LEVELS - 1))
#endif /* LP_LIMITS_H */