diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2024-05-14 12:06:36 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-14 17:06:36 +0200 |
| commit | 2ef4f92b0793feb7073ed85b7f7dc08dca6f14e9 (patch) | |
| tree | 941a7bd42e1f551e9d7d9fc042c7e96a7bda8aff /src/Ryujinx.Graphics.Gpu/Image/Texture.cs | |
| parent | 2b6cc4b3536693d222b695295c9db4715ca3f570 (diff) | |
Make TextureGroup.ClearModified thread safe (#6686)
Diffstat (limited to 'src/Ryujinx.Graphics.Gpu/Image/Texture.cs')
| -rw-r--r-- | src/Ryujinx.Graphics.Gpu/Image/Texture.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.Graphics.Gpu/Image/Texture.cs b/src/Ryujinx.Graphics.Gpu/Image/Texture.cs index e67caea8..dde28dbd 100644 --- a/src/Ryujinx.Graphics.Gpu/Image/Texture.cs +++ b/src/Ryujinx.Graphics.Gpu/Image/Texture.cs @@ -390,7 +390,7 @@ namespace Ryujinx.Graphics.Gpu.Image { _views.Remove(texture); - Group.RemoveView(texture); + Group.RemoveView(_views, texture); texture._viewStorage = texture; |
