diff options
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_batch.c')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_batch.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_batch.c b/src/gallium/drivers/freedreno/freedreno_batch.c index 84dfa898c51..14b4e38568c 100644 --- a/src/gallium/drivers/freedreno/freedreno_batch.c +++ b/src/gallium/drivers/freedreno/freedreno_batch.c @@ -89,6 +89,7 @@ batch_init(struct fd_batch *batch) fd_reset_wfi(batch); util_dynarray_init(&batch->draw_patches, NULL); + util_dynarray_init(&batch->fb_read_patches, NULL); if (is_a2xx(ctx->screen)) { util_dynarray_init(&batch->shader_patches, NULL); @@ -168,6 +169,7 @@ batch_fini(struct fd_batch *batch) fd_submit_del(batch->submit); util_dynarray_fini(&batch->draw_patches); + util_dynarray_fini(&batch->fb_read_patches); if (is_a2xx(batch->ctx->screen)) { util_dynarray_fini(&batch->shader_patches); |