summaryrefslogtreecommitdiff
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2009-05-18 09:50:30 -0700
committerCorbin Simpson <MostAwesomeDude@gmail.com>2009-05-18 09:51:10 -0700
commitd0639d067e9b95875b1d395eaa66388884996296 (patch)
tree1de856eb47bbc1f5308e42ec6698a67bbe46ed9c /src/gallium/drivers
parent026f4c97dc4cf29c93461857afa76b07086ede42 (diff)
r300-gallium: Fix (another) wrong value in MSPOS.
Again, thanks to agd5f.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/r300/r300_state_invariant.c2
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 d74928ceca..9dde662802 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);