diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2023-11-14 22:24:54 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-14 22:24:54 -0300 |
| commit | 1329c47ea46d3fa152dabe02cff82db84429545a (patch) | |
| tree | ede4452906389421247940d82575e8d8c19e8574 /src/Ryujinx.Graphics.Gpu/Image/Texture.cs | |
| parent | 6bce46621c9952bdc697c1977cb866b48cbfad58 (diff) | |
Work around issue apparently caused by 5909 (#5926)
Diffstat (limited to 'src/Ryujinx.Graphics.Gpu/Image/Texture.cs')
| -rw-r--r-- | src/Ryujinx.Graphics.Gpu/Image/Texture.cs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Ryujinx.Graphics.Gpu/Image/Texture.cs b/src/Ryujinx.Graphics.Gpu/Image/Texture.cs index 326272e7..04c2b615 100644 --- a/src/Ryujinx.Graphics.Gpu/Image/Texture.cs +++ b/src/Ryujinx.Graphics.Gpu/Image/Texture.cs @@ -1443,11 +1443,7 @@ namespace Ryujinx.Graphics.Gpu.Image if (_modifiedStale || Group.HasCopyDependencies || Group.HasFlushBuffer) { _modifiedStale = false; - - if (bound || ModifiedSinceLastFlush || Group.HasCopyDependencies || Group.HasFlushBuffer) - { - Group.SignalModifying(this, bound); - } + Group.SignalModifying(this, bound, bound || ModifiedSinceLastFlush || Group.HasCopyDependencies || Group.HasFlushBuffer); } _physicalMemory.TextureCache.Lift(this); |
