From 36e09cdbe1e314c3ad565d7286e1265684071992 Mon Sep 17 00:00:00 2001 From: rhodes-b <59537185+rhodes-b@users.noreply.github.com> Date: Mon, 22 Sep 2025 21:30:03 -0500 Subject: [PATCH] remove debug print from helping something with graphics issues --- pkg/opengl/Shader.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/opengl/Shader.zig b/pkg/opengl/Shader.zig index 1105e0745..8973ace30 100644 --- a/pkg/opengl/Shader.zig +++ b/pkg/opengl/Shader.zig @@ -23,7 +23,6 @@ pub inline fn create(typ: c.GLenum) errors.Error!Shader { /// Set the source and compile a shader. pub inline fn setSourceAndCompile(s: Shader, source: [:0]const u8) !void { - log.info("shader source:{s}", .{source}); glad.context.ShaderSource.?(s.id, 1, &@as([*c]const u8, @ptrCast(source)), null); glad.context.CompileShader.?(s.id);