From: Marek Olšák Date: Sat, 7 May 2011 21:31:37 +0000 (+0200) Subject: r300g: unreference a zbuffer surface after decompression X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7297f2ac3c73039e28aef080dba2c228b78ca47e;p=mesa.git r300g: unreference a zbuffer surface after decompression --- diff --git a/src/gallium/drivers/r300/r300_blit.c b/src/gallium/drivers/r300/r300_blit.c index 04ed86c4ef6..95a43fe6752 100644 --- a/src/gallium/drivers/r300/r300_blit.c +++ b/src/gallium/drivers/r300/r300_blit.c @@ -377,6 +377,8 @@ void r300_decompress_zmask_locked(struct r300_context *r300) r300_decompress_zmask_locked_unsafe(r300); r300->context.set_framebuffer_state(&r300->context, &saved_fb); util_unreference_framebuffer_state(&saved_fb); + + pipe_surface_reference(&r300->locked_zbuffer, NULL); } /* Copy a block of pixels from one surface to another using HW. */