diff options
Diffstat (limited to 'src/mesa/program/prog_statevars.c')
-rw-r--r-- | src/mesa/program/prog_statevars.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/program/prog_statevars.c b/src/mesa/program/prog_statevars.c index 2ac7b561b69..110dfda3062 100644 --- a/src/mesa/program/prog_statevars.c +++ b/src/mesa/program/prog_statevars.c @@ -399,14 +399,14 @@ _mesa_fetch_state(struct gl_context *ctx, const gl_state_index state[], COPY_4V(value, ctx->VertexProgram.Parameters[idx]); return; case STATE_LOCAL: - if (!ctx->VertexProgram.Current->Base.LocalParams) { - ctx->VertexProgram.Current->Base.LocalParams = + if (!ctx->VertexProgram.Current->LocalParams) { + ctx->VertexProgram.Current->LocalParams = calloc(MAX_PROGRAM_LOCAL_PARAMS, sizeof(float[4])); - if (!ctx->VertexProgram.Current->Base.LocalParams) + if (!ctx->VertexProgram.Current->LocalParams) return; } - COPY_4V(value, ctx->VertexProgram.Current->Base.LocalParams[idx]); + COPY_4V(value, ctx->VertexProgram.Current->LocalParams[idx]); return; default: _mesa_problem(ctx, "Bad state switch in _mesa_fetch_state()"); |