summaryrefslogtreecommitdiff
path: root/common/glfw_view.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/glfw_view.cpp')
-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);