diff --git a/src/gallium/drivers/r600/r600_pipe_common.c b/src/gallium/drivers/r600/r600_pipe_common.c index ac59ae55389..8fa9aa89d97 100644 --- a/src/gallium/drivers/r600/r600_pipe_common.c +++ b/src/gallium/drivers/r600/r600_pipe_common.c @@ -1191,6 +1191,7 @@ const struct nir_shader_compiler_options r600_nir_fs_options = { .lower_int64_options = 0, .lower_extract_byte = true, .lower_extract_word = true, + .lower_rotate = true, .max_unroll_iterations = 32, .lower_all_io_to_temps = true, .vectorize_io = true, @@ -1211,6 +1212,7 @@ const struct nir_shader_compiler_options r600_nir_options = { .lower_int64_options = 0, .lower_extract_byte = true, .lower_extract_word = true, + .lower_rotate = true, .max_unroll_iterations = 32, .vectorize_io = true, .has_umad24 = true,