r300g: fix rendering with a vertex attrib having a zero stride
authorMarek Olšák <maraeo@gmail.com>
Sat, 11 Dec 2010 13:45:27 +0000 (14:45 +0100)
committerMarek Olšák <maraeo@gmail.com>
Sat, 11 Dec 2010 13:49:28 +0000 (14:49 +0100)
The hardware apparently does support a zero stride, so let's use it.

This fixes missing objects in ETQW, but might also fix a ton of other
similar-looking bugs.

NOTE: This is a candidate for both the 7.9 and 7.10 branches.

src/gallium/drivers/r300/r300_state.c

index 752925324051fde22f847a0ff2529492f9bcfe4e..0ad8a1f4204d91215f608788ffb1133a03c669bc 100644 (file)
@@ -1496,14 +1496,14 @@ static void r300_set_vertex_buffers(struct pipe_context* pipe,
                 any_user_buffer = TRUE;
             }
 
+            /* The stride of zero means we will be fetching only the first
+             * vertex, so don't care about max_index. */
+            if (!vbo->stride)
+                continue;
+
             if (vbo->max_index == ~0) {
-                /* if no VBO stride then only one vertex value so max index is 1 */
-                /* should think about converting to VS constants like svga does */
-                if (!vbo->stride)
-                    vbo->max_index = 1;
-                else
-                    vbo->max_index =
-                             (vbo->buffer->width0 - vbo->buffer_offset) / vbo->stride;
+                vbo->max_index =
+                        (vbo->buffer->width0 - vbo->buffer_offset) / vbo->stride;
             }
 
             max_index = MIN2(vbo->max_index, max_index);