From a3652af380cc1d4ec55fe3f784b7c66082fa2be1 Mon Sep 17 00:00:00 2001 From: Connor Abbott Date: Thu, 16 Oct 2025 09:17:07 -0400 Subject: [PATCH] tu: Also disable stencil load for attachments not in GMEM We were accidentally still emitting loads for D32S8 resolve attachments. Cc: mesa-stable Part-of: --- src/freedreno/vulkan/tu_pass.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/freedreno/vulkan/tu_pass.cc b/src/freedreno/vulkan/tu_pass.cc index 3dfb3b70fba..1c77ea64e26 100644 --- a/src/freedreno/vulkan/tu_pass.cc +++ b/src/freedreno/vulkan/tu_pass.cc @@ -1135,6 +1135,7 @@ tu_CreateRenderPass2(VkDevice _device, if (!att->gmem) { att->clear_mask = 0; att->load = false; + att->load_stencil = false; } }