From: Keith Whitwell Date: Wed, 11 Jun 2008 08:15:54 +0000 (+0100) Subject: draw: remove debug assert on failover to generic vs varient X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ab399b555c99c46958c421d900109f78901ddc99;p=mesa.git draw: remove debug assert on failover to generic vs varient --- diff --git a/src/gallium/auxiliary/draw/draw_vs_aos.c b/src/gallium/auxiliary/draw/draw_vs_aos.c index 458bbbe3765..c47647ea72d 100644 --- a/src/gallium/auxiliary/draw/draw_vs_aos.c +++ b/src/gallium/auxiliary/draw/draw_vs_aos.c @@ -2108,7 +2108,6 @@ struct draw_vs_varient *draw_vs_varient_aos_sse( struct draw_vertex_shader *vs, struct draw_vs_varient *varient = varient_aos_sse( vs, key ); if (varient == NULL) { - assert(0); varient = draw_vs_varient_generic( vs, key ); }