Mesa (master): r300g: Disable immediate mode rendering for now.

Corbin Simpson csimpson at kemper.freedesktop.org
Thu Jan 14 03:34:48 UTC 2010


Module: Mesa
Branch: master
Commit: 9bb2b901916eded282634dfa52a82982fbeac128
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9bb2b901916eded282634dfa52a82982fbeac128

Author: Corbin Simpson <MostAwesomeDude at gmail.com>
Date:   Wed Jan 13 18:36:54 2010 -0800

r300g: Disable immediate mode rendering for now.

Will re-enable when the bugs are ironed out.

---

 src/gallium/drivers/r300/r300_render.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/r300/r300_render.c b/src/gallium/drivers/r300/r300_render.c
index 2edb9c6..8b07d31 100644
--- a/src/gallium/drivers/r300/r300_render.c
+++ b/src/gallium/drivers/r300/r300_render.c
@@ -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);




More information about the mesa-commit mailing list