From: Marek Olšák Date: Wed, 14 Apr 2010 02:44:13 +0000 (+0200) Subject: r300g: remove the CS compenstation for non-atomized states X-Git-Tag: 062012170305~13329 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ef745cf95de4f184fc3bb846323c3a508b8d4b52;p=profile%2Fivi%2Fmesa.git r300g: remove the CS compenstation for non-atomized states Now there aren't any. If CS overflow occurs, the fix should go directly before the problematic BEGIN_CS. --- diff --git a/src/gallium/drivers/r300/r300_emit.c b/src/gallium/drivers/r300/r300_emit.c index aa4dd10..d55b803 100644 --- a/src/gallium/drivers/r300/r300_emit.c +++ b/src/gallium/drivers/r300/r300_emit.c @@ -1207,9 +1207,6 @@ unsigned r300_get_num_dirty_dwords(struct r300_context *r300) } } - /* XXX This is the compensation for the non-atomized states. */ - dwords += 1024; - return dwords; }