diff options
Diffstat (limited to 'test/api/annotations.test.cpp')
-rw-r--r-- | test/api/annotations.test.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/api/annotations.test.cpp b/test/api/annotations.test.cpp index 6d6734a10f..c1716a5228 100644 --- a/test/api/annotations.test.cpp +++ b/test/api/annotations.test.cpp @@ -1,6 +1,7 @@ #include <mbgl/test/util.hpp> #include <mbgl/test/stub_file_source.hpp> +#include <mbgl/platform/default/thread_pool.hpp> #include <mbgl/annotation/annotation.hpp> #include <mbgl/sprite/sprite_image.hpp> #include <mbgl/map/map.hpp> @@ -25,7 +26,8 @@ public: std::shared_ptr<HeadlessDisplay> display { std::make_shared<HeadlessDisplay>() }; HeadlessView view { display, 1 }; StubFileSource fileSource; - Map map { view, fileSource, MapMode::Still }; + ThreadPool threadPool { 4 }; + Map map { view, fileSource, threadPool, MapMode::Still }; void checkRendering(const char * name) { test::checkImage(std::string("test/fixtures/annotations/") + name, |