Update OpenTK to 4.9.4, OpenAL to 1.24.3

This commit is contained in:
KeatonTheBot
2025-06-01 02:26:01 -05:00
committed by KeatonTheBot
parent 8f77076117
commit 18f302c0b0
7 changed files with 25 additions and 25 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ namespace Ryujinx.Graphics.OpenGL
GL.CompileShader(shaderHandle);
break;
case TargetLanguage.Spirv:
GL.ShaderBinary(1, ref shaderHandle, (BinaryFormat)All.ShaderBinaryFormatSpirVArb, shader.BinaryCode, shader.BinaryCode.Length);
GL.ShaderBinary(1, ref shaderHandle, (ShaderBinaryFormat)All.ShaderBinaryFormatSpirVArb, shader.BinaryCode, shader.BinaryCode.Length);
GL.SpecializeShader(shaderHandle, "main", 0, (int[])null, (int[])null);
break;
}