From 8b24aa17e261b8bb462218393aed3f861f3659fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Tue, 4 Apr 2023 00:29:50 +0200 Subject: [PATCH] Increase path render instructions cache --- src/map/mapsforge/rastertile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/mapsforge/rastertile.cpp b/src/map/mapsforge/rastertile.cpp index 780064ee..81519701 100644 --- a/src/map/mapsforge/rastertile.cpp +++ b/src/map/mapsforge/rastertile.cpp @@ -264,7 +264,7 @@ QPainterPath RasterTile::painterPath(const Polygon &polygon, bool curve) const QVector RasterTile::pathInstructions() { - QCache > cache(1024); + QCache > cache(8192); QVector instructions; const Style &s = style(_ratio); QVector *ri;