aco: remove unused aco_shader_info::tcs_offchip_layout

Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34863>
This commit is contained in:
Marek Olšák 2025-04-20 00:20:34 -04:00 committed by Marge Bot
parent f6b3c2c97a
commit b960137ebf
3 changed files with 0 additions and 4 deletions

View file

@ -120,8 +120,6 @@ struct aco_shader_info {
bool has_prolog;
} vs;
struct {
struct ac_arg tcs_offchip_layout;
/* Vulkan only */
uint32_t num_lds_blocks;
} tcs;

View file

@ -44,7 +44,6 @@ radv_aco_convert_shader_info(struct aco_shader_info *aco_info, const struct radv
aco_info->image_2d_view_of_3d = radv_key->image_2d_view_of_3d;
aco_info->epilog_pc = radv_args->epilog_pc;
aco_info->hw_stage = radv_select_hw_stage(radv, gfx_level);
aco_info->tcs.tcs_offchip_layout = radv_args->tcs_offchip_layout;
aco_info->next_stage_pc = radv_args->next_stage_pc;
aco_info->schedule_ngg_pos_exports = gfx_level < GFX11 && radv->has_ngg_culling && radv->has_ngg_early_prim_export;
}

View file

@ -88,7 +88,6 @@ si_fill_aco_shader_info(struct si_shader *shader, struct aco_shader_info *info,
info->vs.any_tcs_inputs_via_lds = sel->info.tcs_inputs_via_lds ||
(!shader->key.ge.opt.same_patch_vertices &&
sel->info.tcs_inputs_via_temp);
info->tcs.tcs_offchip_layout = args->tcs_offchip_layout;
break;
case MESA_SHADER_FRAGMENT:
info->ps.num_inputs = si_get_ps_num_interp(shader);