Re: [Mesa-dev] [PATCH v2 30/37] panfrost: Add a panfrost_flush_all_batches() helper

2019-09-16 Thread Alyssa Rosenzweig
> diff --git a/src/gallium/drivers/panfrost/pan_compute.c > b/src/gallium/drivers/panfrost/pan_compute.c > index 4639c1b03c38..036dffbb17be 100644 > --- a/src/gallium/drivers/panfrost/pan_compute.c > +++ b/src/gallium/drivers/panfrost/pan_compute.c > @@ -133,7 +133,7 @@ panfrost_launch_grid(struct

[Mesa-dev] [PATCH v2 30/37] panfrost: Add a panfrost_flush_all_batches() helper

2019-09-16 Thread Boris Brezillon
And use it in panfrost_flush() to flush all batches, and not only the one currently bound to the context. We also replace all internal calls to panfrost_flush() by panfrost_flush_all_batches() ones. Signed-off-by: Boris Brezillon --- src/gallium/drivers/panfrost/pan_compute.c | 2 +- src/gall