mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
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:
parent
2193ae0253
commit
7c4cce5bfd
1 changed files with 7 additions and 0 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue