mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-27 17:07:10 +02:00
Always set new texture data for textures initialized by a copy. (#1576)
This commit is contained in:
parent
479c8da5ee
commit
1b8f97b26c
1 changed files with 1 additions and 1 deletions
|
@ -771,7 +771,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||
// Any textures that are incompatible will contain garbage data, so they should be removed where possible.
|
||||
|
||||
int viewCompatible = 0;
|
||||
bool setData = isSamplerTexture || overlapsCount == 0;
|
||||
bool setData = isSamplerTexture || overlapsCount == 0 || flags.HasFlag(TextureSearchFlags.ForCopy);
|
||||
|
||||
for (int index = 0; index < overlapsCount; index++)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue