Mesa (master): llvmpipe: stop using pipe_sampler_view_release()

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Mon Mar 18 02:19:20 UTC 2019


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

Author: Brian Paul <brianp at vmware.com>
Date:   Fri Mar  8 14:08:13 2019 -0700

llvmpipe: stop using pipe_sampler_view_release()

This was used to avoid freeing a sampler view which was created by a
context that was already deleted.  But the state tracker does not
allow that.

Reviewed-by: Roland Scheidegger <sroland at vmware.com>
Reviewed-by: Neha Bhende <bhenden at vmware.com>
Reviewed-by: Mathias Fröhlich <Mathias.Froehlich at web.de>
Reviewed-By: Jose Fonseca <jfonseca at vmware.com>

---

 src/gallium/drivers/llvmpipe/lp_state_sampler.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/src/gallium/drivers/llvmpipe/lp_state_sampler.c b/src/gallium/drivers/llvmpipe/lp_state_sampler.c
index c9aba1a8594..72823e4c84a 100644
--- a/src/gallium/drivers/llvmpipe/lp_state_sampler.c
+++ b/src/gallium/drivers/llvmpipe/lp_state_sampler.c
@@ -123,12 +123,6 @@ llvmpipe_set_sampler_views(struct pipe_context *pipe,
 
    /* set the new sampler views */
    for (i = 0; i < num; i++) {
-      /* Note: we're using pipe_sampler_view_release() here to work around
-       * a possible crash when the old view belongs to another context that
-       * was already destroyed.
-       */
-      pipe_sampler_view_release(pipe,
-                                &llvmpipe->sampler_views[shader][start + i]);
       /*
        * Warn if someone tries to set a view created in a different context
        * (which is why we need the hack above in the first place).




More information about the mesa-commit mailing list