summaryrefslogtreecommitdiff
path: root/test/util/memory.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/util/memory.test.cpp
parent405e20e3c8e1ba489fb48ad76fcbe5738ce643b3 (diff)
downloadqtlocation-mapboxgl-upstream/map_options.tar.gz
[WIP][core] Add Map optionsupstream/map_options
Diffstat (limited to 'test/util/memory.test.cpp')
-rw-r--r--test/util/memory.test.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/util/memory.test.cpp b/test/util/memory.test.cpp
index 6befb521f0..76f385d3d6 100644
--- a/test/util/memory.test.cpp
+++ b/test/util/memory.test.cpp
@@ -3,6 +3,7 @@
#include <mbgl/test/util.hpp>
#include <mbgl/map/map.hpp>
+#include <mbgl/map/map_options.hpp>
#include <mbgl/gl/headless_frontend.hpp>
#include <mbgl/util/default_thread_pool.hpp>
#include <mbgl/util/io.hpp>
@@ -72,7 +73,7 @@ TEST(Memory, Vector) {
HeadlessFrontend frontend { { 256, 256 }, ratio, test.fileSource, test.threadPool };
Map map(frontend, MapObserver::nullObserver(), frontend.getSize(), ratio, test.fileSource,
- test.threadPool, MapMode::Static);
+ test.threadPool, MapOptions().withMapMode(MapMode::Static));
map.setZoom(16); // more map features
map.getStyle().loadURL("mapbox://streets");
@@ -85,7 +86,7 @@ TEST(Memory, Raster) {
HeadlessFrontend frontend { { 256, 256 }, ratio, test.fileSource, test.threadPool };
Map map(frontend, MapObserver::nullObserver(), frontend.getSize(), ratio, test.fileSource,
- test.threadPool, MapMode::Static);
+ test.threadPool, MapOptions().withMapMode(MapMode::Static));
map.getStyle().loadURL("mapbox://satellite");
frontend.render(map);
@@ -122,7 +123,8 @@ TEST(Memory, Footprint) {
public:
FrontendAndMap(MemoryTest& test_, const char* style)
: frontend(Size{ 256, 256 }, 2, test_.fileSource, test_.threadPool)
- , map(frontend, MapObserver::nullObserver(), frontend.getSize(), 2, test_.fileSource, test_.threadPool, MapMode::Static) {
+ , map(frontend, MapObserver::nullObserver(), frontend.getSize(), 2, test_.fileSource
+ , test_.threadPool, MapOptions().withMapMode(MapMode::Static)) {
map.setZoom(16);
map.getStyle().loadURL(style);
frontend.render(map);