[d3d9] Don't use VK_RESOLVE_MODE_AVERAGE_BIT_KHR for stencil resolves

Doesn't work, always write sample zero instead.
This commit is contained in:
Philip Rebohle 2022-07-02 15:26:02 +02:00
parent 76ba03398d
commit e406484b84
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
1 changed files with 1 additions and 1 deletions

View File

@ -1066,7 +1066,7 @@ namespace dxvk {
ctx->resolveDepthStencilImage(
cDstImage, cSrcImage, cRegion,
VK_RESOLVE_MODE_AVERAGE_BIT_KHR,
VK_RESOLVE_MODE_AVERAGE_BIT_KHR);
VK_RESOLVE_MODE_SAMPLE_ZERO_BIT_KHR);
}
});
};