r300-gallium: Correct default MSPOS.
authorCorbin Simpson <MostAwesomeDude@gmail.com>
Sun, 17 May 2009 18:58:53 +0000 (11:58 -0700)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Sun, 17 May 2009 18:58:53 +0000 (11:58 -0700)
Per agd5f.

src/gallium/drivers/r300/r300_state_invariant.c

index 8bd9b41bd74d12119dd95c0cf99b2311ec58308f..3e1580c595005d9f2ef219ab954e801fe3fed3a6 100644 (file)
@@ -40,8 +40,8 @@ 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, 0x66666666);
-    OUT_CS_REG(R300_GB_MSPOS1, 0x66666666);
+    OUT_CS_REG(R300_GB_MSPOS0, 0x6666666);
+    OUT_CS_REG(R300_GB_MSPOS1, 0x6666666);
     /* GB tile config and pipe setup */
     OUT_CS_REG(R300_GB_TILE_CONFIG, R300_GB_TILE_DISABLE |
         r300_translate_gb_pipes(caps->num_frag_pipes));