[Mesa-dev] [PATCH 15/36] st/nine: Correctly release sw cursor image
Axel Davy
axel.davy at ens.fr
Wed Dec 7 22:30:38 UTC 2016
cursor.image is used for software cursor
emulation. It wasn't released.
Signed-off-by: Axel Davy <axel.davy at ens.fr>
---
src/gallium/state_trackers/nine/device9.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/gallium/state_trackers/nine/device9.c b/src/gallium/state_trackers/nine/device9.c
index a78d18e..62f2e8e 100644
--- a/src/gallium/state_trackers/nine/device9.c
+++ b/src/gallium/state_trackers/nine/device9.c
@@ -511,6 +511,7 @@ NineDevice9_dtor( struct NineDevice9 *This )
FREE(This->state.vs_const_b);
FREE(This->state.vs_const_f_swvp);
+ pipe_resource_reference(&This->cursor.image, NULL);
FREE(This->cursor.hw_upload_temp);
if (This->swapchains) {
--
2.10.2
More information about the mesa-dev
mailing list