From 237eaeb92025016b00b34067950627096cd9b298 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Fri, 13 Apr 2018 15:36:12 -0300 Subject: [PATCH] Bump glsl version to support layout qualifier --- Ryujinx.Graphics/Gal/Shader/GlslDecompiler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Graphics/Gal/Shader/GlslDecompiler.cs b/Ryujinx.Graphics/Gal/Shader/GlslDecompiler.cs index 82dbff9fa..3f0c9f721 100644 --- a/Ryujinx.Graphics/Gal/Shader/GlslDecompiler.cs +++ b/Ryujinx.Graphics/Gal/Shader/GlslDecompiler.cs @@ -89,7 +89,7 @@ namespace Ryujinx.Graphics.Gal.Shader SB = new StringBuilder(); - SB.AppendLine("#version 330 core"); + SB.AppendLine("#version 410 core"); PrintDeclTextures(); PrintDeclUniforms();