From 0cda74a78011a756f6563b0e5e0be195dd900db3 Mon Sep 17 00:00:00 2001 From: Samuliak Date: Tue, 14 May 2024 20:55:26 +0200 Subject: [PATCH] use unknown texture usage --- src/Ryujinx.Graphics.Metal/Texture.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.Graphics.Metal/Texture.cs b/src/Ryujinx.Graphics.Metal/Texture.cs index d8e3f9b68..6dca2b2a3 100644 --- a/src/Ryujinx.Graphics.Metal/Texture.cs +++ b/src/Ryujinx.Graphics.Metal/Texture.cs @@ -32,7 +32,7 @@ namespace Ryujinx.Graphics.Metal var descriptor = new MTLTextureDescriptor { PixelFormat = FormatTable.GetFormat(Info.Format), - Usage = MTLTextureUsage.ShaderRead, + Usage = MTLTextureUsage.Unknown, SampleCount = (ulong)Info.Samples, TextureType = Info.Target.Convert(), Width = (ulong)Info.Width,