Mesa (master): r300g: Examine vertex attribute type on HW TCL too.

Corbin Simpson csimpson at kemper.freedesktop.org
Wed Oct 21 13:53:21 UTC 2009


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

Author: Corbin Simpson <MostAwesomeDude at gmail.com>
Date:   Wed Oct 21 05:45:05 2009 -0700

r300g: Examine vertex attribute type on HW TCL too.

---

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

diff --git a/src/gallium/drivers/r300/r300_state_derived.c b/src/gallium/drivers/r300/r300_state_derived.c
index 5df1a0c..7297f9c 100644
--- a/src/gallium/drivers/r300/r300_state_derived.c
+++ b/src/gallium/drivers/r300/r300_state_derived.c
@@ -244,10 +244,8 @@ static void r300_vertex_psc(struct r300_context* r300,
         assert(tab[i] != -1);
 
         /* Add the attribute to the PSC table. */
-        temp = r300screen->caps->has_tcl ?
-            R300_DATA_TYPE_FLOAT_4 :
-            translate_vertex_data_type(vinfo->attrib[i].emit);
-        temp |= tab[i] << R300_DST_VEC_LOC_SHIFT;
+        temp = translate_vertex_data_type(vinfo->attrib[i].emit) |
+            tab[i] << R300_DST_VEC_LOC_SHIFT;
 
         if (i & 1) {
             vformat->vap_prog_stream_cntl[i >> 1] &= 0x0000ffff;




More information about the mesa-commit mailing list