summaryrefslogtreecommitdiff
path: root/include/mbgl/util
Commit message (Collapse)AuthorAgeFilesLines
* Notify failures when loading tilesThiago Marcos P. Santos2015-05-221-0/+5
|
* Notify failures when loading the sprite JSON and imageThiago Marcos P. Santos2015-05-221-0/+5
|
* Notify failures when loading the source JSONThiago Marcos P. Santos2015-05-221-0/+5
|
* only return locked FontStack objectsKonstantin Käfer2015-05-191-0/+30
|
* fix division by zero conditionsDane Springmeyer2015-05-081-1/+5
|
* Add style change functionality to the Linux test appThiago Marcos P. Santos2015-05-071-0/+1
| | | | | | | Makes the life of people using Linux as development environment way easier. Just press 's' to cycle through 3 different styles.
* only update GL state when it actually changedKonstantin Käfer2015-05-041-0/+87
|
* fix compile with clang-3.6Dane Springmeyer2015-05-011-2/+1
|
* Rewrite Worker in terms of Thread<>John Firebaugh2015-04-281-95/+0
|
* port LineBucket::addLine from -jsAnsis Brammanis2015-04-272-1/+17
|
* Ensure correct spin directionMinh Nguyễn2015-04-181-0/+6
| | | | | | Ported mapbox/mapbox-gl-js#821 as well as `util.wrap()` from mapbox-gl-js. Fixes #1199.
* Replace uv_messenger with AsyncQueue; rewrite remaining uv_* in C++John Firebaugh2015-04-092-34/+0
|
* Add typedefs for std::chrono::steady_clock typesJohn Firebaugh2015-04-021-0/+16
|
* Merge branch 'master' into 1022-annotations-thread-safetyJustin R. Miller2015-03-231-0/+7
|\
| * Cocoa annotations APIJustin R. Miller2015-03-221-0/+7
| |
* | make more things const and refs, and add mutexesKonstantin Käfer2015-03-201-2/+0
|/
* refs #893 #992: point annotations APIJustin R. Miller2015-03-172-0/+18
|
* fix ambiguous name (gcc)Konstantin Käfer2015-03-061-1/+1
|
* throw exception when shader compilation failsKonstantin Käfer2015-03-061-0/+27
|
* add more locking around GlyphStore and FontStackKonstantin Käfer2015-03-061-0/+33
| | | | this is a stopgap until we have a solution that gives every worker thread their own copy
* move readlock/writelock to uv.hpp and add movable lock/mutexKonstantin Käfer2015-03-061-0/+41
|
* update mapbox::variantKonstantin Käfer2015-03-062-83/+145
|
* fixes #476 & #853: pixel/meter/latlng conversion routines in core & iOSJustin R. Miller2015-02-163-0/+96
|
* Fix #include <uv.h> mixing between C and C++ modesLeith Bade2015-02-111-2/+2
|
* use standard DEBUG macro rather than NDEBUGKonstantin Käfer2015-02-041-2/+4
|
* rewrite storage layer to be independent of the Map's event loopKonstantin Käfer2015-02-044-21/+173
|
* Use std::chronoLeith Bade2015-02-041-28/+0
|
* Merge branch 'master' of github.com:mapbox/mapbox-gl-native into android-masonLeith Bade2014-12-101-0/+30
|\ | | | | | | | | Conflicts: platform/default/http_request_baton_curl.cpp
| * report version number in user agent stringKonstantin Käfer2014-12-081-2/+0
| | | | | | | | refs #628
| * add user agent headerKonstantin Käfer2014-12-081-0/+32
| | | | | | | | fixes #628
* | Merge branch 'master' of github.com:mapbox/mapbox-gl-native into android-masonLeith Bade2014-12-0527-1305/+20
|\ \ | |/ | | | | | | | | | | | | | | | | | | Conflicts: .gitignore gyp/mbgl-ios.gypi gyp/mbgl-linux.gypi gyp/mbgl-osx.gypi include/mbgl/map/map.hpp src/mbgl/map/map.cpp src/mbgl/storage/caching_http_file_source.cpp
| * remove usage of relative pathsKonstantin Käfer2014-12-042-2/+2
| |
| * make most headers privateKonstantin Käfer2014-12-0424-1303/+0
| |
| * remove use of std::to_string in favor of boost::lexical_castKonstantin Käfer2014-12-041-0/+18
| | | | | | | | std::to_string calls sprintf() internally, which is really slow
* | Merge branch 'master' of github.com:mapbox/mapbox-gl-native into android-masonLeith Bade2014-12-042-68/+0
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: include/mbgl/storage/base_request.hpp include/mbgl/storage/file_request_baton.hpp include/mbgl/storage/http_request.hpp include/mbgl/storage/http_request_baton.hpp include/mbgl/util/uv_detail.hpp platform/darwin/http_request_baton_cocoa.mm platform/default/caching_http_file_source.cpp platform/default/http_request_baton_curl.cpp src/map/map.cpp src/storage/base_request.cpp src/storage/file_request.cpp src/storage/file_request_baton.cpp src/storage/http_request.cpp src/storage/http_request_baton.cpp
| * Prefer stdlib to libuv (fixes #688)John Firebaugh2014-12-032-49/+0
| |
* | Merge branch 'master' of github.com:mapbox/mapbox-gl-native into android-masonLeith Bade2014-12-041-8/+12
|\ \ | |/ | | | | | | | | | | | | Conflicts: gyp/mbgl-ios.gypi gyp/mbgl-linux.gypi gyp/mbgl-osx.gypi platform/default/caching_http_file_source.cpp
| * libuv handles must be deallocated asynchronouslyJohn Firebaugh2014-12-031-8/+12
| | | | | | Fixes #659
* | Merge branch 'master' of github.com:mapbox/mapbox-gl-native into android-masonLeith Bade2014-12-031-6/+21
|\ \ | |/ | | | | | | Conflicts: src/map/map.cpp
| * add array overloads to make_unique and move it to mbgl::util from stdKonstantin Käfer2014-12-031-6/+21
| |
* | Remove accidental friendLeith Bade2014-12-031-1/+0
| |
* | Merge branch 'master' of github.com:mapbox/mapbox-gl-native into android-masonLeith Bade2014-12-033-5/+21
|\ \ | |/ | | | | | | | | Conflicts: include/mbgl/map/map.hpp src/map/map.cpp
| * Texturepool ⇢ TexturePool (fixes #655)John Firebaugh2014-12-022-4/+4
| |
| * More complete uv::threadJohn Firebaugh2014-12-021-1/+17
| |
* | Merge branch 'master' of github.com:mapbox/mapbox-gl-native into android-masonLeith Bade2014-11-283-32/+57
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: README.md configure gyp/mbgl-linux.gypi include/mbgl/map/map.hpp include/mbgl/platform/default/image_reader.hpp include/mbgl/platform/default/jpeg_reader.hpp include/mbgl/platform/default/png_reader.hpp include/mbgl/util/uv_detail.hpp ios/mapbox-gl-cocoa platform/default/image.cpp platform/default/image_reader.cpp platform/default/jpeg_reader.cpp platform/default/png_reader.cpp src/map/map.cpp
| * Introduce uv::asyncJohn Firebaugh2014-11-262-0/+39
| |
| * Use noncopyableJohn Firebaugh2014-11-261-11/+11
| |
| * Remove unusedJohn Firebaugh2014-11-261-11/+0
| |
| * Remove unusedJohn Firebaugh2014-11-261-5/+0
| |
| * Eliminate remaining uses of Map in TileDataJohn Firebaugh2014-11-261-2/+2
| |