From 08c13564d68101519bfecd45d94af7072050b6ed Mon Sep 17 00:00:00 2001 From: Nick Hamilton Date: Tue, 31 Mar 2026 17:05:54 +0100 Subject: [PATCH] pvr: Revert don't csb emit multi-layer clear attachments without rta support While testing HW without gs_rta_support it was raised that this change had been made in error. After retesting with the change reverted the listed tests still pass. This reverts commit d68344bffe893c1ecaa63ce5f2795c3479517da6. Backport-to: 26.0 Reported-by: Luigi Santivetti Signed-off-by: Nick Hamilton Reviewed-by: Luigi Santivetti Part-of: --- src/imagination/vulkan/rogue/pvr_blit.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/imagination/vulkan/rogue/pvr_blit.c b/src/imagination/vulkan/rogue/pvr_blit.c index 4533a87c9a1..115fdc2d667 100644 --- a/src/imagination/vulkan/rogue/pvr_blit.c +++ b/src/imagination/vulkan/rogue/pvr_blit.c @@ -2259,7 +2259,9 @@ static void pvr_clear_attachments(struct pvr_cmd_buffer *cmd_buffer, if (result != VK_SUCCESS) return; - continue; + if (clear_rect->baseArrayLayer != 0) + continue; + } else { pvr_finishme( "incomplete support for deferred (emulated) RTA clears");