Module: Mesa Branch: master Commit: 870b6a60509e2dd547dc75fee9290224ad306779 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=870b6a60509e2dd547dc75fee9290224ad306779
Author: Dave Airlie <[email protected]> Date: Tue May 5 16:03:34 2020 +1000 llvmpipo/nir: free compute shader NIR I forgot this in the last round. Fixes: 18f896e55d96 (llvmpipe: add initial nir support) Reviewed-by: Roland Scheidegger <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4899> --- src/gallium/drivers/llvmpipe/lp_state_cs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/drivers/llvmpipe/lp_state_cs.c b/src/gallium/drivers/llvmpipe/lp_state_cs.c index b57e1068a06..ff767a2a860 100644 --- a/src/gallium/drivers/llvmpipe/lp_state_cs.c +++ b/src/gallium/drivers/llvmpipe/lp_state_cs.c @@ -523,6 +523,8 @@ llvmpipe_delete_compute_state(struct pipe_context *pipe, llvmpipe_remove_cs_shader_variant(llvmpipe, li->base); li = next; } + if (shader->base.ir.nir) + ralloc_free(shader->base.ir.nir); tgsi_free_tokens(shader->base.tokens); FREE(shader); } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
