crocus: Call blorp_finish() when destroying context

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27502>
This commit is contained in:
Caio Oliveira 2024-02-06 13:02:32 -08:00 committed by Marge Bot
parent 083ef7e338
commit bf30127941

View file

@ -188,6 +188,9 @@ crocus_destroy_context(struct pipe_context *ctx)
{
struct crocus_context *ice = (struct crocus_context *)ctx;
struct crocus_screen *screen = (struct crocus_screen *)ctx->screen;
blorp_finish(&ice->blorp);
if (ctx->stream_uploader)
u_upload_destroy(ctx->stream_uploader);