mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
radv,radeonsi: remove remaining occurrences of TCS epilog
TCS epilog has been removed few months ago. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31150>
This commit is contained in:
parent
e27eeff95d
commit
b377ddfd04
2 changed files with 0 additions and 9 deletions
|
|
@ -683,10 +683,6 @@ declare_shader_args(const struct radv_device *device, const struct radv_graphics
|
|||
add_ud_arg(args, 1, AC_ARG_INT, &args->tcs_offchip_layout, AC_UD_TCS_OFFCHIP_LAYOUT);
|
||||
}
|
||||
|
||||
if (info->has_epilog) {
|
||||
add_ud_arg(args, 1, AC_ARG_INT, &args->epilog_pc, AC_UD_EPILOG_PC);
|
||||
}
|
||||
|
||||
ac_add_arg(&args->ac, AC_ARG_VGPR, 1, AC_ARG_INT, &args->ac.tcs_patch_id);
|
||||
ac_add_arg(&args->ac, AC_ARG_VGPR, 1, AC_ARG_INT, &args->ac.tcs_rel_ids);
|
||||
|
||||
|
|
@ -703,10 +699,6 @@ declare_shader_args(const struct radv_device *device, const struct radv_graphics
|
|||
add_ud_arg(args, 1, AC_ARG_INT, &args->tcs_offchip_layout, AC_UD_TCS_OFFCHIP_LAYOUT);
|
||||
}
|
||||
|
||||
if (info->has_epilog) {
|
||||
add_ud_arg(args, 1, AC_ARG_INT, &args->epilog_pc, AC_UD_EPILOG_PC);
|
||||
}
|
||||
|
||||
ac_add_arg(&args->ac, AC_ARG_SGPR, 1, AC_ARG_INT, &args->ac.tess_offchip_offset);
|
||||
ac_add_arg(&args->ac, AC_ARG_SGPR, 1, AC_ARG_INT, &args->ac.tcs_factor_offset);
|
||||
if (args->explicit_scratch_args) {
|
||||
|
|
|
|||
|
|
@ -88,7 +88,6 @@ si_fill_aco_shader_info(struct si_shader *shader, struct aco_shader_info *info,
|
|||
case MESA_SHADER_TESS_CTRL:
|
||||
info->vs.tcs_in_out_eq = key->ge.opt.same_patch_vertices;
|
||||
info->vs.tcs_temp_only_input_mask = sel->info.tcs_vgpr_only_inputs;
|
||||
info->has_epilog = !shader->is_monolithic;
|
||||
info->tcs.pass_tessfactors_by_reg = sel->info.tessfactors_are_def_in_all_invocs;
|
||||
info->tcs.patch_stride = si_get_tcs_out_patch_stride(&sel->info);
|
||||
info->tcs.tcs_offchip_layout = args->tcs_offchip_layout;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue