fix a bug in the sanity code when outputting vertex progs
authorRoland Scheidegger <rscheidegger@gmx.ch>
Wed, 29 Nov 2006 19:18:50 +0000 (19:18 +0000)
committerRoland Scheidegger <rscheidegger@gmx.ch>
Wed, 29 Nov 2006 19:18:50 +0000 (19:18 +0000)
src/mesa/drivers/dri/r200/r200_sanity.c

index ca5b926a9447da6825bcc57ecfa851c4e162e1b9..3f2a8665309170cecdffabfabfb00ca828af788e 100644 (file)
@@ -978,7 +978,7 @@ static int radeon_emit_veclinear(
       }
    }
    else if ((start >= 0x180) && (start < 0x1c0)) {
-      for (i = start ; (i < start + sz) ;  i += 4) {
+      for (i = 0 ; i < sz ;  i += 4) {
         fprintf(stderr, "R200_VS_PROG %d OPDST %08x\n", (i >> 2) + start - 0x180 + 0x40, data[i]);
         fprintf(stderr, "R200_VS_PROG %d SRC1  %08x\n", (i >> 2) + start - 0x180 + 0x40, data[i+1]);
         fprintf(stderr, "R200_VS_PROG %d SRC2  %08x\n", (i >> 2) + start - 0x180 + 0x40, data[i+2]);