mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
panvk: Set proper upper limit for IDVS reg blacklist on v12+
This was forgotten when introducing v12+ support. Signed-off-by: Mary Guillemard <mary.guillemard@collabora.com> Reviewed-by: Lars-Ivar Hesselberg Simonsen <lars-ivar.simonsen@arm.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35089>
This commit is contained in:
parent
bacd87ba3c
commit
50dc885eb2
1 changed files with 7 additions and 0 deletions
|
|
@ -151,7 +151,14 @@ enum panvk_sb_ids {
|
|||
enum panvk_cs_regs {
|
||||
/* RUN_IDVS staging regs. */
|
||||
PANVK_CS_REG_RUN_IDVS_SR_START = 0,
|
||||
|
||||
#if PAN_ARCH >= 12
|
||||
PANVK_CS_REG_RUN_IDVS_SR_END = 65,
|
||||
#elif PAN_ARCH == 11
|
||||
PANVK_CS_REG_RUN_IDVS_SR_END = 63,
|
||||
#else
|
||||
PANVK_CS_REG_RUN_IDVS_SR_END = 60,
|
||||
#endif
|
||||
|
||||
/* RUN_FRAGMENT staging regs.
|
||||
* SW ABI:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue