summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLMapSnapshotter.mm
diff options
context:
space:
mode:
authorAnder Conselvan de Oliveira <ander.deoliveira@mapbox.com>2019-08-27 14:25:55 +0300
committerAnder Conselvan de Oliveira <ander.deoliveira@mapbox.com>2019-08-27 15:00:12 +0300
commitdf1aeb81c1e1969007d808cb813758f7c20797e8 (patch)
treedbfd6cee16ab587ea77ed275f80bef36a9bd7755 /platform/darwin/src/MGLMapSnapshotter.mm
parent482dfc501c57c1f1dd78213caf8a861e1bdf7d79 (diff)
downloadqtlocation-mapboxgl-upstream/anderco-remove-program-cache-dir.tar.gz
[core] Remove programCacheDir parameter from ProgramParametersupstream/anderco-remove-program-cache-dir
Binary shared support has been removed in commit c2f974f2a573 ([core] Remove binary shader support). This left-over parameter is not used anywhere anymore.
Diffstat (limited to 'platform/darwin/src/MGLMapSnapshotter.mm')
-rw-r--r--platform/darwin/src/MGLMapSnapshotter.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/darwin/src/MGLMapSnapshotter.mm b/platform/darwin/src/MGLMapSnapshotter.mm
index 65bed2cf42..0001ebcb86 100644
--- a/platform/darwin/src/MGLMapSnapshotter.mm
+++ b/platform/darwin/src/MGLMapSnapshotter.mm
@@ -624,7 +624,7 @@ const CGFloat MGLSnapshotterMinimumPixelSize = 64;
// Create the snapshotter
_mbglMapSnapshotter = std::make_unique<mbgl::MapSnapshotter>(
- style, size, pixelRatio, cameraOptions, coordinateBounds, config.cacheDir, config.localFontFamilyName, resourceOptions);
+ style, size, pixelRatio, cameraOptions, coordinateBounds, config.localFontFamilyName, resourceOptions);
}
@end