diff options
author | Marek Olšák <maraeo@gmail.com> | 2010-08-19 23:32:04 +0200 |
---|---|---|
committer | Marek Olšák <maraeo@gmail.com> | 2010-08-19 23:32:04 +0200 |
commit | a9b20d45974045397b95b08a7a26e2b0aa8e32cf (patch) | |
tree | 1f7b4c3558e2d246a6232c0f9031ea7d9a63c2e0 /src/gallium/auxiliary | |
parent | 06991d87bedaaba5dde65027caa6fb49325b754e (diff) |
u_blitter: fix a memory leak
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/util/u_blitter.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_blitter.c b/src/gallium/auxiliary/util/u_blitter.c index b5b86b7214..49ee7bb31d 100644 --- a/src/gallium/auxiliary/util/u_blitter.c +++ b/src/gallium/auxiliary/util/u_blitter.c @@ -254,6 +254,7 @@ void util_blitter_destroy(struct blitter_context *blitter) ctx->dsa_write_depth_keep_stencil); pipe->delete_depth_stencil_alpha_state(pipe, ctx->dsa_write_depth_stencil); pipe->delete_depth_stencil_alpha_state(pipe, ctx->dsa_keep_depth_write_stencil); + pipe->delete_depth_stencil_alpha_state(pipe, ctx->dsa_flush_depth_stencil); pipe->delete_rasterizer_state(pipe, ctx->rs_state); pipe->delete_vs_state(pipe, ctx->vs_col); |