diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2008-06-11 09:15:54 +0100 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2008-06-11 09:19:48 +0100 |
commit | ab399b555c99c46958c421d900109f78901ddc99 (patch) | |
tree | ad1657e23768123ee2de056e2d0d7448853f0755 /src/gallium/auxiliary/draw | |
parent | e4cfe0854ad968193106048179b9b52ec1768f41 (diff) |
draw: remove debug assert on failover to generic vs varient
Diffstat (limited to 'src/gallium/auxiliary/draw')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs_aos.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs_aos.c b/src/gallium/auxiliary/draw/draw_vs_aos.c index 458bbbe376..c47647ea72 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 ); } |