diff options
author | Jason Ekstrand <[email protected]> | 2017-08-29 09:21:32 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2018-03-07 12:13:47 -0800 |
commit | 90c9f29518d32a29725b114f3b16ad8c62a812ff (patch) | |
tree | 236302586f2998c6788f92dd903b5341f3d61ae8 /src/intel/compiler/brw_nir.c | |
parent | 8256ee3fa363064ac3bd824d436aced81c61d23f (diff) |
i965/fs: Add support for nir_intrinsic_shuffle
Reviewed-by: Iago Toral Quiroga <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_nir.c')
-rw-r--r-- | src/intel/compiler/brw_nir.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/compiler/brw_nir.c b/src/intel/compiler/brw_nir.c index cbfafd4db02..dbad4a14b17 100644 --- a/src/intel/compiler/brw_nir.c +++ b/src/intel/compiler/brw_nir.c @@ -656,6 +656,7 @@ brw_preprocess_nir(const struct brw_compiler *compiler, nir_shader *nir) .lower_to_scalar = true, .lower_subgroup_masks = true, .lower_vote_trivial = !is_scalar, + .lower_shuffle = true, }; OPT(nir_lower_subgroups, &subgroups_options); |