diff --git a/src/panfrost/lib/pan_scoreboard.h b/src/panfrost/lib/pan_scoreboard.h index 4910dac930b..f6476c66651 100644 --- a/src/panfrost/lib/pan_scoreboard.h +++ b/src/panfrost/lib/pan_scoreboard.h @@ -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;