mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 00:30:11 +01:00
nvc0: unreference images when the context is destroyed
Like other resources, we need to unreference all images. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
parent
8ae78f7d28
commit
44de03b0f8
1 changed files with 4 additions and 0 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue