diff options
author | Aaron Watry <[email protected]> | 2013-11-06 16:49:22 -0600 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2013-11-15 13:39:41 -0800 |
commit | 3a98fc6abecc7bce02b3de4861f49db38daff775 (patch) | |
tree | 77b7fb1065173417a73b31ae38d4f70ba6076c72 | |
parent | 531637feee3c4fa378f2fe25399cff833592b269 (diff) |
radeonsi/compute: Free program and program.kernels on shutdown
v2: Fix indentation
Reviewed-by: Tom Stellard <[email protected]>
CC: "10.0" <[email protected]>
(cherry picked from commit 35dad4a1e235b2bf7fb3ecdb82aed0214db69a35)
-rw-r--r-- | src/gallium/drivers/radeonsi/radeonsi_compute.c | 16 |
1 files changed, 15 insertions, 1 deletions
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) { } |