summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_surface.c
diff options
context:
space:
mode:
authorJoakim Sindholt <bacn@zhasha.com>2009-02-03 02:58:51 +0100
committerCorbin Simpson <MostAwesomeDude@gmail.com>2009-02-02 18:24:55 -0800
commite1b04da9b35aad1f474f7396f206a7c124c6859b (patch)
tree406d09e192832562c293d2b0840977efed62db13 /src/gallium/drivers/r300/r300_surface.c
parent3aabfa46083daf60859bb26b65568de4cf40915f (diff)
r300: fix compiler/linker errors
Diffstat (limited to 'src/gallium/drivers/r300/r300_surface.c')
-rw-r--r--src/gallium/drivers/r300/r300_surface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_surface.c b/src/gallium/drivers/r300/r300_surface.c
index 4bccdbca29..e03f3de371 100644
--- a/src/gallium/drivers/r300/r300_surface.c
+++ b/src/gallium/drivers/r300/r300_surface.c
@@ -52,7 +52,7 @@ static void r300_surface_fill(struct pipe_context* pipe,
return;
}
-BEGIN_CS((caps->is_r500) ? 300 : 322);
+BEGIN_CS((caps->is_r500) ? 309 : 322);
R300_PACIFY;
OUT_CS_REG(R300_TX_INVALTAGS, 0x0);
R300_PACIFY;
@@ -289,7 +289,7 @@ OUT_CS_REG(R300_ZB_ZCACHE_CTLSTAT,
OUT_CS_REG_SEQ(R300_RB3D_COLOROFFSET0, 1);
OUT_CS_RELOC(dest->buffer, 0, 0, RADEON_GEM_DOMAIN_VRAM, 0);
-/* XXX this should not be so rigid */
+/* XXX this should not be so rigid and it still doesn't work right */
OUT_CS_REG(R300_RB3D_COLORPITCH0, (w / 4) | R300_COLOR_TILE_ENABLE |
R300_COLOR_FORMAT_ARGB8888);
OUT_CS_REG(RB3D_COLOR_CHANNEL_MASK, 0x0000000F);