summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2016-11-03 01:59:24 +0200
committerJesse Bounds <jesse@rebounds.net>2016-11-13 16:10:36 -0800
commit5dcf7ca18ef1cfdf3f91afd08da73e317eeda67a (patch)
tree01162cbd73d0afb0cbe3b8a62cff24e81ff172e4 /include
parent870d432f34cee2fff2c0b06ddf6d9ac330253cd9 (diff)
downloadqtlocation-mapboxgl-5dcf7ca18ef1cfdf3f91afd08da73e317eeda67a.tar.gz
[linux] Added OSMesa headless backend
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/gl/implementation.hpp2
-rw-r--r--include/mbgl/platform/default/headless_backend.hpp7
2 files changed, 9 insertions, 0 deletions
diff --git a/include/mbgl/gl/implementation.hpp b/include/mbgl/gl/implementation.hpp
index 4e3a3e51c7..a0101085fa 100644
--- a/include/mbgl/gl/implementation.hpp
+++ b/include/mbgl/gl/implementation.hpp
@@ -9,6 +9,8 @@
#else
#define MBGL_USE_CGL 1
#endif
+#elif defined(__OSMESA__)
+ #define MBGL_USE_OSMESA 1
#else
#define MBGL_USE_GLX 1
#endif
diff --git a/include/mbgl/platform/default/headless_backend.hpp b/include/mbgl/platform/default/headless_backend.hpp
index 2f4886a365..b6c654943f 100644
--- a/include/mbgl/platform/default/headless_backend.hpp
+++ b/include/mbgl/platform/default/headless_backend.hpp
@@ -12,6 +12,8 @@ typedef struct __GLXcontextRec* GLXContext;
typedef struct __GLXFBConfigRec* GLXFBConfig;
typedef long unsigned int XID;
typedef XID GLXPbuffer;
+#elif MBGL_USE_OSMESA
+#include <GL/osmesa.h>
#endif
#include <mbgl/map/backend.hpp>
@@ -71,6 +73,11 @@ private:
GLXPbuffer glxPbuffer = 0;
#endif
+#if MBGL_USE_OSMESA
+ OSMesaContext glContext = nullptr;
+ GLubyte fakeBuffer = 0;
+#endif
+
std::function<void(MapChange)> mapChangeCallback;
};