summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLeith Bade <leith@mapbox.com>2014-12-10 19:13:21 +1100
committerLeith Bade <leith@mapbox.com>2014-12-10 19:13:21 +1100
commit69cd7268d783a5e449de38ab40dfe5a28fa76f64 (patch)
treea4951f03d039c2775317678d66afb0e61eb2f1ea /include
parentc55cd7f473ca532193697882c48436d2f98885d2 (diff)
parent318ef5d44314814f4dd7da2ba8c532b0119bdb35 (diff)
downloadqtlocation-mapboxgl-69cd7268d783a5e449de38ab40dfe5a28fa76f64.tar.gz
Merge branch 'master' of github.com:mapbox/mapbox-gl-native into android-mason
Conflicts: platform/default/http_request_baton_curl.cpp
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/util/constants.hpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/include/mbgl/util/constants.hpp b/include/mbgl/util/constants.hpp
new file mode 100644
index 0000000000..78c92643d2
--- /dev/null
+++ b/include/mbgl/util/constants.hpp
@@ -0,0 +1,30 @@
+#ifndef MBGL_UTIL_CONSTANTS
+#define MBGL_UTIL_CONSTANTS
+
+#include <cmath>
+
+namespace mbgl {
+
+namespace util {
+
+extern const float tileSize;
+}
+
+namespace debug {
+
+extern const bool tileParseWarnings;
+extern const bool styleParseWarnings;
+extern const bool spriteWarnings;
+extern const bool renderWarnings;
+extern const bool renderTree;
+extern const bool labelTextMissingWarning;
+extern const bool missingFontStackWarning;
+extern const bool missingFontFaceWarning;
+extern const bool glyphWarning;
+extern const bool shapingWarning;
+
+}
+
+}
+
+#endif