From: Marek Olšák Date: Sun, 4 Apr 2010 07:58:40 +0000 (+0200) Subject: r300g: enable conditional rendering also for SWTCL X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0179c5a95b604105ead8d642e8313740adc2a686;p=mesa.git r300g: enable conditional rendering also for SWTCL --- diff --git a/src/gallium/drivers/r300/r300_render.c b/src/gallium/drivers/r300/r300_render.c index 7898329771e..bba9ef251ee 100644 --- a/src/gallium/drivers/r300/r300_render.c +++ b/src/gallium/drivers/r300/r300_render.c @@ -564,6 +564,10 @@ void r300_swtcl_draw_arrays(struct pipe_context* pipe, struct r300_context* r300 = r300_context(pipe); int i; + if (r300->skip_rendering) { + return; + } + if (!u_trim_pipe_prim(mode, &count)) { return; } @@ -599,6 +603,10 @@ void r300_swtcl_draw_range_elements(struct pipe_context* pipe, int i; void* indices; + if (r300->skip_rendering) { + return; + } + if (!u_trim_pipe_prim(mode, &count)) { return; }