etnaviv: compiler: Enable more pack/unpack lowerings

Passes 16/20 dEQP-GLES3.functional.shaders.builtin_functions.pack_unpack.*
tests on GC7000.

Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34692>
This commit is contained in:
Christian Gmeiner 2025-04-24 11:32:06 +02:00 committed by Marge Bot
parent 2193ae0253
commit 7c4cce5bfd

View file

@ -70,8 +70,15 @@ etna_compiler_create(const char *renderer, const struct etna_core_info *info)
.max_unroll_iterations = 32,
.lower_pack_32_2x16_split = true,
.lower_pack_64_2x32_split = true,
.lower_pack_half_2x16 = true,
.lower_pack_snorm_2x16 = true,
.lower_pack_split = true,
.lower_pack_unorm_2x16 = true,
.lower_unpack_32_2x16_split = true,
.lower_unpack_64_2x32_split = true,
.lower_unpack_half_2x16 = true,
.lower_unpack_snorm_2x16 = true,
.lower_unpack_unorm_2x16 = true,
.lower_find_lsb = true,
.lower_ifind_msb = true,
.lower_ufind_msb = true,