From ac99fbe591735e5c827527253552687c3c4e0b1b Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Wed, 2 Aug 2023 08:22:58 +0200 Subject: [PATCH] aco: add aco_shader_info::tcs::has_epilog This will be used by both RADV and RadeonSI to jump from the main TCS to the epilog. Signed-off-by: Samuel Pitoiset Part-of: --- src/amd/compiler/aco_shader_info.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/amd/compiler/aco_shader_info.h b/src/amd/compiler/aco_shader_info.h index 88a1791..c234f9e 100644 --- a/src/amd/compiler/aco_shader_info.h +++ b/src/amd/compiler/aco_shader_info.h @@ -91,6 +91,7 @@ struct aco_shader_info { } vs; struct { uint32_t num_lds_blocks; + bool has_epilog; } tcs; struct { bool has_epilog; -- 2.7.4