broadcom: add cl_nobin debug option
Dumps the command list, excluding the binary resources. v2 (Juan): - Make this option independent from `cl` v3 (Iago): - Rename option name - Fix style issues - Do not print BO ranges Reviewed-by: Iago Toral Quiroga <itoral@igalia.com> Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12803>
This commit is contained in:
committed by
Marge Bot
parent
d220d8cb51
commit
9c158fcc70
@@ -34,12 +34,16 @@ v3dv_clif_dump(struct v3dv_device *device,
|
||||
struct v3dv_job *job,
|
||||
struct drm_v3d_submit_cl *submit)
|
||||
{
|
||||
if (!(V3D_DEBUG & (V3D_DEBUG_CL | V3D_DEBUG_CLIF)))
|
||||
if (!(V3D_DEBUG & (V3D_DEBUG_CL |
|
||||
V3D_DEBUG_CL_NO_BIN |
|
||||
V3D_DEBUG_CLIF)))
|
||||
return;
|
||||
|
||||
struct clif_dump *clif = clif_dump_init(&device->devinfo,
|
||||
stderr,
|
||||
V3D_DEBUG & V3D_DEBUG_CL);
|
||||
V3D_DEBUG & (V3D_DEBUG_CL |
|
||||
V3D_DEBUG_CL_NO_BIN),
|
||||
V3D_DEBUG & V3D_DEBUG_CL_NO_BIN);
|
||||
|
||||
set_foreach(job->bos, entry) {
|
||||
struct v3dv_bo *bo = (void *)entry->key;
|
||||
|
||||
Reference in New Issue
Block a user