summaryrefslogtreecommitdiff
path: root/src/mbgl/util/intersection_tests.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-10-07 11:49:22 -0700
committerBruno de Oliveira Abinader <bruno@mapbox.com>2016-10-11 10:54:58 +0300
commit38e78e25dfa3bc5b69a29029d4e065e72f462c37 (patch)
tree45eb6f881081ab585bb6665b3d49f099fbcb6b43 /src/mbgl/util/intersection_tests.hpp
parent61d8ecefda3a01d0860746af98d632b73c526d98 (diff)
downloadqtlocation-mapboxgl-38e78e25dfa3bc5b69a29029d4e065e72f462c37.tar.gz
[core] No need for feature querying to support multipolygons
Diffstat (limited to 'src/mbgl/util/intersection_tests.hpp')
-rw-r--r--src/mbgl/util/intersection_tests.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mbgl/util/intersection_tests.hpp b/src/mbgl/util/intersection_tests.hpp
index be89d14ed6..6adb3b5fdf 100644
--- a/src/mbgl/util/intersection_tests.hpp
+++ b/src/mbgl/util/intersection_tests.hpp
@@ -5,9 +5,9 @@
namespace mbgl {
namespace util {
-bool multiPolygonIntersectsBufferedMultiPoint(const GeometryCollection&, const GeometryCollection&, float radius);
-bool multiPolygonIntersectsBufferedMultiLine(const GeometryCollection&, const GeometryCollection&, float radius);
-bool multiPolygonIntersectsMultiPolygon(const GeometryCollection&, const GeometryCollection&);
+bool polygonIntersectsBufferedMultiPoint(const GeometryCoordinates&, const GeometryCollection&, float radius);
+bool polygonIntersectsBufferedMultiLine(const GeometryCoordinates&, const GeometryCollection&, float radius);
+bool polygonIntersectsMultiPolygon(const GeometryCoordinates&, const GeometryCollection&);
} // namespace util
} // namespace mbgl