From eff73b2ced56d7affe5e42c44731f504d55c5b64 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Fri, 7 Jul 2023 01:44:51 -0400 Subject: [PATCH] make glClearColor actually black --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 91a2a76..c8a2886 100644 --- a/Program.cs +++ b/Program.cs @@ -239,7 +239,7 @@ public class Game : GameWindow { Console.WriteLine($"thumbnail size: {thumbnailWidth}x{thumbnailHeight}"); - GL.ClearColor(0.0f, 0.0f, 0.05f, 1.0f); + GL.ClearColor(0f, 0f, 0f, 1f); VertexArrayObject = GL.GenVertexArray(); GL.BindVertexArray(VertexArrayObject);