Ryujinx/src/Ryujinx.Graphics.Gpu/Image
riperiperi 95c06de4c1
GPU: Remove swizzle undefined matching and rework depth aliasing (#4896)
* GPU: Remove swizzle undefined matching and rework depth aliasing

@gdkchan pointed out that UI textures in TOTK seemed to be setting their texture swizzle incorrectly (texture was RGB but was sampling A, swizzle for A was wrong), so I determined that SwizzleComponentMatches was the problem and set on eliminating it. This PR combines existing work to select the most recently modified texture (now used when selecting which aliased texture to use) with some additional changes to remove the swizzle check and support aliased view creation.

The original observation (#1538) was that we wanted to match depth textures for the purposes of aliasing with color textures, but they often had different swizzle from what was sampled (as it's generally the identity swizzle once rendered). At the time, I decided to allow swizzles to match if only the defined components matched, which fixed the issue in all known cases but could easily be broken by a game _expecting_ a given swizzle, such as a 1/0 value on a component.

This error case could also occur in textures that don't even depth alias, such as R11G11B10, as the rule was created to generally apply to all cases.

The solution is now to fail this exact match test, and allow the search for an R32 texture to create a swizzled view of a D32 texture (and other such cases). This allows the creation of a view that mismatches the requested format, which wasn't present before and was the reason for the swizzle matching approach.

The exact match and view creation rules now follow the same rules over what textures to select when there are multiple options (such as a "perfect" match and an "aliased" match at the same time). It now selects the most recently modified texture, which is done with a new sequence number in the GpuContext (because we don't have enough of these).

Reportedly fixes UI having weird coloured backgrounds in TOTK. This also fixes an issue in MK8D where returning from a race resulted in the character selection cubemaps being broken. May work around issues introduced by the "short texture cache" PR due to modification ordering, though they won't be truly fixed.

Should allow (#4365) to avoid copies in more cases. Need to test that.

I tested a bunch of games #1538 originally affected and they seem to be fine. This change affects all games so it would be good to get some wide testing on it.

* Address feedback 1, fix an issue

* Workaround: Do not allow copies for format alias.

These should be removed when D32<->R32 copy dependencies become legal
2023-05-11 21:30:47 -03:00
..
AutoDeleteCache.cs GPU: Keep rendered textures without any pool references alive (#4662) 2023-05-01 16:27:51 -03:00
FormatInfo.cs
FormatTable.cs
ITextureDescriptor.cs
Pool.cs GPU: Remove CPU region handle containers (#4817) 2023-05-05 23:40:46 +02:00
PoolCache.cs
ReductionFilter.cs
Sampler.cs
SamplerDescriptor.cs
SamplerMinFilter.cs
SamplerMipFilter.cs
SamplerPool.cs
SamplerPoolCache.cs
Texture.cs GPU: Remove swizzle undefined matching and rework depth aliasing (#4896) 2023-05-11 21:30:47 -03:00
TextureBindingInfo.cs
TextureBindingsManager.cs Fix typo in TextureBindingsManager.cs (#4798) 2023-05-05 22:17:36 +02:00
TextureCache.cs GPU: Remove swizzle undefined matching and rework depth aliasing (#4896) 2023-05-11 21:30:47 -03:00
TextureCompatibility.cs GPU: Remove swizzle undefined matching and rework depth aliasing (#4896) 2023-05-11 21:30:47 -03:00
TextureComponent.cs
TextureDependency.cs
TextureDescriptor.cs
TextureDescriptorType.cs
TextureGroup.cs GPU: Remove swizzle undefined matching and rework depth aliasing (#4896) 2023-05-11 21:30:47 -03:00
TextureGroupHandle.cs GPU: Remove CPU region handle containers (#4817) 2023-05-05 23:40:46 +02:00
TextureInfo.cs GPU: Remove swizzle undefined matching and rework depth aliasing (#4896) 2023-05-11 21:30:47 -03:00
TextureManager.cs
TextureMatchQuality.cs
TextureMsaaMode.cs
TexturePool.cs GPU: Fix errors handling texture remapping (#4745) 2023-05-01 15:32:32 -03:00
TexturePoolCache.cs
TextureScaleMode.cs
TextureSearchFlags.cs Fix some invalid blits involving depth textures (#4723) 2023-05-03 21:20:12 -03:00
TextureTarget.cs
TextureViewCompatibility.cs GPU: Remove swizzle undefined matching and rework depth aliasing (#4896) 2023-05-11 21:30:47 -03:00