summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/debugging.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2015-05-12 14:35:26 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2015-05-13 19:01:58 -0700
commita2344c36c372445ee230832a0b742ac5ee739eb1 (patch)
treec733e1fff4d4b7e7a914d19f0838aeaaf1ca3aa7 /src/mbgl/gl/debugging.hpp
parent0f7c6b0b52ac76db3bb0064b4230229d9def62a8 (diff)
downloadqtlocation-mapboxgl-a2344c36c372445ee230832a0b742ac5ee739eb1.tar.gz
Extensible GL extension support
Diffstat (limited to 'src/mbgl/gl/debugging.hpp')
-rw-r--r--src/mbgl/gl/debugging.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/mbgl/gl/debugging.hpp b/src/mbgl/gl/debugging.hpp
new file mode 100644
index 0000000000..82d08a53fb
--- /dev/null
+++ b/src/mbgl/gl/debugging.hpp
@@ -0,0 +1,21 @@
+#ifndef MBGL_GL_DEBUG_MESSAGES
+#define MBGL_GL_DEBUG_MESSAGES
+
+#include <string>
+
+namespace mbgl {
+namespace gl {
+namespace debugging {
+
+void enable();
+
+struct group {
+ group(const std::string&);
+ ~group();
+};
+
+}
+}
+}
+
+#endif