From: Keith Whitwell Date: Fri, 18 Apr 2008 23:43:58 +0000 (+0100) Subject: softpipe: don't need to trim prims X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c717f1fbe25f16ce6e607b0f7319ce74f9ae99b4;p=mesa.git softpipe: don't need to trim prims --- diff --git a/src/gallium/drivers/softpipe/sp_draw_arrays.c b/src/gallium/drivers/softpipe/sp_draw_arrays.c index 421509495a0..778291dded7 100644 --- a/src/gallium/drivers/softpipe/sp_draw_arrays.c +++ b/src/gallium/drivers/softpipe/sp_draw_arrays.c @@ -118,17 +118,6 @@ softpipe_draw_elements(struct pipe_context *pipe, struct draw_context *draw = sp->draw; unsigned i; - /* first, check that the primitive is not malformed. It is the - * state tracker's responsibility to do send only correctly formed - * primitives down. It currently isn't doing that though... - */ -#if 1 - count = draw_trim_prim( mode, count ); -#else - if (!draw_validate_prim( mode, count )) - assert(0); -#endif - sp->reduced_api_prim = reduced_prim[mode]; if (sp->dirty)