OSDN Git Service

vbo: fix crash in vbo_exec_bind_arrays()
authorBrian Paul <brianp@vmware.com>
Fri, 22 May 2009 19:15:41 +0000 (13:15 -0600)
committerBrian Paul <brianp@vmware.com>
Fri, 22 May 2009 19:15:41 +0000 (13:15 -0600)
When a vertex shader uses generic vertex attribute 0, but not gl_Vertex,
we need to set attribute[16] to point to attribute[0].  We were setting the
attribute size, but not the pointer.

Fixes crash in glsl/multitex.c when using the VertCoord attribute instead
of gl_Vertex.

src/mesa/vbo/vbo_exec_draw.c

index 5381cc4..da2d849 100644 (file)
@@ -185,6 +185,7 @@ static void vbo_exec_bind_arrays( GLcontext *ctx )
           (ctx->VertexProgram._Current->Base.InputsRead & VERT_BIT_GENERIC0)) {
          exec->vtx.inputs[16] = exec->vtx.inputs[0];
          exec->vtx.attrsz[16] = exec->vtx.attrsz[0];
+         exec->vtx.attrptr[16] = exec->vtx.attrptr[0];
          exec->vtx.attrsz[0] = 0;
       }
       break;