aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.OpenGL/OpenGLRenderer.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2022-12-04 15:36:03 -0300
committerGitHub <noreply@github.com>2022-12-04 15:36:03 -0300
commit17a1cab5d29787f3b41f40a69b530dae4e3cb25f (patch)
tree25f72e40e08c851b80dea2ee2e184ddb3ba1d479 /Ryujinx.Graphics.OpenGL/OpenGLRenderer.cs
parent73aed239c356c4c573819eb6ee1e2d414d2d5579 (diff)
Allow SNorm buffer texture formats on Vulkan (#3957)1.1.421
* Allow SNorm buffer texture formats on Vulkan * Shader cache version bump
Diffstat (limited to 'Ryujinx.Graphics.OpenGL/OpenGLRenderer.cs')
-rw-r--r--Ryujinx.Graphics.OpenGL/OpenGLRenderer.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.OpenGL/OpenGLRenderer.cs b/Ryujinx.Graphics.OpenGL/OpenGLRenderer.cs
index 63c96fa2..9e008b33 100644
--- a/Ryujinx.Graphics.OpenGL/OpenGLRenderer.cs
+++ b/Ryujinx.Graphics.OpenGL/OpenGLRenderer.cs
@@ -113,6 +113,7 @@ namespace Ryujinx.Graphics.OpenGL
supports3DTextureCompression: false,
supportsBgraFormat: false,
supportsR4G4Format: false,
+ supportsSnormBufferTextureFormat: false,
supportsFragmentShaderInterlock: HwCapabilities.SupportsFragmentShaderInterlock,
supportsFragmentShaderOrderingIntel: HwCapabilities.SupportsFragmentShaderOrdering,
supportsGeometryShaderPassthrough: HwCapabilities.SupportsGeometryShaderPassthrough,