diff options
author | Sagar Ghuge <[email protected]> | 2019-06-03 17:11:57 -0700 |
---|---|---|
committer | Sagar Ghuge <[email protected]> | 2019-07-01 10:14:22 -0700 |
commit | 456557a837ea005763283b6cbd172fe3b9c7e8f4 (patch) | |
tree | a24514b5ca5eef508d28957a93a0b8b61fac67bb /src/gallium/drivers/nouveau/nv50 | |
parent | 1e92e83856b1ef8a827a63359d59ed7883ed4994 (diff) |
nir: Add lower_rotate flag and set to true in all drivers
Signed-off-by: Sagar Ghuge <[email protected]>
Suggested-by: Matt Turner <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/nv50')
-rw-r--r-- | src/gallium/drivers/nouveau/nv50/nv50_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_screen.c b/src/gallium/drivers/nouveau/nv50/nv50_screen.c index b84330b4b38..3db1f38c9e4 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_screen.c +++ b/src/gallium/drivers/nouveau/nv50/nv50_screen.c @@ -900,6 +900,7 @@ static const nir_shader_compiler_options nir_options = { .lower_extract_word = true, .lower_all_io_to_temps = false, .lower_cs_local_index_from_id = true, + .lower_rotate = true, .use_interpolated_input_intrinsics = true, .max_unroll_iterations = 32, }; |