diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2015-03-11 19:43:13 +0100 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2015-03-12 12:16:38 +0100 |
commit | 47ede853c4c0dd8e953f3ee98b807f044d178d76 (patch) | |
tree | 75d56f01853cb64b200d8977069dfe992266e9de /.gitignore | |
parent | ba9d2420699507c6d32b12272151529663c8d2fd (diff) | |
download | qtlocation-mapboxgl-47ede853c4c0dd8e953f3ee98b807f044d178d76.tar.gz |
fixes black flicker on rotating the device
fixes #838
instead of rendering ad libitum on the map thread, we are now driving rendering from the UI thread on iOS via the map.renderSync() function. There are still white bars during the rotation, but the general content of the view is kept visible.
- upgrades GLFW to 3.1
- removes swapped/needsSwap in favor of a more explicit scheme
- View#invalidate() now replaces View#swap() and is called whenever the View needs to trigger a rerender. GLFW and Android to this right away, while iOS goes back to the main thread and does the Map redrawing as part of the GLKView update
- sets all iOS deployment targets to 7.0
- disables SQLite3 version check, since the library version changed on iOS 8.2
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 3ee0136c6c..59c180c5de 100644 --- a/.gitignore +++ b/.gitignore @@ -4,12 +4,15 @@ *.actual.png *.diff.png *.pyc +/android/debug +/android/sdk /mason_packages /config/*.gypi /build /macosx/build /linux/build /ios/build +/ios/app/build /test/build /test/node_modules /include/mbgl/shader/shaders.hpp |