+ | FPS ~ | Single triangle shader

This commit is contained in:
TheRedShip
2024-10-15 01:10:57 +02:00
parent 9d7a30800e
commit 1c25a29c38
4 changed files with 27 additions and 9 deletions

View File

@ -26,7 +26,7 @@ class Window
GLFWwindow *getWindow(void) const;
RT::Vec2i getMousePos(void) const;
float getFps(void) const;
void display();
void pollEvents();
@ -40,6 +40,8 @@ class Window
GLFWwindow *_window;
RT::Vec2i _mousePos;
float _fps;
};
#endif