v3d: actually root the first BO in a command list in the job

We were passing cl->bo, which is NULL, so v3d_job_add_bo was a no-op.

Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
Iago Toral Quiroga 2019-12-12 11:19:23 +01:00 committed by Iago Toral
parent 06db271a6c
commit ca475d5fba
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ v3d_cl_ensure_space_with_branch(struct v3d_cl *cl, uint32_t space)
v3d_bo_unreference(&cl->bo);
} else {
/* Root the first RCL/BCL BO in the job. */
v3d_job_add_bo(cl->job, cl->bo);
v3d_job_add_bo(cl->job, new_bo);
}
cl->bo = new_bo;