summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/common/stenciltmp.h
diff options
context:
space:
mode:
authorDave Airlie <airliedfreedesktop.org>2005-02-14 09:27:38 +0000
committerDave Airlie <airliedfreedesktop.org>2005-02-14 09:27:38 +0000
commit8d12a6d537ca346291bc3e3bc90cc73509f4b419 (patch)
tree65e93d5c0717c2fa23f73a12345be148231fa0bd /src/mesa/drivers/dri/common/stenciltmp.h
parentfbdd7a5e7487849bfe06a7bef68b4dad75f5d58c (diff)
fix some signed vs unsigned warnings
Diffstat (limited to 'src/mesa/drivers/dri/common/stenciltmp.h')
-rw-r--r--src/mesa/drivers/dri/common/stenciltmp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/common/stenciltmp.h b/src/mesa/drivers/dri/common/stenciltmp.h
index 285d8e5291..dfbe665407 100644
--- a/src/mesa/drivers/dri/common/stenciltmp.h
+++ b/src/mesa/drivers/dri/common/stenciltmp.h
@@ -66,7 +66,7 @@ static void TAG(WriteStencilPixels)( GLcontext *ctx,
{
HW_WRITE_LOCK()
{
- GLint i;
+ GLuint i;
LOCAL_STENCIL_VARS;
if (DBG) fprintf(stderr, "WriteStencilPixels\n");
@@ -121,7 +121,7 @@ static void TAG(ReadStencilPixels)( GLcontext *ctx, GLuint n,
{
HW_READ_LOCK()
{
- GLint i;
+ GLuint i;
LOCAL_STENCIL_VARS;
if (DBG) fprintf(stderr, "ReadStencilPixels\n");