aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Gpu/Image/Texture.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2024-05-14 12:06:36 -0300
committerGitHub <noreply@github.com>2024-05-14 17:06:36 +0200
commit2ef4f92b0793feb7073ed85b7f7dc08dca6f14e9 (patch)
tree941a7bd42e1f551e9d7d9fc042c7e96a7bda8aff /src/Ryujinx.Graphics.Gpu/Image/Texture.cs
parent2b6cc4b3536693d222b695295c9db4715ca3f570 (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.cs2
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;