change type of loop index var to remove compiler warning.
authorKarl Schultz <kschultz@freedesktop.org>
Tue, 13 Jan 2004 01:09:17 +0000 (01:09 +0000)
committerKarl Schultz <kschultz@freedesktop.org>
Tue, 13 Jan 2004 01:09:17 +0000 (01:09 +0000)
src/mesa/swrast_setup/ss_context.c

index c1d932f245ff02d07c7bcc65f7cd98b329c93a43..ef83dd42370146907be15e288005da5c4eeec7fe 100644 (file)
@@ -217,7 +217,7 @@ _swsetup_Translate( GLcontext *ctx, const void *vertex, SWvertex *dest )
 {
    const GLfloat *m = ctx->Viewport._WindowMap.m;
    GLfloat tmp[4];
-   GLint i;
+   GLuint i;
 
    _tnl_get_attr( ctx, vertex, _TNL_ATTRIB_POS, tmp );