diff options
author | Dave Airlie <airliedfreedesktop.org> | 2005-02-14 09:27:38 +0000 |
---|---|---|
committer | Dave Airlie <airliedfreedesktop.org> | 2005-02-14 09:27:38 +0000 |
commit | 8d12a6d537ca346291bc3e3bc90cc73509f4b419 (patch) | |
tree | 65e93d5c0717c2fa23f73a12345be148231fa0bd /src/mesa/drivers/dri/common/spantmp.h | |
parent | fbdd7a5e7487849bfe06a7bef68b4dad75f5d58c (diff) |
fix some signed vs unsigned warnings
Diffstat (limited to 'src/mesa/drivers/dri/common/spantmp.h')
-rw-r--r-- | src/mesa/drivers/dri/common/spantmp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/common/spantmp.h b/src/mesa/drivers/dri/common/spantmp.h index 94126ecbaf3..96f26333fcb 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"); |