Browse Source

make glClearColor actually black

main
Colin McMillen 1 year ago
parent
commit
eff73b2ced
  1. 2
      Program.cs

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

Loading…
Cancel
Save