1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-28 02:19:26 +01:00

[dxvk] Use STORE_OP_NONE in resolve passes

This commit is contained in:
Philip Rebohle 2025-03-21 04:32:11 +01:00
parent b341b95d10
commit 9aa2df2172

View File

@ -4822,7 +4822,7 @@ namespace dxvk {
attachment.resolveImageView = views.dstView->handle();
attachment.resolveImageLayout = dstLayout;
attachment.loadOp = VK_ATTACHMENT_LOAD_OP_LOAD;
attachment.storeOp = VK_ATTACHMENT_STORE_OP_STORE;
attachment.storeOp = VK_ATTACHMENT_STORE_OP_NONE;
VkRenderingAttachmentInfo stencilAttachment = attachment;
stencilAttachment.resolveMode = stencilMode;