diff options
author | Kenneth Graunke <[email protected]> | 2019-05-03 14:37:11 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-05-14 13:16:28 -0700 |
commit | 076159b40b96096ba01413abc011a26c9acf7176 (patch) | |
tree | 160a591151bd0d82748109ca177235bc0ad63aad /src/intel/compiler/brw_fs.h | |
parent | 3d84fd29e8b1dcd3501c19c67d2f2213ea9275cf (diff) |
intel/compiler: Move ICP handle fetching into a helper function.
This will be significantly different in 8_PATCH mode.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_fs.h')
-rw-r--r-- | src/intel/compiler/brw_fs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/intel/compiler/brw_fs.h b/src/intel/compiler/brw_fs.h index 6ff90e3ce49..8ae73401cdf 100644 --- a/src/intel/compiler/brw_fs.h +++ b/src/intel/compiler/brw_fs.h @@ -249,6 +249,9 @@ public: fs_reg get_nir_src_imm(const nir_src &src); fs_reg get_nir_dest(const nir_dest &dest); fs_reg get_indirect_offset(nir_intrinsic_instr *instr); + fs_reg get_tcs_single_patch_icp_handle(const brw::fs_builder &bld, + nir_intrinsic_instr *instr); + void emit_percomp(const brw::fs_builder &bld, const fs_inst &inst, unsigned wr_mask); |