summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Maasikas <amaasikas@gmail.com>2009-12-09 10:51:52 +0200
committerAndre Maasikas <amaasikas@gmail.com>2009-12-09 10:51:52 +0200
commit33a120e4761a661736ea64a3efc2e3831ac5600a (patch)
tree4344c2a4e819a9edecc6fe90e31c2178ab9457ee
parentaf16c822a5af8ce0aa7582e8ea44315b62b7356b (diff)
r600: fix state size prediction after dc0777d3
-rw-r--r--src/mesa/drivers/dri/r600/r700_chip.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r600/r700_chip.c b/src/mesa/drivers/dri/r600/r700_chip.c
index d8661b44397..dacc2ccc4c1 100644
--- a/src/mesa/drivers/dri/r600/r700_chip.c
+++ b/src/mesa/drivers/dri/r600/r700_chip.c
@@ -1134,7 +1134,11 @@ static int check_blnd(GLcontext *ctx, struct radeon_state_atom *atom)
count += 3;
if (context->radeon.radeonScreen->chip_family > CHIP_FAMILY_R600) {
- for (ui = 0; ui < R700_MAX_RENDER_TARGETS; ui++) {
+ /* targets are enabled in r700SetRenderTarget but state
+ size is calculated before that. Until MRT's are done
+ hardcode target0 as enabled. */
+ count += 3;
+ for (ui = 1; ui < R700_MAX_RENDER_TARGETS; ui++) {
if (r700->render_target[ui].enabled)
count += 3;
}