r300g: Properly clamp index limits.
authorCorbin Simpson <MostAwesomeDude@gmail.com>
Fri, 12 Mar 2010 10:47:44 +0000 (02:47 -0800)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Fri, 12 Mar 2010 10:54:10 +0000 (02:54 -0800)
Make the kernel even less likely to barf on us.

src/gallium/drivers/r300/r300_render.c
src/gallium/drivers/r300/r300_state.c

index 9c001ae..ef1b751 100644 (file)
@@ -280,7 +280,7 @@ static void r300_emit_draw_elements(struct r300_context *r300,
     DBG(r300, DBG_DRAW, "r300: Indexbuf of %u indices, min %u max %u\n",
         count, minIndex, maxIndex);
 
-    maxIndex = MIN2(maxIndex, r300->vertex_buffer_max_index);
+    maxIndex = MIN3(maxIndex, r300->vertex_buffer_max_index, (1 << 24) - 1);
 
     if (alt_num_verts) {
         BEGIN_CS(15);
index bd4c276..ced6c81 100644 (file)
@@ -1031,7 +1031,7 @@ static void r300_set_vertex_buffers(struct pipe_context* pipe,
                                     const struct pipe_vertex_buffer* buffers)
 {
     struct r300_context* r300 = r300_context(pipe);
-    unsigned i, max_index = ~0;
+    unsigned i, max_index = (1 << 24) - 1;
 
     memcpy(r300->vertex_buffer, buffers,
         sizeof(struct pipe_vertex_buffer) * count);