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

Author: Samuel Pitoiset <[email protected]>
Date:   Fri May  6 16:25:45 2016 +0200

nvc0: unreference images when the context is destroyed

Like other resources, we need to unreference all images.

Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>

---

 src/gallium/drivers/nouveau/nvc0/nvc0_context.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_context.c 
b/src/gallium/drivers/nouveau/nvc0/nvc0_context.c
index f6c58f2..428b33d 100644
--- a/src/gallium/drivers/nouveau/nvc0/nvc0_context.c
+++ b/src/gallium/drivers/nouveau/nvc0/nvc0_context.c
@@ -161,6 +161,10 @@ nvc0_context_unreference_resources(struct nvc0_context 
*nvc0)
       for (i = 0; i < NVC0_MAX_BUFFERS; ++i)
          pipe_resource_reference(&nvc0->buffers[s][i].buffer, NULL);
 
+   for (s = 0; s < 6; ++s)
+      for (i = 0; i < NVC0_MAX_IMAGES; ++i)
+         pipe_resource_reference(&nvc0->images[s][i].resource, NULL);
+
    for (i = 0; i < nvc0->num_tfbbufs; ++i)
       pipe_so_target_reference(&nvc0->tfbbuf[i], NULL);
 

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to