From: Marek Olšák Date: Sat, 27 Feb 2010 19:00:38 +0000 (+0100) Subject: r300g: mark rasterizer_state as dirty only when it's not NULL X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f129a7dd686cb3d824253bffab8c8b32b8ef8b69;p=mesa.git r300g: mark rasterizer_state as dirty only when it's not NULL --- diff --git a/src/gallium/drivers/r300/r300_state.c b/src/gallium/drivers/r300/r300_state.c index ee4409c8899..0fbb9e77162 100644 --- a/src/gallium/drivers/r300/r300_state.c +++ b/src/gallium/drivers/r300/r300_state.c @@ -824,13 +824,13 @@ static void r300_bind_rs_state(struct pipe_context* pipe, void* state) if (rs) { r300->tcl_bypass = rs->rs.bypass_vs_clip_and_viewport; r300->polygon_offset_enabled = rs->rs.offset_cw || rs->rs.offset_ccw; + r300->rs_state.dirty = TRUE; } else { r300->tcl_bypass = FALSE; r300->polygon_offset_enabled = FALSE; } r300->rs_state.state = rs; - r300->rs_state.dirty = TRUE; /* XXX Why is this still needed, dammit!? */ r300->scissor_state.dirty = TRUE; r300->viewport_state.dirty = TRUE;