summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2019-04-02 18:22:16 +0300
committerTobrun <tobrun.van.nuland@gmail.com>2019-04-12 16:21:47 +0200
commit7af6b7e16e46a8873dcee6f41640412832ff481d (patch)
tree089377f8b43d801c197d25045483b44042853014
parente136e249f9df52e81e39e3c30163b9f7a48b2574 (diff)
downloadqtlocation-mapboxgl-7af6b7e16e46a8873dcee6f41640412832ff481d.tar.gz
[core] Disable binary programs until we fix #14294
-rw-r--r--src/mbgl/gl/context.hpp2
-rw-r--r--src/mbgl/gl/features.hpp3
2 files changed, 3 insertions, 2 deletions
diff --git a/src/mbgl/gl/context.hpp b/src/mbgl/gl/context.hpp
index fe09390cc6..b65e0aa705 100644
--- a/src/mbgl/gl/context.hpp
+++ b/src/mbgl/gl/context.hpp
@@ -56,7 +56,7 @@ public:
#if MBGL_HAS_BINARY_PROGRAMS
bool supportsProgramBinaries() const;
#else
- constexpr bool supportsProgramBinaries() const { return false; }
+ constexpr static bool supportsProgramBinaries() { return false; }
#endif
optional<std::pair<BinaryProgramFormat, std::string>> getBinaryProgram(ProgramID) const;
diff --git a/src/mbgl/gl/features.hpp b/src/mbgl/gl/features.hpp
index 1757093967..1da1371e45 100644
--- a/src/mbgl/gl/features.hpp
+++ b/src/mbgl/gl/features.hpp
@@ -3,5 +3,6 @@
#if __APPLE__
#define MBGL_HAS_BINARY_PROGRAMS 0
#else
- #define MBGL_HAS_BINARY_PROGRAMS 1
+ // https://github.com/mapbox/mapbox-gl-native/issues/14294
+ #define MBGL_HAS_BINARY_PROGRAMS 0
#endif