diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-09-14 04:45:54 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-09-14 04:45:54 +0200 |
commit | af01062b0a207c106a6ebb599993fb72a43484c5 (patch) | |
tree | f081c78e9684af0bd3cef9d13a1aa9e5e2733770 /include | |
parent | f0122e7386e0e4fe63dafa9c1835ae0b04557ee4 (diff) |
Use manual vsync since nouveau drivers are broken
Diffstat (limited to 'include')
-rw-r--r-- | include/QuickMedia.hpp | 1 | ||||
-rw-r--r-- | include/Vsync.hpp | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/include/QuickMedia.hpp b/include/QuickMedia.hpp index 27863cc..faee324 100644 --- a/include/QuickMedia.hpp +++ b/include/QuickMedia.hpp @@ -65,6 +65,7 @@ namespace QuickMedia { private: Display *disp; sf::RenderWindow window; + int monitor_hz; sf::Vector2f window_size; sf::Font font; sf::Font bold_font; diff --git a/include/Vsync.hpp b/include/Vsync.hpp new file mode 100644 index 0000000..387d2b5 --- /dev/null +++ b/include/Vsync.hpp @@ -0,0 +1,15 @@ +#pragma once + +#include <SFML/Graphics/RenderWindow.hpp> + +namespace QuickMedia { + class VSync { + public: + VSync(int framerate); + void display(sf::RenderWindow &window); + private: + sf::Int64 target_frame_delta_micro; + sf::Int64 overflow; + sf::Clock timer; + }; +}
\ No newline at end of file |