summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [build] add make target "tidy" for running clang-tidyKonstantin Käfer2015-12-034-3/+32
|
* [build] add ninja + compilation database supportKonstantin Käfer2015-12-034-1/+23
|
* [ios] fix CoreTelephony crash (by removing it)Jason Wray2015-12-023-46/+1
| | | | Fix #3112, ref #2581
* refs #3112: cleanups around Core Telephony runtimeJustin R. Miller2015-12-021-6/+7
| | | | | - don't do anything with CT in simulator - more direct use of dynamic selectors for clarity
* [android] #3151 - Added sample `InfoWindowConcurrentActivity` to illustrate ↵Antonio Zugaldia2015-12-026-13/+149
| | | | the behavior of multiple InfoWindows visible at a time.
* [core] Only android needs libzipJohn Firebaugh2015-12-012-2/+0
|
* [core] Use optional where SpriteAtlas return values might not existJohn Firebaugh2015-12-017-61/+61
| | | | Fixes #3162
* [tests] Update test-suiteJohn Firebaugh2015-12-011-1/+1
|
* [core] Map::setSprite ⇢ Map::addAnnotationIconJohn Firebaugh2015-12-0112-50/+44
| | | | Fixes #3084
* [core] Remove mutex from StyleJohn Firebaugh2015-12-012-4/+0
| | | | There's no cross-thread sharing to be protected here.
* [core] Privatize layers and sourcesJohn Firebaugh2015-12-015-124/+130
|
* [core] Don't share util::ptr<StyleLayer> across threadsJohn Firebaugh2015-12-0111-78/+81
|
* [core] Don't share Style& across threadsJohn Firebaugh2015-12-014-18/+26
|
* [node] simpler PACKAGE_JSON_VERSIONMike Morris2015-12-013-8/+1
|
* [glfw] No longer necessary to wait for style load to add default markerJohn Firebaugh2015-12-012-9/+1
|
* [core] Use a separate atlas and store for annotation spritesAdam Hunter2015-12-0114-27/+69
| | | | Fixes #1488
* [core] Move MapData storage to MapContextJohn Firebaugh2015-12-015-8/+16
| | | | | This allows MapData members to hold GL resources which must be released on the MapContext thread -- necessary for the following commit.
* [core] Introduce StyleUpdateParametersJohn Firebaugh2015-12-016-44/+91
|
* Partially revert "[core] Source should receive a ref to MapData just once"John Firebaugh2015-12-019-38/+22
| | | | This partially reverts commit d55aa7929cb10d40a58b6b7a8ed73bddd4f0a407.
* Improve quickzooming on AndroidBraden Ewing2015-12-011-6/+8
|
* [render] Add a RunLoop to `render` main threadThiago Marcos P. Santos2015-12-011-26/+10
| | | | Also simplified the code making the logic more linear.
* [core] Don't link with libuv on components not using it directlyThiago Marcos P. Santos2015-12-019-66/+0
|
* [core] Remove mbgl/util/uv.hppThiago Marcos P. Santos2015-12-015-434/+95
| | | | Now only a few things depend on libuv and they can use it directly.
* [tests] Fix/improve Asset utestsThiago Marcos P. Santos2015-12-016-27/+116
| | | | | | ASSET=zip make test-* was broken and now works. Also added a test stressing concurrent file access.
* [core] Removed libuv dependency from AssetZipContextThiago Marcos P. Santos2015-12-014-436/+217
|
* [core] Removed libuv dependency from AssetFSContextThiago Marcos P. Santos2015-12-013-148/+161
|
* [core] Removed libuv dependency from HTTPCurl*Thiago Marcos P. Santos2015-12-013-68/+139
| | | | | Moved the fd watcher to the RunLoop. So far only needs to be implemented by platforms using HTTPCurlRequest et al.
* [core] Do not use uv::rwlock on StyleThiago Marcos P. Santos2015-12-012-3/+3
| | | | It was being used as a normal mutex anyway.
* [tests] Add utests for ThreadLocalThiago Marcos P. Santos2015-12-012-0/+96
|
* [core] Port uv::tls to pthreadsThiago Marcos P. Santos2015-12-015-71/+152
|
* [core] Privatize internal headersJohn Firebaugh2015-12-013-0/+0
|
* [core] Expose fewer RunLoop implementation details in headerJohn Firebaugh2015-12-014-24/+26
|
* [core] Merge uv_detail.hpp into uv.hppJohn Firebaugh2015-12-018-237/+210
|
* [tests] Remove libuv dependency from the testsThiago Marcos P. Santos2015-12-0123-145/+110
|
* [android] Removed libuv dependency from HTTPAndroid*Thiago Marcos P. Santos2015-12-011-8/+6
|
* [osx] Removed libuv dependency from HTTPNSUrl*Bruno de Oliveira Abinader2015-12-011-8/+5
|
* [curl] Make curl request less dependent on libuvThiago Marcos P. Santos2015-12-011-27/+18
|
* [core] Remove unused libuv includesThiago Marcos P. Santos2015-12-019-10/+6
|
* [tests] Add utests for TimerThiago Marcos P. Santos2015-12-012-0/+180
|
* [core] Introduce Timer abstractionThiago Marcos P. Santos2015-12-018-5/+78
|
* [core] Removed dependency on uv_loop from the file sourceThiago Marcos P. Santos2015-12-018-41/+37
|
* [core] Abstract main loop inside RunLoop classThiago Marcos P. Santos2015-12-0111-67/+131
|
* [core] Use AsyncTask on the MapContextThiago Marcos P. Santos2015-12-013-21/+17
|
* [tests] Add utests for AsyncTaskThiago Marcos P. Santos2015-12-012-0/+130
|
* [core] Introduce the AsyncTaskThiago Marcos P. Santos2015-12-016-0/+86
|
* refs #2800: update docs exception thrown for no Android tokenJustin R. Miller2015-11-301-1/+1
| | | | [skip ci]
* [tests] Don't use icons from the style for annotationsJohn Firebaugh2015-11-3011-20/+24
|
* Merge pull request #3127 from mapbox/3115-multiple-infowindowsAntonio Zugaldia2015-11-305-57/+137
|\ | | | | 3115 multiple infowindows + leave open while panning
| * add flag to let concurrent multiple infowindows to be shownAntonio Zugaldia2015-11-303-2/+36
| |
| * [android] #3115 - optimised + cleanup before PRTobrun2015-11-251-10/+12
| |