summaryrefslogtreecommitdiff
path: root/test/map/prefetch.test.cpp
diff options
context:
space:
mode:
authorSudarsana Babu Nagineni <sudarsana.babu@mapbox.com>2019-03-04 11:25:13 +0200
committerSudarsana Babu Nagineni <sudarsana.babu@mapbox.com>2019-03-04 13:49:51 +0200
commit9676028be8393aaf616f3abd6f2a3e6bf493b54c (patch)
tree6bf4c0c88eed3ea910a7822d32edaaff31301210 /test/map/prefetch.test.cpp
parent405e20e3c8e1ba489fb48ad76fcbe5738ce643b3 (diff)
downloadqtlocation-mapboxgl-upstream/map_options.tar.gz
[WIP][core] Add Map optionsupstream/map_options
Diffstat (limited to 'test/map/prefetch.test.cpp')
-rw-r--r--test/map/prefetch.test.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/map/prefetch.test.cpp b/test/map/prefetch.test.cpp
index 9b61224027..7f252fcb2e 100644
--- a/test/map/prefetch.test.cpp
+++ b/test/map/prefetch.test.cpp
@@ -3,6 +3,7 @@
#include <mbgl/test/stub_map_observer.hpp>
#include <mbgl/map/map.hpp>
+#include <mbgl/map/map_options.hpp>
#include <mbgl/gl/headless_frontend.hpp>
#include <mbgl/storage/default_file_source.hpp>
#include <mbgl/style/style.hpp>
@@ -37,7 +38,8 @@ TEST(Map, PrefetchTiles) {
};
HeadlessFrontend frontend { { 512, 512 }, 1, fileSource, threadPool };
- Map map(frontend, observer, frontend.getSize(), 1, fileSource, threadPool, MapMode::Continuous);
+ Map map(frontend, observer, frontend.getSize(), 1, fileSource, threadPool,
+ MapOptions().withMapMode(MapMode::Continuous));
std::vector<int> tiles;