OSDN Git Service

fix typo causing a segfault when a vertex program uses more than 96 parameters
authorRoland Scheidegger <rscheidegger@gmx.ch>
Wed, 30 Aug 2006 10:26:31 +0000 (10:26 +0000)
committerRoland Scheidegger <rscheidegger@gmx.ch>
Wed, 30 Aug 2006 10:26:31 +0000 (10:26 +0000)
src/mesa/drivers/dri/r200/r200_vertprog.c

index b0f13e5..4d87d2e 100644 (file)
@@ -132,7 +132,7 @@ static GLboolean r200VertexProgUpdateParams(GLcontext *ctx, struct r200_vertex_p
         break;
       }
       if (pi == 95) {
-        fcmd = (GLfloat *)rmesa->hw.vpp[1].cmd[VPP_CMD_0 + 1];
+        fcmd = (GLfloat *)&rmesa->hw.vpp[1].cmd[VPP_CMD_0 + 1];
       }
    }
    /* hack up the cmd_size so not the whole state atom is emitted always. */