From: Aaron Watry Date: Wed, 6 Nov 2013 22:49:22 +0000 (-0600) Subject: radeonsi/compute: Free program and program.kernels on shutdown X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=35dad4a1e235b2bf7fb3ecdb82aed0214db69a35;p=mesa.git radeonsi/compute: Free program and program.kernels on shutdown v2: Fix indentation Reviewed-by: Tom Stellard CC: "10.0" --- diff --git a/src/gallium/drivers/radeonsi/radeonsi_compute.c b/src/gallium/drivers/radeonsi/radeonsi_compute.c index 49caa2c6a87..e7bf5a4a597 100644 --- a/src/gallium/drivers/radeonsi/radeonsi_compute.c +++ b/src/gallium/drivers/radeonsi/radeonsi_compute.c @@ -245,7 +245,21 @@ static void radeonsi_launch_grid( } -static void si_delete_compute_state(struct pipe_context *ctx, void* state){} +static void si_delete_compute_state(struct pipe_context *ctx, void* state){ + struct si_pipe_compute *program = (struct si_pipe_compute *)state; + + if (!state) { + return; + } + + if (program->kernels) { + FREE(program->kernels); + } + + //And then free the program itself. + FREE(program); +} + static void si_set_compute_resources(struct pipe_context * ctx_, unsigned start, unsigned count, struct pipe_surface ** surfaces) { }