r300g: Disable immediate mode rendering for now.
authorCorbin Simpson <MostAwesomeDude@gmail.com>
Thu, 14 Jan 2010 02:36:54 +0000 (18:36 -0800)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Thu, 14 Jan 2010 02:36:54 +0000 (18:36 -0800)
Will re-enable when the bugs are ironed out.

src/gallium/drivers/r300/r300_render.c

index 2edb9c6030cff13932c550bf733fdb28a64da713..8b07d31000a93275db6f4528c1a6aafceab904ca 100644 (file)
@@ -325,7 +325,7 @@ void r300_draw_arrays(struct pipe_context* pipe, unsigned mode,
 
     r300_emit_dirty_state(r300);
 
-    if (count <= 4 && r300->vertex_buffer_count == 1) {
+    if (FALSE && count <= 4 && r300->vertex_buffer_count == 1) {
         r300_emit_draw_immediate(r300, mode, start, count);
     } else {
         r300_emit_aos(r300, start);