From e60b90fc47da447f6f9e132f0a25005607438d96 Mon Sep 17 00:00:00 2001 From: Isaac Marovitz Date: Sun, 29 Sep 2024 01:17:21 +0200 Subject: [PATCH] Set correct maximum supported anisotropy --- src/Ryujinx.Graphics.Metal/MetalRenderer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.Graphics.Metal/MetalRenderer.cs b/src/Ryujinx.Graphics.Metal/MetalRenderer.cs index 83974b408..bb87b6a49 100644 --- a/src/Ryujinx.Graphics.Metal/MetalRenderer.cs +++ b/src/Ryujinx.Graphics.Metal/MetalRenderer.cs @@ -205,7 +205,7 @@ namespace Ryujinx.Graphics.Metal maximumTexturesPerStage: Constants.MaxTexturesPerStage, maximumImagesPerStage: Constants.MaxImagesPerStage, maximumComputeSharedMemorySize: (int)_device.MaxThreadgroupMemoryLength, - maximumSupportedAnisotropy: 0, + maximumSupportedAnisotropy: 16, shaderSubgroupSize: 256, storageBufferOffsetAlignment: 16, textureBufferOffsetAlignment: 16,