From: Henri Verbeet Date: Sun, 5 Dec 2010 17:42:43 +0000 (+0100) Subject: r600g: Cleanup fetch shader resources in r600_pipe_shader_destroy(). X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=44094356149d9a63c197e15f9db344ef2f651d86;p=mesa.git r600g: Cleanup fetch shader resources in r600_pipe_shader_destroy(). --- diff --git a/src/gallium/drivers/r600/r600_shader.c b/src/gallium/drivers/r600/r600_shader.c index c5969c798c5..f53124d1009 100644 --- a/src/gallium/drivers/r600/r600_shader.c +++ b/src/gallium/drivers/r600/r600_shader.c @@ -361,6 +361,11 @@ r600_pipe_shader_destroy(struct pipe_context *ctx, struct r600_pipe_shader *shad { struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx; + if (shader->shader.processor_type == TGSI_PROCESSOR_VERTEX) { + r600_bo_reference(rctx->radeon, &shader->bo_fetch, NULL); + r600_bc_clear(&shader->shader.bc_fetch); + } + r600_bo_reference(rctx->radeon, &shader->bo, NULL); r600_bc_clear(&shader->shader.bc);