diff options
author | Tilman Sauerbeck <[email protected]> | 2010-10-31 12:16:03 +0100 |
---|---|---|
committer | Tilman Sauerbeck <[email protected]> | 2010-11-02 21:52:39 +0100 |
commit | ecb1b8b98f7b2464e29e56a1f1bf87f74129ac08 (patch) | |
tree | e8822f52692684ccd92486892a8310499acc617c /src/gallium/drivers/r600/r600_pipe.c | |
parent | c49dcaef65296dd51d374d3f903734c46b601b2d (diff) |
r600g: Delete custom_dsa_flush on shutdown.
Signed-off-by: Tilman Sauerbeck <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index d25de556644..952c7f6b87f 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -77,6 +77,8 @@ static void r600_destroy_context(struct pipe_context *context) { struct r600_pipe_context *rctx = (struct r600_pipe_context *)context; + rctx->context.delete_depth_stencil_alpha_state(&rctx->context, rctx->custom_dsa_flush); + r600_context_fini(&rctx->ctx); for (int i = 0; i < R600_PIPE_NSTATES; i++) { free(rctx->states[i]); |