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:
Alyssa Rosenzweig 2022-01-21 12:48:53 -05:00 committed by Marge Bot
parent ee9b63a7bb
commit ac51142bab

View file

@ -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;