From 8d12a6d537ca346291bc3e3bc90cc73509f4b419 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Mon, 14 Feb 2005 09:27:38 +0000 Subject: fix some signed vs unsigned warnings --- src/mesa/drivers/dri/common/spantmp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mesa/drivers/dri/common/spantmp.h') diff --git a/src/mesa/drivers/dri/common/spantmp.h b/src/mesa/drivers/dri/common/spantmp.h index 94126ecbaf..96f26333fc 100644 --- a/src/mesa/drivers/dri/common/spantmp.h +++ b/src/mesa/drivers/dri/common/spantmp.h @@ -145,7 +145,7 @@ static void TAG(WriteRGBAPixels)( const GLcontext *ctx, { HW_WRITE_LOCK() { - GLint i; + GLuint i; LOCAL_VARS; if (DBG) fprintf(stderr, "WriteRGBAPixels\n"); @@ -229,7 +229,7 @@ static void TAG(WriteMonoRGBAPixels)( const GLcontext *ctx, { HW_WRITE_LOCK() { - GLint i; + GLuint i; LOCAL_VARS; INIT_MONO_PIXEL(p, color); @@ -293,7 +293,7 @@ static void TAG(ReadRGBAPixels)( const GLcontext *ctx, { HW_READ_LOCK() { - GLint i; + GLuint i; LOCAL_VARS; if (DBG) fprintf(stderr, "ReadRGBAPixels\n"); -- cgit v1.2.3