diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2015-11-27 10:44:14 +0200 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2015-11-27 17:47:02 +0200 |
commit | 92856f394c76f75051a72fbc5944b63cbea7ccde (patch) | |
tree | 7b6a871fff41a33b37733a7fd49294ffc3d21821 /include/mbgl/map | |
parent | d55aa7929cb10d40a58b6b7a8ed73bddd4f0a407 (diff) | |
download | qtlocation-mapboxgl-92856f394c76f75051a72fbc5944b63cbea7ccde.tar.gz |
[core] Collision debug is now MapDebugOptions::Collision
Diffstat (limited to 'include/mbgl/map')
-rw-r--r-- | include/mbgl/map/map.hpp | 3 | ||||
-rw-r--r-- | include/mbgl/map/mode.hpp | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/include/mbgl/map/map.hpp b/include/mbgl/map/map.hpp index 43c3b1452e..8401976e15 100644 --- a/include/mbgl/map/map.hpp +++ b/include/mbgl/map/map.hpp @@ -171,9 +171,6 @@ public: void setDebug(MapDebugOptions); void cycleDebugOptions(); MapDebugOptions getDebug() const; - void setCollisionDebug(bool value); - void toggleCollisionDebug(); - bool getCollisionDebug() const; bool isFullyLoaded() const; void dumpDebugLogs() const; diff --git a/include/mbgl/map/mode.hpp b/include/mbgl/map/mode.hpp index 0fe2c46dd8..c197b28589 100644 --- a/include/mbgl/map/mode.hpp +++ b/include/mbgl/map/mode.hpp @@ -33,6 +33,7 @@ enum class MapDebugOptions : EnumType { TileBorders = 1 << 1, ParseStatus = 1 << 2, Timestamps = 1 << 3, + Collision = 1 << 4, }; inline MapDebugOptions operator| (const MapDebugOptions& lhs, const MapDebugOptions& rhs) { |