diff options
author | Rob Clark <[email protected]> | 2018-07-30 08:38:28 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2018-08-14 15:46:34 -0400 |
commit | 13b9d32fb1d846b207f330140b53bda3047ee3af (patch) | |
tree | cdb86b6e2613d7155cf80cbc1df7dacc80d2dfdd /src/gallium/drivers/freedreno/a3xx | |
parent | dc9705f30deabb789735966e3d2278e3c9e00c8a (diff) |
freedreno: move free() into fdN_context_destroy()
Following patches will be doing further cleanup after calling
fd_context_destroy() so it is easier if we move the free() into
the per-gen backend code.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/a3xx')
-rw-r--r-- | src/gallium/drivers/freedreno/a3xx/fd3_context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/a3xx/fd3_context.c b/src/gallium/drivers/freedreno/a3xx/fd3_context.c index 3623b9cf773..bb9dd2893e7 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) fd_hw_query_fini(pctx); fd_context_destroy(pctx); + + free(fd3_ctx); } static const uint8_t primtypes[] = { |