summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/i915/intel_span.c
diff options
context:
space:
mode:
authorAlan Hourihane <alanh@tungstengraphics.com>2005-01-20 13:24:08 +0000
committerAlan Hourihane <alanh@tungstengraphics.com>2005-01-20 13:24:08 +0000
commitddfa61ee194b9d4ec88d499c71cd6810e7f6a022 (patch)
tree1680e1f498b7a5b9c7d351a9105020d817eeec7d /src/mesa/drivers/dri/i915/intel_span.c
parentcb3bc2c49adee6533397bae73812527e50ab82f2 (diff)
Enclose passed macro values in brackets to ensure correct read/write span
values.
Diffstat (limited to 'src/mesa/drivers/dri/i915/intel_span.c')
-rw-r--r--src/mesa/drivers/dri/i915/intel_span.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i915/intel_span.c b/src/mesa/drivers/dri/i915/intel_span.c
index 456403f2c3..494022b295 100644
--- a/src/mesa/drivers/dri/i915/intel_span.c
+++ b/src/mesa/drivers/dri/i915/intel_span.c
@@ -153,10 +153,10 @@ do { \
/* 16 bit depthbuffer functions.
*/
#define WRITE_DEPTH( _x, _y, d ) \
- *(GLushort *)(buf + _x*2 + _y*pitch) = d;
+ *(GLushort *)(buf + (_x)*2 + (_y)*pitch) = d;
#define READ_DEPTH( d, _x, _y ) \
- d = *(GLushort *)(buf + _x*2 + _y*pitch);
+ d = *(GLushort *)(buf + (_x)*2 + (_y)*pitch);
#define TAG(x) intel##x##_16