Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Work around games sampling MSAA textures #4731

Merged
merged 13 commits into from
Mar 7, 2025
Merged

Work around games sampling MSAA textures #4731

merged 13 commits into from
Mar 7, 2025

Conversation

doitsujin
Copy link
Owner

@doitsujin doitsujin commented Mar 4, 2025

Huge pain in the arse, but this should fix striped patterns on Nvidia in a bunch of games that fuck up their MSAA usage.

TL;DR every Ubisoft game ever (and a bunch of others) try to bind a multisampled image as a plain Texture2D instead of either resolving or using Texture2DMS in the shader. This is light years deep into undefined behaviour territory, but happens to work on some native drivers. On AMD, this has trivially worked before with DXVK as well because the hardware samples from the first plane, but it's invalid Vulkan either way and made MSAA completely ineffective in a number of games that essentially draw the unresolved image to the swapchain (think World of Final Fantasy, #1216).

Instead, we can do the right thing and just do an implicit SAMPLE_ZERO resolve, which roughly matches what happens on AMD hardware anyway.

@doitsujin doitsujin marked this pull request as draft March 4, 2025 13:47
@doitsujin doitsujin force-pushed the msaa-sampling branch 2 times, most recently from 48e722c to 1eb082e Compare March 4, 2025 14:47
@Blisto91
Copy link
Contributor

Blisto91 commented Mar 4, 2025

Verified that it fixes #1885 and #4480

@doitsujin doitsujin force-pushed the msaa-sampling branch 2 times, most recently from 40e7451 to e8856ea Compare March 4, 2025 18:54
@doitsujin doitsujin marked this pull request as ready for review March 4, 2025 18:58
@doitsujin doitsujin force-pushed the msaa-sampling branch 8 times, most recently from d6e384c to 7a16349 Compare March 5, 2025 19:05
@doitsujin doitsujin force-pushed the msaa-sampling branch 3 times, most recently from 023238e to aedb837 Compare March 6, 2025 22:41
doitsujin added 11 commits March 7, 2025 13:15
Otherwise, if the app binds the same set of render targets again,
the dirty framebuffer flag will get cleared.
Current AMDVLK has faster render pass resolves than what we can do
with fmask, and our render pass resolve path can deal with all types
of color images now if we pass the correct resolve mode.

Keep the fb path for non-standard depth resolve modes as well as
swapchain blits with composition, but otherwise there is no reason
to use this path by default anymore.
Removes some code duplication while adding support for non-AVERAGE
resolves for plain color images.

Also nuke the AMD path since it is no longer used.
Elides redundant back-to-back resolves in some games, and reduces
some barrier spam when the app resolves multiple images.
@doitsujin doitsujin merged commit b6a7e48 into master Mar 7, 2025
8 checks passed
@doitsujin doitsujin deleted the msaa-sampling branch March 7, 2025 19:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants