diff options
| author | Karl Schultz <kschultz@freedesktop.org> | 2002-02-12 16:45:22 +0000 | 
|---|---|---|
| committer | Karl Schultz <kschultz@freedesktop.org> | 2002-02-12 16:45:22 +0000 | 
| commit | 12a1024d9d003afe1212cc48af04dac81c034299 (patch) | |
| tree | 3b92e093558fddd0df0096230559ff25623a75fb /src | |
| parent | 38d042a4ad76ccc30b50571135bbf0fdb912d656 (diff) | |
fix compiler warning (windows)
Diffstat (limited to 'src')
| -rw-r--r-- | src/mesa/swrast/s_blend.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/mesa/swrast/s_blend.c b/src/mesa/swrast/s_blend.c index c1f207d32b..52409cde97 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); | 
