From ab9d9a0709a62e40e7dabf264da06d3b62eb8553 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Thu, 6 Jul 2023 18:34:34 -0400 Subject: [PATCH] remove frameCount for now --- Program.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Program.cs b/Program.cs index 0f5d34a..6f86fe0 100644 --- a/Program.cs +++ b/Program.cs @@ -192,7 +192,6 @@ public class Game : GameWindow { static int thumbnailHeight = 100; static int thumbnailWidth = (int) 1.0 * thumbnailHeight * activeCamera.Resolution.X / activeCamera.Resolution.Y; - int frameCount; int windowWidth; int windowHeight; float[] vertices = { @@ -289,7 +288,6 @@ public class Game : GameWindow { protected override void OnRenderFrame(FrameEventArgs e) { base.OnRenderFrame(e); - frameCount++; GL.Clear(ClearBufferMask.ColorBufferBit); int borderWidth = 2;