summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_vec4.h
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2015-11-25 14:01:00 -0800
committerJason Ekstrand <jason.ekstrand@intel.com>2015-12-03 20:58:12 -0800
commitaa35b0c2c71f054f72df5a85779d0862fa7d6e4a (patch)
tree2d4b4d1c15c0c8c831fbe06b554e266e7744703b /src/mesa/drivers/dri/i965/brw_vec4.h
parentc6bcc233696e0f716755ea588397206a339d2bca (diff)
downloadexternal_mesa3d-aa35b0c2c71f054f72df5a85779d0862fa7d6e4a.zip
external_mesa3d-aa35b0c2c71f054f72df5a85779d0862fa7d6e4a.tar.gz
external_mesa3d-aa35b0c2c71f054f72df5a85779d0862fa7d6e4a.tar.bz2
i965/vec4: Get rid of the nir_inputs array
It's not really buying us anything at this point. It's just a way of remapping one offset namespace onto another. We can just use the location namespace the whole way through. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vec4.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_vec4.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4.h b/src/mesa/drivers/dri/i965/brw_vec4.h
index 25b1139..ae5bf69 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4.h
+++ b/src/mesa/drivers/dri/i965/brw_vec4.h
@@ -314,7 +314,6 @@ public:
bool is_high_sampler(src_reg sampler);
virtual void emit_nir_code();
- virtual void nir_setup_inputs();
virtual void nir_setup_uniforms();
virtual void nir_setup_system_value_intrinsic(nir_intrinsic_instr *instr);
virtual void nir_setup_system_values();
@@ -347,7 +346,6 @@ public:
dst_reg *nir_locals;
dst_reg *nir_ssa_values;
- src_reg *nir_inputs;
dst_reg *nir_system_values;
protected: