clean up some compiler warnings
authorKeith Whitwell <keith@tungstengraphics.com>
Tue, 9 Dec 2003 14:18:41 +0000 (14:18 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Tue, 9 Dec 2003 14:18:41 +0000 (14:18 +0000)
src/mesa/drivers/dri/r200/r200_maos_arrays.c
src/mesa/drivers/dri/r200/r200_tcl.c
src/mesa/drivers/dri/r200/r200_vtxfmt.c

index b442dce..6c60130 100644 (file)
@@ -69,7 +69,7 @@ static void emit_ubyte_rgba3( GLcontext *ctx,
 
    if (R200_DEBUG & DEBUG_VERTS)
       fprintf(stderr, "%s count %d stride %d out %p\n",
-             __FUNCTION__, count, stride, out);
+             __FUNCTION__, count, stride, (void *)out);
 
    for (i = 0; i < count; i++) {
       out->red   = *data;
@@ -129,6 +129,7 @@ static void emit_ubyte_rgba4( GLcontext *ctx,
 }
 
 
+#if 0
 static void emit_ubyte_rgba( GLcontext *ctx,
                             struct r200_dma_region *rvb,
                             char *data,
@@ -172,6 +173,7 @@ static void emit_ubyte_rgba( GLcontext *ctx,
       break;
    }
 }
+#endif
 
 
 static void emit_vec4( GLcontext *ctx,
@@ -233,7 +235,7 @@ static void emit_vec12( GLcontext *ctx,
 
    if (R200_DEBUG & DEBUG_VERTS)
       fprintf(stderr, "%s count %d stride %d out %p data %p\n",
-             __FUNCTION__, count, stride, out, data);
+             __FUNCTION__, count, stride, out, (void *)data);
 
    if (stride == 12)
       COPY_DWORDS( out, data, count*3 );
index 60e281f..9b1f522 100644 (file)
@@ -259,7 +259,7 @@ static GLboolean r200_run_tcl_render( GLcontext *ctx,
    r200ContextPtr rmesa = R200_CONTEXT(ctx);
    TNLcontext *tnl = TNL_CONTEXT(ctx);
    struct vertex_buffer *VB = &tnl->vb;
-   GLuint i,flags = 0,length;
+   GLuint i;
 
    /* TODO: separate this from the swtnl pipeline 
     */
index 2e742d4..188bed2 100644 (file)
@@ -562,7 +562,8 @@ static void wrap_buffer( void )
    for (i = 0 ; i < nrverts; i++) {
       if (R200_DEBUG & DEBUG_VERTS) {
         int j;
-        fprintf(stderr, "re-emit vertex %d to %p\n", i, rmesa->vb.dmaptr);
+        fprintf(stderr, "re-emit vertex %d to %p\n", i, 
+                (void *)rmesa->vb.dmaptr);
         if (R200_DEBUG & DEBUG_VERBOSE)
            for (j = 0 ; j < rmesa->vb.vertex_size; j++) 
               fprintf(stderr, "\t%08x/%f\n", *(int*)&tmp[i][j], tmp[i][j]);