summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2016-11-03 01:59:24 +0200
committerBruno de Oliveira Abinader <bruno@mapbox.com>2016-11-04 18:43:08 +0200
commite66cc2e583b8a56f1c9ace613c9bf6c1d0643712 (patch)
tree9e49031a64da303675cc545bc852163d4eb5abeb /include
parentf376827ed21115c43347841e346f908697179fd0 (diff)
downloadqtlocation-mapboxgl-e66cc2e583b8a56f1c9ace613c9bf6c1d0643712.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;
};