mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
pan/bi: Model Valhall special values as FAU
Not sure if this is "really" FAU but it's convenient to treat it as such. Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12026>
This commit is contained in:
parent
9324510173
commit
fccbf4985d
1 changed files with 9 additions and 0 deletions
|
|
@ -611,7 +611,16 @@ enum bir_fau {
|
|||
BIR_FAU_BLEND_0 = 8,
|
||||
/* blend descs 1 - 7 */
|
||||
BIR_FAU_TYPE_MASK = 15,
|
||||
|
||||
/* Valhall only */
|
||||
BIR_FAU_TLS_PTR = 16,
|
||||
BIR_FAU_WLS_PTR = 17,
|
||||
BIR_FAU_PROGRAM_COUNTER = 18,
|
||||
|
||||
BIR_FAU_UNIFORM = (1 << 7),
|
||||
/* Look up table on Valhall */
|
||||
BIR_FAU_IMMEDIATE = (1 << 8),
|
||||
|
||||
};
|
||||
|
||||
static inline bi_index
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue