diff options
author | Jordan Justen <[email protected]> | 2016-05-22 22:31:06 -0700 |
---|---|---|
committer | Jordan Justen <[email protected]> | 2016-06-01 19:29:02 -0700 |
commit | 0a3acff5b53d409181dcd2f31a4a50af06f73a57 (patch) | |
tree | 30cf2c701698d352b24d7958f08278f6d3809ba7 /src/mesa/drivers/dri/i965/brw_fs.h | |
parent | b1f22c6317940dac543e44dd638ea9f4fbcd6ca7 (diff) |
i965: Remove old CS local ID handling
The old method pushed data for each channels uvec3 data of
gl_LocalInvocationID.
The new method pushes 1 dword of data that is a 'thread local ID'
value. Based on that value, we can generate gl_LocalInvocationIndex
and gl_LocalInvocationID with some calculations.
Cc: "12.0" <[email protected]>
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h index 4c1ac9cedd2..4237197d8d2 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.h +++ b/src/mesa/drivers/dri/i965/brw_fs.h @@ -267,7 +267,6 @@ public: unsigned base_offset, const nir_src &offset_src, unsigned num_components); void emit_cs_terminate(); - fs_reg *emit_cs_local_invocation_id_setup(); fs_reg *emit_cs_work_group_id_setup(); void emit_barrier(); |