aboutsummaryrefslogtreecommitdiff
path: root/src/glfw/window.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/glfw/window.cc')
-rw-r--r--src/glfw/window.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/glfw/window.cc b/src/glfw/window.cc
index 0e57a65..9e76b57 100644
--- a/src/glfw/window.cc
+++ b/src/glfw/window.cc
@@ -1,5 +1,15 @@
#include "window.h"
+bool Window::updateSize() {
+ const int old_width = _width;
+ const int old_height = _height;
+
+ glfwGetWindowSize(_handle, &_width, &_height);
+
+ return old_width != _width
+ || old_height != _height;
+}
+
Window::Window(const std::string& title):
_handle(glfwCreateWindow(_width, _height, title.c_str(), NULL, NULL)) {
if ( _handle != nullptr ) {