diff options
author | Timothy Arceri <[email protected]> | 2016-10-19 10:30:52 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2016-10-26 14:29:36 +1100 |
commit | 67c2d80a839614e4638d6cff390627122f8148ca (patch) | |
tree | fc6e4bd791478b11338cee1028bd77f0196c970c /src/mesa/main/context.c | |
parent | 65225c20c64dd5980f4e3a4eaecb9088aabea2fb (diff) |
i965/mesa/st: eliminate gl_tess_eval_program
We now get all the tes metadata from shader_info.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 1e4f87d6536..5f00365cd0d 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1298,7 +1298,7 @@ _mesa_free_context_data( struct gl_context *ctx ) _mesa_reference_vertprog(ctx, &ctx->VertexProgram._TnlProgram, NULL); _mesa_reference_program(ctx, &ctx->TessCtrlProgram._Current, NULL); - _mesa_reference_tesseprog(ctx, &ctx->TessEvalProgram._Current, NULL); + _mesa_reference_program(ctx, &ctx->TessEvalProgram._Current, NULL); _mesa_reference_geomprog(ctx, &ctx->GeometryProgram._Current, NULL); _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current, NULL); |