summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorLeith Bade <leith@mapbox.com>2015-01-16 10:16:30 +1100
committerLeith Bade <leith@mapbox.com>2015-01-16 10:16:30 +1100
commitd950e986b78f526c34d37c959f539476f7249c80 (patch)
tree11aed290bec4bf2c63f0e68c01998a5031cdb4ab /platform
parentd24b73b1a67a2ab4f65f413d19374050f17782bb (diff)
parent5e44256fe87d78abe282190fb8a41745f8115c5b (diff)
downloadqtlocation-mapboxgl-d950e986b78f526c34d37c959f539476f7249c80.tar.gz
Merge pull request #757 from mapbox/move-terminate
Move terminate() call to GLFWView to avoid problems with node
Diffstat (limited to 'platform')
-rw-r--r--platform/default/glfw_view.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/default/glfw_view.cpp b/platform/default/glfw_view.cpp
index 17cd78d12b..285a118814 100644
--- a/platform/default/glfw_view.cpp
+++ b/platform/default/glfw_view.cpp
@@ -286,6 +286,9 @@ int GLFWView::run() {
glfwWaitEvents();
});
+ // Terminate here to save binary shaders
+ map->terminate();
+
return 0;
}