make glClearColor actually black

This commit is contained in:
Colin McMillen 2023-07-07 01:44:51 -04:00
parent 5c2b831ced
commit eff73b2ced

View File

@ -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);