summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-05-19 14:21:15 +0200
committerKonstantin Käfer <mail@kkaefer.com>2014-05-19 14:21:15 +0200
commit92706445d9054fbe7ad66581c8bd56f4e0de4a69 (patch)
tree087adf001cf60541a90b62e6f9d0ecf2056493a1 /common
parentf848868c16ff4b55e0f983e25853589a50d94824 (diff)
downloadqtlocation-mapboxgl-92706445d9054fbe7ad66581c8bd56f4e0de4a69.tar.gz
init glfw for debug images + actually copy images over
Diffstat (limited to 'common')
-rw-r--r--common/glfw_view.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/glfw_view.cpp b/common/glfw_view.cpp
index 3ef7bc36a9..e03b5ed2fe 100644
--- a/common/glfw_view.cpp
+++ b/common/glfw_view.cpp
@@ -204,6 +204,8 @@ namespace platform {
double elapsed() { return glfwGetTime(); }
void show_debug_image(std::string name, const char *data, size_t width, size_t height) {
+ glfwInit();
+
static GLFWwindow *debug_window = nullptr;
if (!debug_window) {
debug_window = glfwCreateWindow(width, height, name.c_str(), nullptr, nullptr);
@@ -233,6 +235,8 @@ void show_debug_image(std::string name, const char *data, size_t width, size_t h
void show_color_debug_image(std::string name, const char *data, size_t logical_width, size_t logical_height, size_t width, size_t height) {
+ glfwInit();
+
static GLFWwindow *debug_window = nullptr;
if (!debug_window) {
debug_window = glfwCreateWindow(logical_width, logical_height, name.c_str(), nullptr, nullptr);