From: Keith Whitwell Date: Tue, 29 Jan 2008 15:17:56 +0000 (+0000) Subject: gallium: weaken assert slightly X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1aaed3856878a39beb5aab0402d2adb8b277e812;p=mesa.git gallium: weaken assert slightly --- diff --git a/src/mesa/pipe/draw/draw_vf.c b/src/mesa/pipe/draw/draw_vf.c index 958d31933ba..06b84b93cc8 100644 --- a/src/mesa/pipe/draw/draw_vf.c +++ b/src/mesa/pipe/draw/draw_vf.c @@ -174,7 +174,7 @@ unsigned draw_vf_set_vertex_attributes( struct draw_vertex_fetch *vf, } else { - assert(vf->lookup[map[i].attrib] == 0); + assert(vf->lookup[map[i].attrib] == 0 || format == DRAW_EMIT_1F_CONST); vf->lookup[map[i].attrib] = &vf->attr[j]; vf->attr[j].attrib = map[i].attrib;