r300-gallium: Fix (another) wrong value in MSPOS.
authorCorbin Simpson <MostAwesomeDude@gmail.com>
Mon, 18 May 2009 16:50:30 +0000 (09:50 -0700)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Mon, 18 May 2009 16:51:10 +0000 (09:51 -0700)
Again, thanks to agd5f.

src/gallium/drivers/r300/r300_state_invariant.c

index d74928ceca10f0f0cccad5660b7067d8a249fe71..9dde662802b421ec9ced3e6a1b73b0ae6788e8fb 100644 (file)
@@ -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);