diff options
author | Jason Ekstrand <[email protected]> | 2017-05-04 16:36:26 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-05-09 15:08:07 -0700 |
commit | 2e9916ea0410385534dc3ff45cd476143a4e2041 (patch) | |
tree | b7c3849ad780370ccfaa1516ea72ecec33e2c3c1 /src/intel/compiler/brw_vec4_gs_visitor.h | |
parent | e31042ab40442b06a5226de85aa91bf9c652a099 (diff) |
i965/vec4: Use NIR to do GS input remapping
We're already doing this in the FS back-end. This just does the same
thing in the vec4 back-end.
Reviewed-by: Alejandro PiƱeiro <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_vec4_gs_visitor.h')
-rw-r--r-- | src/intel/compiler/brw_vec4_gs_visitor.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/intel/compiler/brw_vec4_gs_visitor.h b/src/intel/compiler/brw_vec4_gs_visitor.h index 09221f928d1..f57cdba8cf9 100644 --- a/src/intel/compiler/brw_vec4_gs_visitor.h +++ b/src/intel/compiler/brw_vec4_gs_visitor.h @@ -64,8 +64,7 @@ protected: virtual void nir_emit_intrinsic(nir_intrinsic_instr *instr); protected: - int setup_varying_inputs(int payload_reg, int *attribute_map, - int attributes_per_reg); + int setup_varying_inputs(int payload_reg, int attributes_per_reg); void emit_control_data_bits(); void set_stream_control_data_bits(unsigned stream_id); |