mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 13:48:06 +02:00
pan/bi: Add BI_SWIZZLE_NONE
Fixes: 82328a5245 ("pan/bi: Generate instruction packer for new IR")
Reviewed-by: Christoph Pillmayer <christoph.pillmayer@arm.com>
Reviewed-by: Lars-Ivar Hesselberg Simonsen <lars-ivar.simonsen@arm.com>
Reviewed-by: Lorenzo Rossi <lorenzo.rossi@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40769>
This commit is contained in:
parent
48b2e6b551
commit
ab285efd1b
1 changed files with 3 additions and 0 deletions
|
|
@ -35,6 +35,9 @@ enum bi_swizzle {
|
|||
BI_SWIZZLE_H10 = 2,
|
||||
BI_SWIZZLE_H11 = 3,
|
||||
|
||||
/* Identity swizzle */
|
||||
BI_SWIZZLE_NONE = BI_SWIZZLE_H01,
|
||||
|
||||
/* 8-bit swizzle equivalents */
|
||||
BI_SWIZZLE_B0101 = BI_SWIZZLE_H00,
|
||||
BI_SWIZZLE_B0123 = BI_SWIZZLE_H01,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue