panvk: Also load output attachments with LOAD_OP_NONE+STORE_OP_NONE

We already had this for LOAD_OP_DONT_CARE but we also need it for
LOAD_OP_NONE.

Cc: mesa-stable
Reviewed-by: Lars-Ivar Hesselberg Simonsen <lars-ivar.simonsen@arm.com>
Acked-by: Boris Brezillon <boris.brezillon@collabora.com>
Acked-by: Eric R. Smith <eric.smith@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39759>
This commit is contained in:
Faith Ekstrand 2026-02-06 15:15:22 -05:00 committed by Marge Bot
parent b0b6ca0035
commit 44ff0c4707
2 changed files with 0 additions and 3 deletions

View file

@ -9,8 +9,6 @@ dEQP-VK.wsi.wayland.swapchain.create.image_extent,Crash
dEQP-VK.wsi.wayland.swapchain.simulate_oom.image_extent,Crash
angle-KHR-GLES3.packed_depth_stencil.verify_read_pixels.depth24_stencil8,Fail
angle-KHR-GLES3.packed_depth_stencil.verify_read_pixels.depth32f_stencil8,Fail
angle-KHR-GLES31.core.shader_atomic_counters.advanced-usage-multi-stage,Fail
angle-KHR-GLES31.core.shader_storage_buffer_object.advanced-matrix-vsfs,Fail
angle-KHR-GLES31.core.shader_storage_buffer_object.advanced-usage-sync-vsfs,Fail

View file

@ -21,7 +21,6 @@ get_att_fb_load_op(const VkRenderingAttachmentInfo *att)
case VK_ATTACHMENT_LOAD_OP_LOAD:
return PAN_FB_LOAD_IMAGE;
case VK_ATTACHMENT_LOAD_OP_NONE:
return PAN_FB_LOAD_NONE;
case VK_ATTACHMENT_LOAD_OP_DONT_CARE:
/* This is a very frustrating corner case. From the spec:
*