From 1f73e2bb942783bf143185a58d2290fda2b08c81 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Sun, 17 Jul 2016 20:32:46 +0200 Subject: [PATCH] st/mesa: unreference optional shaders when unbinding MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Nicolai Hähnle --- src/mesa/state_tracker/st_atom_shader.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mesa/state_tracker/st_atom_shader.c b/src/mesa/state_tracker/st_atom_shader.c index b3401c48d52..7a23469cede 100644 --- a/src/mesa/state_tracker/st_atom_shader.c +++ b/src/mesa/state_tracker/st_atom_shader.c @@ -217,6 +217,7 @@ update_gp( struct st_context *st ) if (!st->ctx->GeometryProgram._Current) { cso_set_geometry_shader_handle(st->cso_context, NULL); + st_reference_geomprog(st, &st->gp, NULL); return; } @@ -245,6 +246,7 @@ update_tcp( struct st_context *st ) if (!st->ctx->TessCtrlProgram._Current) { cso_set_tessctrl_shader_handle(st->cso_context, NULL); + st_reference_tesscprog(st, &st->tcp, NULL); return; } @@ -273,6 +275,7 @@ update_tep( struct st_context *st ) if (!st->ctx->TessEvalProgram._Current) { cso_set_tesseval_shader_handle(st->cso_context, NULL); + st_reference_tesseprog(st, &st->tep, NULL); return; } @@ -301,6 +304,7 @@ update_cp( struct st_context *st ) if (!st->ctx->ComputeProgram._Current) { cso_set_compute_shader_handle(st->cso_context, NULL); + st_reference_compprog(st, &st->cp, NULL); return; } -- 2.30.2