summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [ios] stray error codeupstream/jmkiley-cache-management-apijmkiley2019-07-161-1/+1
|
* [ios] replace error codesjmkiley2019-07-161-11/+12
|
* [ios] address some feedbackjmkiley2019-07-161-7/+8
|
* Update platform/darwin/src/MGLOfflineStorage.hJordan Kiley2019-07-151-1/+2
| | | Co-Authored-By: Jason Wray <friedbunny@users.noreply.github.com>
* [ios] Remove MGLErrorCodeMAccessngOfflineStorageFailedjmkiley2019-07-152-11/+9
|
* [ios] added two MGLErrorDomain typesjmkiley2019-07-152-9/+11
|
* [ios] Add MGLErrorCodeOfflineDatabasejmkiley2019-07-152-9/+11
|
* [ios] formattingjmkiley2019-07-151-2/+3
|
* [ios] address feedbackjmkiley2019-07-151-16/+15
|
* Update platform/darwin/src/MGLOfflineStorage.hJordan Kiley2019-07-151-1/+1
| | | Co-Authored-By: Jason Wray <friedbunny@users.noreply.github.com>
* [ios] lower wait timejmkiley2019-07-121-4/+4
|
* [ios] remove ! from setMaximumAmbientCachejmkiley2019-07-121-1/+1
|
* [ios] fix inconsistent completionhandlerjmkiley2019-07-123-10/+10
|
* [ios] raise time for waitforexpecectationsjmkiley2019-07-121-3/+3
|
* [ios] Remove commented out codejmkiley2019-07-121-3/+0
|
* [ios] - -> 0jmkiley2019-07-121-1/+1
|
* [ios] longer wait time for testjmkiley2019-07-111-3/+3
|
* [ios] Use oneliner.jsonjmkiley2019-07-111-1/+3
|
* [ios] address feedbackjmkiley2019-07-101-31/+19
|
* [ios] started to address jason's feedbackjmkiley2019-07-104-101/+28
|
* [ios] whitespaceJordan Kiley2019-07-101-1/+0
| | | Co-Authored-By: Jason Wray <friedbunny@users.noreply.github.com>
* [ios] whitespaceJordan Kiley2019-07-101-1/+0
| | | Co-Authored-By: Jason Wray <friedbunny@users.noreply.github.com>
* [ios] whitespaceJordan Kiley2019-07-101-1/+0
| | | Co-Authored-By: Jason Wray <friedbunny@users.noreply.github.com>
* [ios] add 2 more testsjmkiley2019-07-091-2/+35
|
* [ios] renamed invalidatePacks example, adding timingjmkiley2019-07-092-4/+7
|
* [ios] updated docsjmkiley2019-07-091-4/+8
|
* [ios] cleaned up examplesjmkiley2019-07-091-12/+15
|
* [ios] i don't even knowjmkiley2019-07-091-5/+7
|
* [ios] Update with invalidatePack example, update setMaximumAmbientCacheSize ↵jmkiley2019-07-093-25/+39
| | | | amount
* [ios] update setmaximumambientcache docs and codejmkiley2019-07-092-3/+3
|
* [ios] Updated docs, made setMaximumAmbientCache: synchronousjmkiley2019-07-092-8/+60
|
* [ios] Renamed invalidatePack, added a few commentsjmkiley2019-07-093-14/+14
|
* [ios] moved tests, renamed resetDatabase examplejmkiley2019-07-092-21/+29
|
* [ios] add completion to invalidateOfflineRegionForPack, start testsjmkiley2019-07-092-0/+23
|
* [ios] finished invalidateOfflineRegionForPackjmkiley2019-07-092-32/+10
|
* [ios] attempting invalidateOfflineRegionForPack: approachjmkiley2019-07-091-20/+36
|
* [ios] Started invalidateOfflineRegionjmkiley2019-07-091-11/+23
|
* [ios] add resetDatabase implementation and examplejmkiley2019-07-093-21/+46
|
* [ios] Added implementations and started debug codejmkiley2019-07-094-19/+125
|
* [ios] chipping at methodsjmkiley2019-07-092-23/+30
|
* [ios] add callback methodjmkiley2019-07-092-4/+21
|
* [ios] started invalidateAmbientCachejmkiley2019-07-092-4/+7
|
* [ios] initial implementation for setMaximumCacheSizejmkiley2019-07-092-0/+29
|
* [build] Opt out of homebrew cleanup on CIJason Wray2019-07-091-0/+10
|
* [core] decrease the minimum pixel distance required to interpolate during ↵Łukasz Paczos2019-07-091-1/+1
| | | | | | camera animation The changes introduced in #9199 changed the minimum required pixel distance between start and end points to >= 1px in order to interpolate, which in scenarios of big zoom changes and low pixel density can result in animation to the previous position and then a jump to the target.
* Enable ignored but passing run-time styling tests (#6745)Aleksandar Stojiljkovic2019-07-091-2/+0
|
* [core] Put gfx backend scope guard to Renderer::reduceMemoryUse()Mikhail Pozdnyakov2019-07-091-0/+1
|
* [glfw] Reduce memory use when window loses focusMikhail Pozdnyakov2019-07-092-0/+9
|
* Issue #15065 changelogs and nit fix.Aleksandar Stojiljkovic2019-07-094-5/+9
|
* Fix layers rendering after fill-extrusionAleksandar Stojiljkovic2019-07-0911-33/+31
| | | | | | | | | | | | | | | | | | | | | This fixes following issues: * Fix some false passing combinations/fill-extrusion-translucent--XXXX tests * Fix and enable other, failing but ignored, combinations/fill-extrusion-translucent--XXXX tests * Fix rendering of layers that are on top of fill-extrusion layers state.getProjMatrix(nearClippedProjMatrix, 100) caused that tests with size 64x64 were not rendering fill extrusions: far plane calculated as 96.9 and near plane set to 100 was the cause. near plane is changed from hardcoded 100 to depend on state.getCameraToCenterDistance() - producing similar value but one that follows max zoom. This caused that e.g. combinations/fill-extrusion-translucent--fill-opaque was falsely passing as only fill-opaque layer got rendered. combinations/fill-extrusion-translucent--XXXX tests expose regression https://github.com/mapbox/mapbox-gl-native/issues/14844#issuecomment-503600034 in #14844, #14779. Fix (opaquePassCutoff, is3D) is ported from https://github.com/mapbox/mapbox-gl-js/pull/7821 Fixes: #14844, #14779, #15039