mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 12:40:09 +01:00
panfrost: Handle Valhall IDVS in job_uses_tiling
Valhall-style IDVS uses a distinct job type which has to be handled separately. Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15586>
This commit is contained in:
parent
ee9b63a7bb
commit
ac51142bab
1 changed files with 5 additions and 0 deletions
|
|
@ -131,6 +131,11 @@ struct pan_scoreboard {
|
|||
static bool
|
||||
panfrost_job_uses_tiling(enum mali_job_type type)
|
||||
{
|
||||
#if PAN_ARCH >= 9
|
||||
if (type == MALI_JOB_TYPE_MALLOC_VERTEX)
|
||||
return true;
|
||||
#endif
|
||||
|
||||
#if PAN_ARCH >= 6
|
||||
if (type == MALI_JOB_TYPE_INDEXED_VERTEX)
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue