nv50: fix draw_elements_inline_u08/16
authorChristoph Bumiller <e0425955@student.tuwien.ac.at>
Thu, 3 Sep 2009 10:37:05 +0000 (12:37 +0200)
committerChristoph Bumiller <e0425955@student.tuwien.ac.at>
Thu, 3 Sep 2009 10:42:42 +0000 (12:42 +0200)
We've been emitting the same two indices over and over
without incrementing map.

src/gallium/drivers/nv50/nv50_vbo.c

index 36f1b24b2f0b98415c77735c22f002f3ce912c76..daa49cf463a12d6d948889ef7431e2297c024d1a 100644 (file)
@@ -178,7 +178,7 @@ nv50_draw_elements_inline_u08(struct nv50_context *nv50, uint8_t *map,
 
                BEGIN_RING(chan, tesla, 0x400015f0, nr >> 1);
                for (i = 0; i < nr; i += 2)
-                       OUT_RING  (chan, (map[1] << 16) | map[0]);
+                       OUT_RING  (chan, (map[i + 1] << 16) | map[i]);
 
                count -= nr;
                map += nr;
@@ -207,7 +207,7 @@ nv50_draw_elements_inline_u16(struct nv50_context *nv50, uint16_t *map,
 
                BEGIN_RING(chan, tesla, 0x400015f0, nr >> 1);
                for (i = 0; i < nr; i += 2)
-                       OUT_RING  (chan, (map[1] << 16) | map[0]);
+                       OUT_RING  (chan, (map[i + 1] << 16) | map[i]);
 
                count -= nr;
                map += nr;