summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-03-12 10:43:53 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2008-03-12 10:43:53 +0000
commit8fd633b5cfa36e0cf0acef096315c9250015aba7 (patch)
treebe051a91fd4c378dd6fdf9bbb5d7422d4eb3668e /src/gallium/auxiliary
parent98ae83d5cc73b61826823c915b5c59746c2e85c7 (diff)
gallium: reduce signed/unsigned warnings
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r--src/gallium/auxiliary/draw/draw_passthrough.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_passthrough.c b/src/gallium/auxiliary/draw/draw_passthrough.c
index fc2dde38ba..a51fa0ab23 100644
--- a/src/gallium/auxiliary/draw/draw_passthrough.c
+++ b/src/gallium/auxiliary/draw/draw_passthrough.c
@@ -78,7 +78,7 @@ static void fetch_xyz_rgb_st( struct draw_context *draw,
{
const unsigned *pitch = draw->vertex_fetch.pitch;
const ubyte **src = draw->vertex_fetch.src_ptr;
- int i;
+ unsigned i;
const ubyte *xyzw = src[0] + start * pitch[0];
const ubyte *rgba = src[1] + start * pitch[1];