summaryrefslogtreecommitdiff
path: root/include/mbgl/gl
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2016-10-06 13:23:50 +0200
committerKonstantin Käfer <mail@kkaefer.com>2016-10-25 13:52:36 -0700
commit5cc390d694fc7510d445310d8eb9e32429a5e67b (patch)
tree7a24706f919ac3e8154be8b4ce33aed5bf42188d /include/mbgl/gl
parent45f4dc0166f2d609d014d2174209fdbe1994c943 (diff)
downloadqtlocation-mapboxgl-5cc390d694fc7510d445310d8eb9e32429a5e67b.tar.gz
[core] separate Backend from View for headless rendering
Diffstat (limited to 'include/mbgl/gl')
-rw-r--r--include/mbgl/gl/implementation.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/mbgl/gl/implementation.hpp b/include/mbgl/gl/implementation.hpp
new file mode 100644
index 0000000000..4e3a3e51c7
--- /dev/null
+++ b/include/mbgl/gl/implementation.hpp
@@ -0,0 +1,14 @@
+#pragma once
+
+#if defined(__QT__)
+ #define MBGL_USE_QT 1
+#elif defined(__APPLE__)
+ #include <TargetConditionals.h>
+ #if TARGET_OS_IOS
+ #define MBGL_USE_EAGL 1
+ #else
+ #define MBGL_USE_CGL 1
+ #endif
+#else
+ #define MBGL_USE_GLX 1
+#endif