diff options
author | Daniel Borca <[email protected]> | 2004-08-16 08:34:13 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2004-08-16 08:34:13 +0000 |
commit | ddff3525869850229a6a79ee2bd58b391c8bbfe6 (patch) | |
tree | 9b028c8be34ee9605ef9fb6b2e31ef56e44b3a7c /src/mesa/drivers/glide/fxddspan.c | |
parent | 624477afbba684922d02fa5c76b4d10664df9063 (diff) |
cleanup
Diffstat (limited to 'src/mesa/drivers/glide/fxddspan.c')
-rw-r--r-- | src/mesa/drivers/glide/fxddspan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/glide/fxddspan.c b/src/mesa/drivers/glide/fxddspan.c index 4eacfc0b5d3..f7b20490e74 100644 --- a/src/mesa/drivers/glide/fxddspan.c +++ b/src/mesa/drivers/glide/fxddspan.c @@ -100,7 +100,7 @@ #define HW_WRITE_CLIPLOOP() \ do { \ - int _nc = 1; /* numcliprects */ \ + const int _nc = 1; /* numcliprects */ \ /* [dBorca] Hack alert: */ \ /* remember, we need to flip the scissor, too */ \ /* is it better to do it inside fxDDScissor? */ \ @@ -112,7 +112,7 @@ #define HW_READ_CLIPLOOP() \ do { \ - int _nc = 1; /* numcliprects */ \ + const int _nc = 1; /* numcliprects */ \ /* [dBorca] Hack alert: */ \ /* remember, we need to flip the scissor, too */ \ /* is it better to do it inside fxDDScissor? */ \ |