From 7143408f69618828bb37b8f38d719d3ceeeec9c2 Mon Sep 17 00:00:00 2001 From: Bruno de Oliveira Abinader Date: Sat, 21 May 2016 12:01:24 +0300 Subject: [core] Implement MapDebugOptions::Wireframe Together with MapDebugOptions::Collision, provides "wireframe" rendering output so all drawn objects are visible. This mode ignores the line width, background and fill colors for better visualization. Fixes #4359. --- include/mbgl/map/mode.hpp | 1 + 1 file changed, 1 insertion(+) (limited to 'include/mbgl/map') diff --git a/include/mbgl/map/mode.hpp b/include/mbgl/map/mode.hpp index 9302e36056..ae4328d6fd 100644 --- a/include/mbgl/map/mode.hpp +++ b/include/mbgl/map/mode.hpp @@ -42,6 +42,7 @@ enum class MapDebugOptions : EnumType { ParseStatus = 1 << 2, Timestamps = 1 << 3, Collision = 1 << 4, + Wireframe = 1 << 5, }; inline MapDebugOptions operator| (const MapDebugOptions& lhs, const MapDebugOptions& rhs) { -- cgit v1.2.1