mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
freedreno/ir3: fix linkage::var size
It should actually be 32 for a4xx/a5xx.. we still only advertise 16 but for a5xx the linkage map includes position/psize. Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
c416ea31cf
commit
ec01ef2db1
1 changed files with 1 additions and 1 deletions
|
|
@ -342,7 +342,7 @@ struct ir3_shader_linkage {
|
|||
uint8_t regid;
|
||||
uint8_t compmask;
|
||||
uint8_t loc;
|
||||
} var[16];
|
||||
} var[32];
|
||||
};
|
||||
|
||||
static inline void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue