diff options
author | Kenneth Graunke <[email protected]> | 2017-05-21 01:36:14 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2019-07-24 18:00:13 +0000 |
commit | 517005b4cf376b292f61d786d419e2a611e4a02a (patch) | |
tree | a3fa98353d391aa1ea680d0baccc846010836f70 /src/intel/compiler/brw_vec4.h | |
parent | d10de2530976ed3aba9c5d077e2edb141f71e7dd (diff) |
i965: Use NIR to lower legacy userclipping.
This allows us to drop legacy userclip plane handling in both the vec4
and FS backends, and simplifies a few interfaces.
v2 (Jason Ekstrand):
- Move brw_nir_lower_legacy_clipping to brw_nir_uniforms.cpp because
it's i965-specific.
- Handle adding the params in brw_nir_lower_legacy_clipping
- Call brw_nir_lower_legacy_clipping from brw_codegen_vs_prog
Co-authored-by: Jason Ekstrand <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_vec4.h')
-rw-r--r-- | src/intel/compiler/brw_vec4.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_vec4.h b/src/intel/compiler/brw_vec4.h index a8e0049bf9c..ab2ecc47f58 100644 --- a/src/intel/compiler/brw_vec4.h +++ b/src/intel/compiler/brw_vec4.h @@ -109,7 +109,6 @@ public: int *virtual_grf_start; int *virtual_grf_end; brw::vec4_live_variables *live_intervals; - dst_reg userplane[MAX_CLIP_PLANES]; bool need_all_constants_in_pull_buffer; |