diff options
author | gdkchan <gab.dark.100@gmail.com> | 2019-12-08 23:55:22 -0300 |
---|---|---|
committer | Thog <thog@protonmail.com> | 2020-01-09 02:13:00 +0100 |
commit | 0d9672f3aefde019de4023a872bb655960ef3e71 (patch) | |
tree | a2d1362c00ac0f0137dfb35e0128af5537ae0296 /Ryujinx.Graphics.OpenGL/Renderer.cs | |
parent | 375ee0ba9640c213bba727e85c15493700425557 (diff) |
Use maximum shared memory size supported by hardware
Diffstat (limited to 'Ryujinx.Graphics.OpenGL/Renderer.cs')
-rw-r--r-- | Ryujinx.Graphics.OpenGL/Renderer.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.OpenGL/Renderer.cs b/Ryujinx.Graphics.OpenGL/Renderer.cs index 3007fe5c..eec3e320 100644 --- a/Ryujinx.Graphics.OpenGL/Renderer.cs +++ b/Ryujinx.Graphics.OpenGL/Renderer.cs @@ -64,6 +64,7 @@ namespace Ryujinx.Graphics.OpenGL return new Capabilities( HwCapabilities.SupportsAstcCompression, HwCapabilities.MaximumViewportDimensions, + HwCapabilities.MaximumComputeSharedMemorySize, HwCapabilities.StorageBufferOffsetAlignment); } |