summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2019-04-02 18:22:16 +0300
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2019-04-02 19:30:03 +0300
commit805b1402452da74042b995d693c48ee4b79ae337 (patch)
tree7a53a46e8756eedcd3b4d4ee05936a2a0050f837
parentb6910407e8849a5b243bc21617ee15d6b702d803 (diff)
downloadqtlocation-mapboxgl-805b1402452da74042b995d693c48ee4b79ae337.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 d9f27eacc0..a4e6184ddb 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