panfrost: Stop passing has_draws to panfrost_drm_submit_vs_fs_batch()

has_draws can be inferred directly from the batch->last_job value, no
need to pass it around.

Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
This commit is contained in:
Boris Brezillon 2019-09-14 09:11:09 +02:00
parent 07085fe8a4
commit 1e47c3ee7b
3 changed files with 4 additions and 5 deletions

View File

@ -271,9 +271,10 @@ panfrost_drm_submit_batch(struct panfrost_batch *batch, u64 first_job_desc,
}
int
panfrost_drm_submit_vs_fs_batch(struct panfrost_batch *batch, bool has_draws)
panfrost_drm_submit_vs_fs_batch(struct panfrost_batch *batch)
{
struct panfrost_context *ctx = batch->ctx;
bool has_draws = batch->last_job.gpu;
int ret = 0;
panfrost_batch_add_bo(batch, ctx->scratchpad);

View File

@ -284,9 +284,7 @@ panfrost_batch_submit(struct panfrost_batch *batch)
panfrost_scoreboard_link_batch(batch);
bool has_draws = batch->last_job.gpu;
ret = panfrost_drm_submit_vs_fs_batch(batch, has_draws);
ret = panfrost_drm_submit_vs_fs_batch(batch);
if (ret)
fprintf(stderr, "panfrost_batch_submit failed: %d\n", ret);

View File

@ -132,7 +132,7 @@ panfrost_drm_import_bo(struct panfrost_screen *screen, int fd);
int
panfrost_drm_export_bo(struct panfrost_screen *screen, const struct panfrost_bo *bo);
int
panfrost_drm_submit_vs_fs_batch(struct panfrost_batch *batch, bool has_draws);
panfrost_drm_submit_vs_fs_batch(struct panfrost_batch *batch);
unsigned
panfrost_drm_query_gpu_version(struct panfrost_screen *screen);
int