diff --git a/src/gallium/drivers/i915/i915_screen.c b/src/gallium/drivers/i915/i915_screen.c index 31f24f642e7..c2a0bd3a640 100644 --- a/src/gallium/drivers/i915/i915_screen.c +++ b/src/gallium/drivers/i915/i915_screen.c @@ -119,7 +119,6 @@ static const nir_shader_compiler_options i915_compiler_options = { .lower_fmod = true, .lower_sincos = true, .lower_uniforms_to_ubo = true, - .lower_vector_cmp = true, .force_indirect_unrolling = nir_var_all, .force_indirect_unrolling_sampler = true, .max_unroll_iterations = 32, @@ -166,7 +165,6 @@ static const struct nir_shader_compiler_options gallivm_nir_options = { .max_unroll_iterations = 32, .lower_cs_local_index_to_id = true, .lower_uniforms_to_ubo = true, - .lower_vector_cmp = true, .lower_device_index_to_zero = true, /* .support_16bit_alu = true, */ .support_indirect_inputs = (uint8_t)BITFIELD_MASK(MESA_SHADER_STAGES), diff --git a/src/gallium/drivers/nouveau/nv30/nv30_screen.c b/src/gallium/drivers/nouveau/nv30/nv30_screen.c index bde9f299e6b..a3f1b929194 100644 --- a/src/gallium/drivers/nouveau/nv30/nv30_screen.c +++ b/src/gallium/drivers/nouveau/nv30/nv30_screen.c @@ -351,7 +351,6 @@ static const nir_shader_compiler_options nv30_base_compiler_options = { .lower_fmod = true, .lower_fpow = true, /* In hardware as of nv40 FS */ .lower_uniforms_to_ubo = true, - .lower_vector_cmp = true, .force_indirect_unrolling = nir_var_all, .force_indirect_unrolling_sampler = true, .max_unroll_iterations = 32, diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index 9eb9ee9872a..93023415333 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -86,7 +86,6 @@ static const nir_shader_compiler_options sp_compiler_options = { .lower_flrp64 = true, .lower_fmod = true, .lower_uniforms_to_ubo = true, - .lower_vector_cmp = true, .lower_int64_options = nir_lower_imul_2x32_64, .max_unroll_iterations = 32, diff --git a/src/gallium/drivers/svga/svga_screen.c b/src/gallium/drivers/svga/svga_screen.c index cbf527465ff..260c5484340 100644 --- a/src/gallium/drivers/svga/svga_screen.c +++ b/src/gallium/drivers/svga/svga_screen.c @@ -141,7 +141,6 @@ get_bool_cap(struct svga_winsys_screen *sws, SVGA3dDevCapIndex cap, .lower_flrp64 = true, \ .lower_ldexp = true, \ .lower_uniforms_to_ubo = true, \ - .lower_vector_cmp = true, \ .lower_cs_local_index_to_id = true, \ .max_unroll_iterations = 32 diff --git a/src/mesa/state_tracker/st_program.c b/src/mesa/state_tracker/st_program.c index be2d2c4b8ea..f40b27bc1af 100644 --- a/src/mesa/state_tracker/st_program.c +++ b/src/mesa/state_tracker/st_program.c @@ -654,7 +654,6 @@ static const struct nir_shader_compiler_options draw_nir_options = { .max_unroll_iterations = 32, .lower_to_scalar = true, .lower_uniforms_to_ubo = true, - .lower_vector_cmp = true, .lower_device_index_to_zero = true, .support_16bit_alu = true, .lower_fisnormal = true,