From: Marek Olšák Date: Sat, 19 Jun 2010 02:04:21 +0000 (+0200) Subject: r300g: fix up the CS size of the rasterizer state X-Git-Tag: 062012170305~11739 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ea45a2c0ec5e53210761753dc9122c2771ba57b;p=profile%2Fivi%2Fmesa.git r300g: fix up the CS size of the rasterizer state --- diff --git a/src/gallium/drivers/r300/r300_state.c b/src/gallium/drivers/r300/r300_state.c index ed0dbe8..e1149d7 100644 --- a/src/gallium/drivers/r300/r300_state.c +++ b/src/gallium/drivers/r300/r300_state.c @@ -984,8 +984,8 @@ static void r300_bind_rs_state(struct pipe_context* pipe, void* state) } UPDATE_STATE(state, r300->rs_state); - r300->rs_state.size = 25 + (r300->polygon_offset_enabled ? 5 : 0 + - r300->rws->get_value(r300->rws, R300_VID_DRM_2_3_0) ? 5 : 0); + r300->rs_state.size = 25 + (r300->polygon_offset_enabled ? 5 : 0) + + (r300->rws->get_value(r300->rws, R300_VID_DRM_2_3_0) ? 5 : 0); if (last_sprite_coord_enable != r300->sprite_coord_enable || last_two_sided_color != r300->two_sided_color) {