r300g: mark rasterizer_state as dirty only when it's not NULL

This commit is contained in:
Marek Olšák 2010-02-27 20:00:38 +01:00
parent c05f998f02
commit f129a7dd68
1 changed files with 1 additions and 1 deletions

View File

@ -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;