mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-07 03:20:28 +01:00
broadcom/vc5: Drop the throttling code.
Since I'll be using the DRM scheduler, we won't run into the problem of a runaway client starving other clients of GPU time.
This commit is contained in:
parent
dd9c476165
commit
aedfd8ede4
1 changed files with 0 additions and 9 deletions
|
|
@ -422,15 +422,6 @@ vc5_job_submit(struct vc5_context *vc5, struct vc5_job *job)
|
|||
}
|
||||
}
|
||||
|
||||
if (vc5->last_emit_seqno - vc5->screen->finished_seqno > 5) {
|
||||
if (!vc5_wait_seqno(vc5->screen,
|
||||
vc5->last_emit_seqno - 5,
|
||||
PIPE_TIMEOUT_INFINITE,
|
||||
"job throttling")) {
|
||||
fprintf(stderr, "Job throttling failed\n");
|
||||
}
|
||||
}
|
||||
|
||||
done:
|
||||
vc5_job_free(vc5, job);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue