summaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2018-06-27 16:58:55 -0700
committerEric Anholt <[email protected]>2018-07-30 14:29:01 -0700
commit2df6f1a3dfcec9abc256c4648484e704b62d5210 (patch)
tree606172ecc0fa9a81210bb3779f1a02510853acc1 /src/gallium
parentc6449e33e3b3ec9ea0509aa7c91d1127c81ef1e5 (diff)
v3d: Include commands to run the BCL and RCL in CLIF dumps.
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/v3d/v3d_job.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/gallium/drivers/v3d/v3d_job.c b/src/gallium/drivers/v3d/v3d_job.c
index d7df04c03c9..3645305f4f0 100644
--- a/src/gallium/drivers/v3d/v3d_job.c
+++ b/src/gallium/drivers/v3d/v3d_job.c
@@ -363,16 +363,7 @@ v3d_clif_dump(struct v3d_context *v3d, struct v3d_job *job)
ralloc_free(name);
}
- fprintf(stderr, "BCL: 0x%08x..0x%08x\n",
- job->submit.bcl_start, job->submit.bcl_end);
-
- clif_dump_add_cl(clif, job->submit.bcl_start, job->submit.bcl_end);
-
- fprintf(stderr, "RCL: 0x%08x..0x%08x\n",
- job->submit.rcl_start, job->submit.rcl_end);
- clif_dump_add_cl(clif, job->submit.rcl_start, job->submit.rcl_end);
-
- clif_dump(clif);
+ clif_dump(clif, &job->submit);
clif_dump_destroy(clif);
}