+ | Basic imgui window

This commit is contained in:
TheRedShip
2025-01-11 16:05:28 +01:00
parent efba8c4161
commit 8691f1b8ac
22 changed files with 64618 additions and 11 deletions

View File

@ -36,7 +36,11 @@ class Window
GLFWwindow *getWindow(void) const;
float getFps(void) const;
int getFrameCount(void) const;
int getPixelisation(void);
int &getPixelisationAmount(void);
int isPixelated(void);
bool &getAccumulate(void);
private:
GLFWwindow *_window;
@ -46,6 +50,9 @@ class Window
float _delta;
int _frameCount;
bool accumulate = true;
int pixelisation_amount = 5;
};
#endif