mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 20:08:06 +02:00
nir: Fix constant expression for unpack_64_4x16
Cc: Mesa-stable
Reviewed-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23173>
(cherry picked from commit 663d957480)
This commit is contained in:
parent
00ecfc8690
commit
22ab43f3e8
2 changed files with 2 additions and 2 deletions
|
|
@ -1813,7 +1813,7 @@
|
|||
"description": "nir: Fix constant expression for unpack_64_4x16",
|
||||
"nominated": true,
|
||||
"nomination_type": 0,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": null
|
||||
},
|
||||
|
|
|
|||
|
|
@ -407,7 +407,7 @@ unop_horiz("unpack_64_2x32", 2, tuint32, 1, tuint64,
|
|||
"dst.x = src0.x; dst.y = src0.x >> 32;")
|
||||
|
||||
unop_horiz("unpack_64_4x16", 4, tuint16, 1, tuint64,
|
||||
"dst.x = src0.x; dst.y = src0.x >> 16; dst.z = src0.x >> 32; dst.w = src0.w >> 48;")
|
||||
"dst.x = src0.x; dst.y = src0.x >> 16; dst.z = src0.x >> 32; dst.w = src0.x >> 48;")
|
||||
|
||||
unop_horiz("unpack_32_2x16", 2, tuint16, 1, tuint32,
|
||||
"dst.x = src0.x; dst.y = src0.x >> 16;")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue