diff options
author | Tilman Sauerbeck <tilman@code-monkey.de> | 2010-09-23 22:30:46 +0200 |
---|---|---|
committer | Tilman Sauerbeck <tilman@code-monkey.de> | 2010-09-23 22:36:00 +0200 |
commit | ce8c71817b89ae97f960ba517becc8a74431206f (patch) | |
tree | 7e0fe4614ec4e3020eb26e97fc0603aee19f1e90 | |
parent | a62efdf82c20747feb11dfd7756f0579aa914b57 (diff) |
r600g: Destroy the blitter.
Signed-off-by: Tilman Sauerbeck <tilman@code-monkey.de>
-rw-r--r-- | src/gallium/drivers/r600/r600_context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_context.c b/src/gallium/drivers/r600/r600_context.c index b9abff9dc1..e8eb814209 100644 --- a/src/gallium/drivers/r600/r600_context.c +++ b/src/gallium/drivers/r600/r600_context.c @@ -57,6 +57,8 @@ static void r600_destroy_context(struct pipe_context *context) free(rctx->vs_constant); free(rctx->vs_resource); + util_blitter_destroy(rctx->blitter); + u_upload_destroy(rctx->upload_vb); u_upload_destroy(rctx->upload_ib); |