Mesa (master): r300-gallium: Fix register count.

Corbin Simpson csimpson at kemper.freedesktop.org
Sat Feb 28 14:08:03 PST 2009


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

Author: Corbin Simpson <MostAwesomeDude at gmail.com>
Date:   Sat Feb 28 14:01:28 2009 -0800

r300-gallium: Fix register count.

---

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

diff --git a/src/gallium/drivers/r300/r300_surface.c b/src/gallium/drivers/r300/r300_surface.c
index 48f6dfc..d7c624e 100644
--- a/src/gallium/drivers/r300/r300_surface.c
+++ b/src/gallium/drivers/r300/r300_surface.c
@@ -237,7 +237,7 @@ static void r300_surface_fill(struct pipe_context* pipe,
         r300_emit_fragment_shader(r300, &r300_passthrough_fragment_shader);
     }
 
-    BEGIN_CS(8 + (caps->has_tcl ? 20 : 2));
+    BEGIN_CS(7 + (caps->has_tcl ? 21 : 2));
     OUT_CS_REG_SEQ(R300_US_OUT_FMT_0, 4);
     OUT_CS(R300_C0_SEL_B | R300_C1_SEL_G | R300_C2_SEL_R | R300_C3_SEL_A);
     OUT_CS(R300_US_OUT_FMT_UNUSED);



More information about the mesa-commit mailing list