summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Morris <michael.patrick.morris@gmail.com>2015-08-28 15:49:25 -0400
committerMike Morris <michael.patrick.morris@gmail.com>2015-08-28 15:49:25 -0400
commit6bfda4fcef60978ad39e0c2c3859d9902fcf1076 (patch)
treea7c521fe07a35af7d085463c8e43732b3afca5b8
parenta42a9e4a7ca10edea17a14d6d31770707be74360 (diff)
downloadqtlocation-mapboxgl-6bfda4fcef60978ad39e0c2c3859d9902fcf1076.tar.gz
local nvm?
-rw-r--r--platform/node/test/render.test.js9
-rwxr-xr-xscripts/node/install.sh2
-rwxr-xr-xscripts/node/run.sh2
-rw-r--r--src/mbgl/map/map.cpp2
4 files changed, 5 insertions, 10 deletions
diff --git a/platform/node/test/render.test.js b/platform/node/test/render.test.js
index a76e6baf04..87536891cf 100644
--- a/platform/node/test/render.test.js
+++ b/platform/node/test/render.test.js
@@ -44,16 +44,9 @@ function renderTest(style, info, base, key) {
var url = decodeURIComponent(req.url);
console.log('JAVASCRIPT REQUEST:', url);
fs.readFile(path.join(suitePath, url), function(err, data) {
- // t.error(err);
- console.log('CANCELED?', req.canceled, 'ERROR?', err, url);
- if (!req.canceled) req.respond(err, { data: data });
+ req.respond(err, { data: data });
});
};
- options.cancel = function(req) {
- var url = decodeURIComponent(req.url);
- console.log('JAVASCRIPT CANCEL:', url);
- req.canceled = true;
- };
options.ratio = 1.0;
var map = new mbgl.Map(options);
diff --git a/scripts/node/install.sh b/scripts/node/install.sh
index 9711ad359a..7ad60d1d93 100755
--- a/scripts/node/install.sh
+++ b/scripts/node/install.sh
@@ -13,7 +13,7 @@ if [ ${TRAVIS_OS_NAME} == "linux" ]; then
mason install mesa 10.4.3
fi
-source ~/.nvm/nvm.sh
+source .nvm/nvm.sh
mapbox_time $NODE_VERSION \
nvm install $NODE_VERSION
diff --git a/scripts/node/run.sh b/scripts/node/run.sh
index 5e11ab7514..b8b31dc192 100755
--- a/scripts/node/run.sh
+++ b/scripts/node/run.sh
@@ -11,7 +11,7 @@ BUILDTYPE=${BUILDTYPE:-Release}
# Build
################################################################################
-source ~/.nvm/nvm.sh
+source .nvm/nvm.sh
nvm use $NODE_VERSION
mapbox_time "checkout_styles" \
diff --git a/src/mbgl/map/map.cpp b/src/mbgl/map/map.cpp
index 9bfb048419..b260b228fc 100644
--- a/src/mbgl/map/map.cpp
+++ b/src/mbgl/map/map.cpp
@@ -9,6 +9,7 @@
#include <mbgl/util/projection.hpp>
#include <mbgl/util/thread.hpp>
+#include <iostream>
namespace mbgl {
@@ -63,6 +64,7 @@ void Map::renderSync() {
MapChangeDidFinishRenderingFrame);
if (!fullyLoaded) {
+ std::cout << "RenderState::partial" << std::endl;
renderState = RenderState::partial;
} else if (renderState != RenderState::fully) {
renderState = RenderState::fully;