Mesa (master): r300-gallium: Fix (another) wrong value in MSPOS.

Corbin Simpson csimpson at kemper.freedesktop.org
Mon May 18 16:52:50 UTC 2009


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

Author: Corbin Simpson <MostAwesomeDude at gmail.com>
Date:   Mon May 18 09:50:30 2009 -0700

r300-gallium: Fix (another) wrong value in MSPOS.

Again, thanks to agd5f.

---

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

diff --git a/src/gallium/drivers/r300/r300_state_invariant.c b/src/gallium/drivers/r300/r300_state_invariant.c
index d74928c..9dde662 100644
--- a/src/gallium/drivers/r300/r300_state_invariant.c
+++ b/src/gallium/drivers/r300/r300_state_invariant.c
@@ -40,7 +40,7 @@ void r300_emit_invariant_state(struct r300_context* r300)
     /* Various GB enables */
     OUT_CS_REG(R300_GB_ENABLE, 0x0);
     /* Subpixel multisampling for AA */
-    OUT_CS_REG(R300_GB_MSPOS0, 0x6666666);
+    OUT_CS_REG(R300_GB_MSPOS0, 0x66666666);
     OUT_CS_REG(R300_GB_MSPOS1, 0x6666666);
     /* Source of fog depth */
     OUT_CS_REG(R300_GB_SELECT, R300_GB_FOG_SELECT_1_1_W);




More information about the mesa-commit mailing list