From: Rob Clark Date: Wed, 5 Nov 2014 15:43:18 +0000 (-0500) Subject: freedreno/a3xx: missing u_upload_destroy X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2f024d2b1067496fad292efd2ca1b0ac9702a4dd;p=mesa.git freedreno/a3xx: missing u_upload_destroy Signed-off-by: Rob Clark --- diff --git a/src/gallium/drivers/freedreno/a3xx/fd3_context.c b/src/gallium/drivers/freedreno/a3xx/fd3_context.c index 4e3b5038bed..7e5a99ea571 100644 --- a/src/gallium/drivers/freedreno/a3xx/fd3_context.c +++ b/src/gallium/drivers/freedreno/a3xx/fd3_context.c @@ -55,6 +55,8 @@ fd3_context_destroy(struct pipe_context *pctx) pipe_resource_reference(&fd3_ctx->solid_vbuf, NULL); pipe_resource_reference(&fd3_ctx->blit_texcoord_vbuf, NULL); + u_upload_destroy(fd3_ctx->border_color_uploader); + fd_context_destroy(pctx); }