mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
radv,aco: remove unused clip/cull distances variables
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24883>
This commit is contained in:
parent
8ebb29245c
commit
43fe842b92
3 changed files with 0 additions and 8 deletions
|
|
@ -92,11 +92,6 @@ struct isel_context {
|
|||
|
||||
Temp arg_temps[AC_MAX_ARGS];
|
||||
|
||||
/* VS output information */
|
||||
bool export_clip_dists;
|
||||
unsigned num_clip_distances;
|
||||
unsigned num_cull_distances;
|
||||
|
||||
/* tessellation information */
|
||||
uint64_t tcs_temp_only_inputs;
|
||||
bool tcs_in_out_eq = false;
|
||||
|
|
|
|||
|
|
@ -252,7 +252,6 @@ struct radv_vs_output_info {
|
|||
bool writes_primitive_shading_rate;
|
||||
bool writes_primitive_shading_rate_per_primitive;
|
||||
bool export_prim_id;
|
||||
bool export_clip_dists;
|
||||
unsigned pos_exports;
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -1558,8 +1558,6 @@ radv_link_shaders_info(struct radv_device *device, struct radv_shader_stage *pro
|
|||
outinfo->vs_output_param_offset[VARYING_SLOT_CLIP_DIST0] = outinfo->param_exports++;
|
||||
if (producer->nir->info.outputs_written & VARYING_BIT_CLIP_DIST1)
|
||||
outinfo->vs_output_param_offset[VARYING_SLOT_CLIP_DIST1] = outinfo->param_exports++;
|
||||
|
||||
outinfo->export_clip_dists = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue