1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-03 04:24:11 +01:00

[d3d9] ResolveZ: Only copy aspects that both images support

This commit is contained in:
Robin Kertels 2024-09-25 00:23:57 +02:00 committed by misyl
parent d7c2e3ac76
commit f5ca3cf5df

View File

@ -7640,14 +7640,26 @@ namespace dxvk {
const D3D9_VK_FORMAT_MAPPING srcFormatInfo = LookupFormat(srcDesc->Format);
const D3D9_VK_FORMAT_MAPPING dstFormatInfo = LookupFormat(dstDesc->Format);
const VkImageSubresource dstSubresource =
VkImageSubresource dstSubresource =
dstTextureInfo->GetSubresourceFromIndex(
dstFormatInfo.Aspect, 0);
const VkImageSubresource srcSubresource =
VkImageSubresource srcSubresource =
srcTextureInfo->GetSubresourceFromIndex(
srcFormatInfo.Aspect, src->GetSubresource());
if ((dstSubresource.aspectMask & srcSubresource.aspectMask) != 0) {
// for depthStencil -> depth or depthStencil -> stencil copies, only copy the aspect that both images support
dstSubresource.aspectMask = dstSubresource.aspectMask & srcSubresource.aspectMask;
srcSubresource.aspectMask = dstSubresource.aspectMask & srcSubresource.aspectMask;
} else if (unlikely(dstSubresource.aspectMask != VK_IMAGE_ASPECT_COLOR_BIT && srcSubresource.aspectMask != VK_IMAGE_ASPECT_COLOR_BIT)) {
Logger::err(str::format("D3D9DeviceEx::ResolveZ: Trying to blit from ",
srcFormatInfo.FormatColor, " (aspect ", srcSubresource.aspectMask, ")", " to ",
dstFormatInfo.FormatColor, " (aspect ", dstSubresource.aspectMask, ")"
));
return;
}
const VkImageSubresourceLayers dstSubresourceLayers = {
dstSubresource.aspectMask,
dstSubresource.mipLevel,