diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-07-15 11:32:23 -0700 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-07-15 16:12:55 -0700 |
commit | 07a1f3d1200a63ca2377c44ff072484e47c80756 (patch) | |
tree | 6b72b2b4d65ce58c153bc1ef3cb9a6bbf54bf43e | |
parent | fae790ecfcd0f73c6512e52a2e430ed1ce7f5b12 (diff) |
panfrost: Cleanup after scoreboarding
Signed-off-by: Alyssa Rosenzweig <[email protected]>
-rw-r--r-- | src/gallium/drivers/panfrost/pan_scoreboard.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/panfrost/pan_scoreboard.c b/src/gallium/drivers/panfrost/pan_scoreboard.c index 63463daf0b4..1d15ca80338 100644 --- a/src/gallium/drivers/panfrost/pan_scoreboard.c +++ b/src/gallium/drivers/panfrost/pan_scoreboard.c @@ -500,4 +500,10 @@ panfrost_scoreboard_link_batch(struct panfrost_job *batch) } } + /* Cleanup */ + free(no_incoming); + free(dependents); + free(edge_removal_1); + free(edge_removal_2); + } |