Mesa (master): llvmpipo/nir: free compute shader NIR

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue May 5 20:21:53 UTC 2020


Module: Mesa
Branch: master
Commit: 870b6a60509e2dd547dc75fee9290224ad306779
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=870b6a60509e2dd547dc75fee9290224ad306779

Author: Dave Airlie <airlied at redhat.com>
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 <sroland at vmware.com>
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);
 }



More information about the mesa-commit mailing list