From: Karl Schultz Date: Tue, 12 Feb 2002 16:45:22 +0000 (+0000) Subject: fix compiler warning (windows) X-Git-Tag: 062012170305~26651 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=12a1024d9d003afe1212cc48af04dac81c034299;p=profile%2Fivi%2Fmesa.git fix compiler warning (windows) --- diff --git a/src/mesa/swrast/s_blend.c b/src/mesa/swrast/s_blend.c index c1f207d..52409cd 100644 --- a/src/mesa/swrast/s_blend.c +++ b/src/mesa/swrast/s_blend.c @@ -1,4 +1,4 @@ -/* $Id: s_blend.c,v 1.12 2002/02/02 21:40:33 brianp Exp $ */ +/* $Id: s_blend.c,v 1.13 2002/02/12 16:45:22 kschultz Exp $ */ /* * Mesa 3-D graphics library @@ -52,7 +52,7 @@ static void _BLENDAPI blend_noop( GLcontext *ctx, GLuint n, const GLubyte mask[], GLchan rgba[][4], CONST GLchan dest[][4] ) { - int i; + GLuint i; ASSERT(ctx->Color.BlendEquation==GL_FUNC_ADD_EXT); ASSERT(ctx->Color.BlendSrcRGB==GL_ZERO); ASSERT(ctx->Color.BlendDstRGB==GL_ONE);