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

Author: Corbin Simpson <[email protected]>
Date:   Thu Mar  5 10:46:10 2009 -0800

r300-gallium: Use only one CS section for vertex_format.

---

 src/gallium/drivers/r300/r300_emit.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/src/gallium/drivers/r300/r300_emit.c 
b/src/gallium/drivers/r300/r300_emit.c
index 91fac62..e910e9c 100644
--- a/src/gallium/drivers/r300/r300_emit.c
+++ b/src/gallium/drivers/r300/r300_emit.c
@@ -260,16 +260,14 @@ void r300_emit_vertex_format_state(struct r300_context* 
r300)
     CS_LOCALS(r300);
     int i;
 
-    BEGIN_CS(6);
+    BEGIN_CS(24);
     OUT_CS_REG_SEQ(R300_VAP_VTX_STATE_CNTL, 2);
     OUT_CS(r300->vertex_info.vinfo.hwfmt[0]);
     OUT_CS(r300->vertex_info.vinfo.hwfmt[1]);
     OUT_CS_REG_SEQ(R300_VAP_OUTPUT_VTX_FMT_0, 2);
     OUT_CS(r300->vertex_info.vinfo.hwfmt[2]);
     OUT_CS(r300->vertex_info.vinfo.hwfmt[3]);
-    END_CS;
 
-    BEGIN_CS(18);
     OUT_CS_REG_SEQ(R300_VAP_PROG_STREAM_CNTL_0, 8);
     for (i = 0; i < 8; i++) {
         OUT_CS(r300->vertex_info.vap_prog_stream_cntl[i]);

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to