summaryrefslogtreecommitdiff
path: root/bin/render.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bin/render.cpp')
-rw-r--r--bin/render.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/bin/render.cpp b/bin/render.cpp
index a805953693..48402ffce6 100644
--- a/bin/render.cpp
+++ b/bin/render.cpp
@@ -5,7 +5,6 @@
#include <mbgl/util/default_styles.hpp>
#include <mbgl/gl/headless_frontend.hpp>
-#include <mbgl/util/default_thread_pool.hpp>
#include <mbgl/style/style.hpp>
#include <args.hxx>
@@ -76,9 +75,8 @@ int main(int argc, char *argv[]) {
util::RunLoop loop;
- ThreadPool threadPool(4);
- HeadlessFrontend frontend({ width, height }, pixelRatio, threadPool);
- Map map(frontend, MapObserver::nullObserver(), threadPool,
+ HeadlessFrontend frontend({ width, height }, pixelRatio);
+ Map map(frontend, MapObserver::nullObserver(),
MapOptions().withMapMode(MapMode::Static).withSize(frontend.getSize()).withPixelRatio(pixelRatio),
ResourceOptions().withCachePath(cache_file).withAssetPath(asset_root).withAccessToken(std::string(token)));