From: Marek Olšák Date: Tue, 28 Oct 2014 10:12:27 +0000 (+0100) Subject: r300g: only set clip_halfz for chips with HW TCL X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3fc499a1dd2a98fdd9aa9c457a5607531c6696e1;p=mesa.git r300g: only set clip_halfz for chips with HW TCL I forgot that we cannot emit vertex shader state on a chip without VS. In such a case, clip_halfz is handled by the Draw module. --- diff --git a/src/gallium/drivers/r300/r300_state.c b/src/gallium/drivers/r300/r300_state.c index cfcc19d1c68..6ce03293e94 100644 --- a/src/gallium/drivers/r300/r300_state.c +++ b/src/gallium/drivers/r300/r300_state.c @@ -1432,7 +1432,7 @@ static void r300_bind_rs_state(struct pipe_context* pipe, void* state) } } - if (last_clip_halfz != r300->clip_halfz) { + if (r300->screen->caps.has_tcl && last_clip_halfz != r300->clip_halfz) { r300_mark_atom_dirty(r300, &r300->vs_state); } }