mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
v3dv: lower unpack_{u,s}norm_2x16
The hardware doesn't have unorm/snorm packing variants and we were already lowering the packing versions of these. Fixes: dEQP-VK.glsl.builtin.function.pack_unpack.unpacksnorm2x16_compute dEQP-VK.glsl.builtin.function.pack_unpack.unpackunorm2x16_compute Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6766>
This commit is contained in:
parent
e59e706928
commit
4b86903313
1 changed files with 2 additions and 0 deletions
|
|
@ -181,6 +181,8 @@ const nir_shader_compiler_options v3dv_nir_options = {
|
|||
.lower_fmod = true,
|
||||
.lower_pack_unorm_2x16 = true,
|
||||
.lower_pack_snorm_2x16 = true,
|
||||
.lower_unpack_unorm_2x16 = true,
|
||||
.lower_unpack_snorm_2x16 = true,
|
||||
.lower_pack_unorm_4x8 = true,
|
||||
.lower_pack_snorm_4x8 = true,
|
||||
.lower_unpack_unorm_4x8 = true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue