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_fs.h | |
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_fs.h')
-rw-r--r-- | src/intel/compiler/brw_fs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/intel/compiler/brw_fs.h b/src/intel/compiler/brw_fs.h index b0799a0f5e2..1b7df844696 100644 --- a/src/intel/compiler/brw_fs.h +++ b/src/intel/compiler/brw_fs.h @@ -471,6 +471,11 @@ private: struct brw_reg reg, struct brw_reg indirect_byte_offset); + void generate_shuffle(fs_inst *inst, + struct brw_reg dst, + struct brw_reg src, + struct brw_reg idx); + bool patch_discard_jumps_to_fb_writes(); const struct brw_compiler *compiler; |