From 12d49c37d219950ccb22c3979ecb0b34262a7155 Mon Sep 17 00:00:00 2001 From: Xpl0itR Date: Mon, 30 Mar 2020 22:38:52 +0100 Subject: Make max anisotropy configurable (#1043) * Make max anisotropy configurable * Move opengl command to opengl project * Add GUI option --- Ryujinx.Graphics.OpenGL/Renderer.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Ryujinx.Graphics.OpenGL/Renderer.cs') diff --git a/Ryujinx.Graphics.OpenGL/Renderer.cs b/Ryujinx.Graphics.OpenGL/Renderer.cs index cf2adc45..504a947b 100644 --- a/Ryujinx.Graphics.OpenGL/Renderer.cs +++ b/Ryujinx.Graphics.OpenGL/Renderer.cs @@ -67,7 +67,8 @@ namespace Ryujinx.Graphics.OpenGL HwCapabilities.SupportsAstcCompression, HwCapabilities.SupportsNonConstantTextureOffset, HwCapabilities.MaximumComputeSharedMemorySize, - HwCapabilities.StorageBufferOffsetAlignment); + HwCapabilities.StorageBufferOffsetAlignment, + HwCapabilities.MaxSupportedAnisotropy); } public ulong GetCounter(CounterType type) -- cgit v1.2.3