On Sat, Mar 14, 2015 at 9:54 PM, Jordan Justen <[email protected]> wrote: > From: Paul Berry <[email protected]> > > Reviewed-by: Jordan Justen <[email protected]>
Reviewed-by: Kristian Høgsberg <[email protected]> > --- > src/mesa/program/program.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/src/mesa/program/program.c b/src/mesa/program/program.c > index 3c214d5..ba22a51 100644 > --- a/src/mesa/program/program.c > +++ b/src/mesa/program/program.c > @@ -101,6 +101,8 @@ _mesa_init_program(struct gl_context *ctx) > _mesa_reference_geomprog(ctx, &ctx->GeometryProgram.Current, > NULL); > > + _mesa_reference_compprog(ctx, &ctx->ComputeProgram.Current, NULL); > + > /* XXX probably move this stuff */ > ctx->ATIFragmentShader.Enabled = GL_FALSE; > ctx->ATIFragmentShader.Current = ctx->Shared->DefaultFragmentShader; > @@ -120,6 +122,7 @@ _mesa_free_program_data(struct gl_context *ctx) > _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current, NULL); > _mesa_delete_shader_cache(ctx, ctx->FragmentProgram.Cache); > _mesa_reference_geomprog(ctx, &ctx->GeometryProgram.Current, NULL); > + _mesa_reference_compprog(ctx, &ctx->ComputeProgram.Current, NULL); > > /* XXX probably move this stuff */ > if (ctx->ATIFragmentShader.Current) { > -- > 2.1.4 > > _______________________________________________ > mesa-dev mailing list > [email protected] > http://lists.freedesktop.org/mailman/listinfo/mesa-dev _______________________________________________ mesa-dev mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-dev
