aboutsummaryrefslogtreecommitdiff
path: root/include/Vsync.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/Vsync.hpp')
-rw-r--r--include/Vsync.hpp15
1 files changed, 15 insertions, 0 deletions
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