From bb7f59c13524c65ea77b8b61e6046a17e3eb4adb Mon Sep 17 00:00:00 2001 From: maxwes08 Date: Wed, 25 Mar 2026 10:03:22 +0100 Subject: [PATCH] fixed missing compile on frag shader --- Graphics/Shader.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Graphics/Shader.cs b/Graphics/Shader.cs index c1023f2..a90b3d5 100644 --- a/Graphics/Shader.cs +++ b/Graphics/Shader.cs @@ -27,6 +27,7 @@ namespace Voxel.Graphics Console.WriteLine(infoLog); } + GL.CompileShader(fragmentShader); GL.GetShader(fragmentShader, ShaderParameter.CompileStatus, out success); if (success == 0) {