mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-03 03:28:09 +02:00
pan/va: Add missing 8bit widen swizzles
Reviewed-by: Christoph Pillmayer <christoph.pillmayer@arm.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36638>
This commit is contained in:
parent
dc79d7af55
commit
0ad90e5a31
1 changed files with 8 additions and 0 deletions
|
|
@ -280,6 +280,14 @@ va_pack_widen(const bi_instr *I, enum bi_swizzle swz, enum va_size size)
|
|||
return VA_SWIZZLES_8_BIT_B2222;
|
||||
case BI_SWIZZLE_B3333:
|
||||
return VA_SWIZZLES_8_BIT_B3333;
|
||||
case BI_SWIZZLE_B0011:
|
||||
return VA_SWIZZLES_8_BIT_B0011;
|
||||
case BI_SWIZZLE_B2301:
|
||||
return VA_SWIZZLES_8_BIT_B2301;
|
||||
case BI_SWIZZLE_B1032:
|
||||
return VA_SWIZZLES_8_BIT_B1032;
|
||||
case BI_SWIZZLE_B2233:
|
||||
return VA_SWIZZLES_8_BIT_B2233;
|
||||
default:
|
||||
invalid_instruction(I, "8-bit widen");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue