aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nouveau
diff options
context:
space:
mode:
authorBen Skeggs <[email protected]>2020-06-07 09:52:33 +1000
committerMarge Bot <[email protected]>2020-06-10 22:52:42 +0000
commitcacf2961091b92b281b3fb9a98309fded10c1f33 (patch)
tree61a1eef7448749ca142e40e51863bbae71f770dd /src/gallium/drivers/nouveau
parent57259fa802bfaa6e9d166b9d3958adfda65ea417 (diff)
nvir/nir/gm107: switch off lower_extract_word
We can use PRMT here. Signed-off-by: Ben Skeggs <[email protected]> Reviewed-by: Karol Herbst <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5377>
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r--src/gallium/drivers/nouveau/codegen/nv50_ir_from_nir.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_nir.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_nir.cpp
index 7fcb1a0ff5d..a54facf8c6e 100644
--- a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_nir.cpp
+++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_nir.cpp
@@ -3407,7 +3407,7 @@ nvir_nir_shader_compiler_options(int chipset)
.lower_unpack_snorm_4x8 = true,
.lower_pack_split = false,
.lower_extract_byte = (chipset < NVISA_GM107_CHIPSET),
- .lower_extract_word = true,
+ .lower_extract_word = (chipset < NVISA_GM107_CHIPSET),
.lower_all_io_to_temps = false,
.lower_all_io_to_elements = false,
.vertex_id_zero_based = false,