diff options
author | Ilia Mirkin <[email protected]> | 2015-06-29 00:23:55 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-06-29 00:46:53 -0400 |
commit | 61912036d1cb67e52b1cc191bdff8ebded439e8c (patch) | |
tree | 7c6d4db47b02fcc48c5bdc511f1cadc046833e9c /src/gallium/drivers/nouveau/nv30 | |
parent | b5622313ea2e070cc0c20c7cdccd844d383713d0 (diff) |
nv30: avoid leaking blit fp/vp
Signed-off-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/nv30')
-rw-r--r-- | src/gallium/drivers/nouveau/nv30/nv30_context.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nv30/nv30_context.c b/src/gallium/drivers/nouveau/nv30/nv30_context.c index 617b0887810..ef035e58f3c 100644 --- a/src/gallium/drivers/nouveau/nv30/nv30_context.c +++ b/src/gallium/drivers/nouveau/nv30/nv30_context.c @@ -165,6 +165,12 @@ nv30_context_destroy(struct pipe_context *pipe) if (nv30->draw) draw_destroy(nv30->draw); + if (nv30->blit_vp) + nouveau_heap_free(&nv30->blit_vp); + + if (nv30->blit_fp) + pipe_resource_reference(&nv30->blit_fp, NULL); + if (nv30->screen->base.pushbuf->user_priv == &nv30->bufctx) nv30->screen->base.pushbuf->user_priv = NULL; |