OSDN Git Service

draw: remove debug assert on failover to generic vs varient
authorKeith Whitwell <keith@tungstengraphics.com>
Wed, 11 Jun 2008 08:15:54 +0000 (09:15 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Wed, 11 Jun 2008 08:19:48 +0000 (09:19 +0100)
src/gallium/auxiliary/draw/draw_vs_aos.c

index 458bbbe..c47647e 100644 (file)
@@ -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 );
    }