-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adapt to still image render mode changes
mapbox/mapbox-gl-native#1272 Some tests are hanging with no errors or log messages when map.load is passed a style but never rendered.
- Loading branch information
1 parent
a11a92f
commit 417741b
Showing
3 changed files
with
39 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule mbgl
updated
28 files
+1 −9 | android/cpp/jni.cpp | |
+0 −6 | android/java/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxgl/views/NativeMapView.java | |
+24 −10 | bin/render.cpp | |
+3 −0 | bin/render.gyp | |
+3 −0 | include/mbgl/ios/MGLMapView.h | |
+23 −10 | include/mbgl/map/map.hpp | |
+21 −0 | include/mbgl/map/still_image.hpp | |
+3 −0 | include/mbgl/map/update.hpp | |
+11 −0 | include/mbgl/map/view.hpp | |
+28 −11 | include/mbgl/platform/default/headless_view.hpp | |
+1 −1 | ios/MapboxGL.podspec | |
+8 −3 | ios/app/MBXViewController.mm | |
+74 −40 | platform/default/headless_view.cpp | |
+48 −3 | platform/ios/MGLMapView.mm | |
+1 −1 | platform/ios/MGLMapboxEvents.m | |
+14 −10 | src/mbgl/map/live_tile_data.cpp | |
+102 −39 | src/mbgl/map/map.cpp | |
+31 −3 | src/mbgl/map/source.cpp | |
+5 −0 | src/mbgl/map/source.hpp | |
+60 −0 | src/mbgl/map/tile_cache.cpp | |
+30 −0 | src/mbgl/map/tile_cache.hpp | |
+9 −0 | src/mbgl/map/view.cpp | |
+1 −2 | src/mbgl/style/style.cpp | |
+0 −20 | src/mbgl/util/error.hpp | |
+8 −0 | src/mbgl/util/uv_detail.hpp | |
+33 −0 | test/api/set_style.cpp | |
+32 −9 | test/headless/headless.cpp | |
+2 −0 | test/test.gyp |