diff options
author | Marek Olšák <maraeo@gmail.com> | 2010-02-12 03:51:41 +0100 |
---|---|---|
committer | Marek Olšák <maraeo@gmail.com> | 2010-02-13 15:44:42 +0100 |
commit | 75910e96dc9704e2ade842fde2647b27393ddcb7 (patch) | |
tree | 9a201b1a53aec58fc102c6ba99f72aa6c1558c21 /src | |
parent | bf1096a778e9537d9e0970660effdf307115faf0 (diff) |
r300g: emit INDEPENDENT_COLORFORMAT_ENABLE only on r5xx
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/r300/r300_emit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_emit.c b/src/gallium/drivers/r300/r300_emit.c index d31336ed76..26bdcff61e 100644 --- a/src/gallium/drivers/r300/r300_emit.c +++ b/src/gallium/drivers/r300/r300_emit.c @@ -408,8 +408,7 @@ void r300_emit_fb_state(struct r300_context* r300, void* state) R300_RB3D_CCTL_INDEPENDENT_COLOR_CHANNEL_MASK_ENABLE); } else { OUT_CS_REG(R300_RB3D_CCTL, - R300_RB3D_CCTL_NUM_MULTIWRITES(fb->nr_cbufs) | - R300_RB3D_CCTL_INDEPENDENT_COLORFORMAT_ENABLE_ENABLE); + R300_RB3D_CCTL_NUM_MULTIWRITES(fb->nr_cbufs)); } } else { OUT_CS_REG(R300_RB3D_CCTL, 0x0); |