summaryrefslogtreecommitdiff
path: root/include/mbgl/text/collision.hpp
diff options
context:
space:
mode:
authorartemp <artem@mapnik.org>2014-11-05 18:41:07 +0000
committerartemp <artem@mapnik.org>2014-11-05 18:43:18 +0000
commit44570c1d303ea169157f82034ef3af42f73d9e8d (patch)
tree9f8a5fd42931c4619a1d0fa599e02abb78acd729 /include/mbgl/text/collision.hpp
parentdfd9e9ce36c309cf6c952ccc4ef925d21ea5be1e (diff)
downloadqtlocation-mapboxgl-44570c1d303ea169157f82034ef3af42f73d9e8d.tar.gz
use linear<16,4> splitting algorithm (faster running tests)
Diffstat (limited to 'include/mbgl/text/collision.hpp')
-rw-r--r--include/mbgl/text/collision.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/text/collision.hpp b/include/mbgl/text/collision.hpp
index dfefab689e..3bf37a6a12 100644
--- a/include/mbgl/text/collision.hpp
+++ b/include/mbgl/text/collision.hpp
@@ -27,7 +27,7 @@ namespace bgi = bg::index;
typedef bgm::point<float, 2, bg::cs::cartesian> Point;
typedef bgm::box<Point> Box;
typedef std::pair<Box, PlacementBox> PlacementValue;
-typedef bgi::rtree<PlacementValue, bgi::rstar<16>> Tree;
+typedef bgi::rtree<PlacementValue, bgi::linear<16,4>> Tree;
class Collision {