From: Keith Whitwell Date: Wed, 6 Jan 2010 18:05:08 +0000 (+0000) Subject: softpipe: fix draw return value X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8e559e05a8887df6477eb5ee26c4f4461b79b303;p=mesa.git softpipe: fix draw return value --- diff --git a/src/gallium/drivers/softpipe/sp_draw_arrays.c b/src/gallium/drivers/softpipe/sp_draw_arrays.c index 3826a9e41a6..03d35fb3cb5 100644 --- a/src/gallium/drivers/softpipe/sp_draw_arrays.c +++ b/src/gallium/drivers/softpipe/sp_draw_arrays.c @@ -124,7 +124,7 @@ softpipe_draw_range_elements(struct pipe_context *pipe, unsigned i; if (!softpipe_check_render_cond(sp)) - return TRUE; + return; sp->reduced_api_prim = u_reduced_prim(mode);