diff options
| -rw-r--r-- | src/mesa/drivers/dri/i965/brw_fallback.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fallback.c b/src/mesa/drivers/dri/i965/brw_fallback.c index 4d84ba8813..56e21e339e 100644 --- a/src/mesa/drivers/dri/i965/brw_fallback.c +++ b/src/mesa/drivers/dri/i965/brw_fallback.c @@ -280,6 +280,9 @@ void brw_loopback_vertex_list( GLcontext *ctx,     GLuint i, nr = 0;     for (i = 0 ; i <= BRW_ATTRIB_TEX7 ; i++) { +      if (i == BRW_ATTRIB_INDEX || i == BRW_ATTRIB_EDGEFLAG) +                   continue; +        if (attrsz[i]) {  	 la[nr].target = i;  	 la[nr].sz = attrsz[i];  | 
