fix signed vs unsigned comparison warnings in tnl_dd
authorDave Airlie <airliedfreedesktop.org>
Mon, 14 Feb 2005 09:25:08 +0000 (09:25 +0000)
committerDave Airlie <airliedfreedesktop.org>
Mon, 14 Feb 2005 09:25:08 +0000 (09:25 +0000)
src/mesa/tnl_dd/t_dd_triemit.h
src/mesa/tnl_dd/t_dd_tritmp.h

index c99e6e6..f5979ee 100644 (file)
@@ -143,7 +143,7 @@ static void TAG(fast_clipped_poly)( GLcontext *ctx, const GLuint *elts,
    GLuint vertsize = GET_VERTEX_DWORDS();
    GLuint *vb = (GLuint *)ALLOC_VERTS( (n-2) * 3, vertsize );
    const GLuint *start = (const GLuint *)VERT(elts[0]);
-   int i,j;
+   GLuint i,j;
 
    if (DO_DEBUG_VERTS) {
       fprintf(stderr, "%s\n", __FUNCTION__);
index bc1617e..6ba15ce 100644 (file)
@@ -749,7 +749,7 @@ static void TAG(line)( GLcontext *ctx, GLuint e0, GLuint e1 )
 static void TAG(points)( GLcontext *ctx, GLuint first, GLuint last )
 {
    struct vertex_buffer *VB = &TNL_CONTEXT( ctx )->vb;
-   int i;
+   GLuint i;
    LOCAL_VARS(1);
 
    if (VB->Elts == 0) {