Mesa (master): r300g: fix compiler error

Marek Olšák mareko at kemper.freedesktop.org
Thu Apr 29 05:33:38 UTC 2010


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

Author: Marek Olšák <maraeo at gmail.com>
Date:   Thu Apr 29 07:32:56 2010 +0200

r300g: fix compiler error

Ouch.

---

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

diff --git a/src/gallium/drivers/r300/r300_state_derived.c b/src/gallium/drivers/r300/r300_state_derived.c
index c684547..ccc4b58 100644
--- a/src/gallium/drivers/r300/r300_state_derived.c
+++ b/src/gallium/drivers/r300/r300_state_derived.c
@@ -393,14 +393,13 @@ static void r300_update_rs_block(struct r300_context* r300,
     /* Rasterize WPOS. */
     /* If the FS doesn't need it, it's not written by the VS. */
     if (vs_outputs->wpos != ATTR_UNUSED && fs_inputs->wpos != ATTR_UNUSED) {
-        rX00_rs_tex(&rs, tex_count, vs_tex_count, SWIZ_XYZW);
+        rX00_rs_tex(&rs, tex_count, tex_count, SWIZ_XYZW);
         rX00_rs_tex_write(&rs, tex_count, fp_offset);
 
         DBG(r300, DBG_RS, "r300: Rasterized WPOS written to FS.\n");
 
         fp_offset++;
         tex_count++;
-        vs_tex_count++;
     }
 
     /* Rasterize at least one color, or bad things happen. */




More information about the mesa-commit mailing list