Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [core] Increase round join approximation precision | Alexander Shalamov | 2019-08-05 | 1 | -1/+1 |
| | |||||
* | [core] A more accurate algorithm for approximating round line joins | Alexander Shalamov | 2019-08-05 | 1 | -17/+25 |
| | | | | Port for https://github.com/mapbox/mapbox-gl-js/pull/8275 | ||||
* | [ios, build] Make CocoaPods CI deployment synchronous | Jason Wray | 2019-08-01 | 1 | -6/+0 |
| | | | Otherwise it may not be allowed to finish before the CI job ends. | ||||
* | [android] adding latitude value check for android test app ↵ | Langston Smith | 2019-08-01 | 1 | -0/+12 |
| | | | | CameraPositionActivity (#15286) | ||||
* | [CI] Remove Source.RenderTileSetSourceUpdate from Sanitize build | Mikhail Pozdnyakov | 2019-08-01 | 1 | -1/+2 |
| | |||||
* | [core] Fix render tile set source update | Mikhail Pozdnyakov | 2019-08-01 | 2 | -1/+40 |
| | | | | | | Before this change, the `RenderTileSetSource` implementation ignored update calls for the sources whose description was not yet loaded and it lead to missing of relayout requests. | ||||
* | [android] - load style without url or json | tobrun | 2019-08-01 | 9 | -7/+103 |
| | |||||
* | [core] Switch test build to googletest git submodule | Mikhail Pozdnyakov | 2019-08-01 | 39 | -31750/+18 |
| | |||||
* | [core] Add googletest git submodule | Mikhail Pozdnyakov | 2019-08-01 | 2 | -0/+3 |
| | |||||
* | [core] revert platform/ios/vendor/mapbox-events-ios change submitted | Aleksandar Stojiljkovic | 2019-08-01 | 1 | -0/+0 |
| | |||||
* | [android] remove unnecessary android:appComponentFactory reference | Łukasz Paczos | 2019-08-01 | 1 | -3/+1 |
| | |||||
* | [core] Changelog entry for #15195 | Aleksandar Stojiljkovic | 2019-08-01 | 3 | -0/+13 |
| | |||||
* | [core] Limit pitch based on edge insets. Fix max Z calculation in getProjMatrix. | Aleksandar Stojiljkovic | 2019-08-01 | 7 | -17/+77 |
| | | | | | | | | | | | | | Patch partly fixes #15163 in a way that it doesn't allow loading tens of thousands of tiles and attempt to show area above horizon: Limit pitch based on edge insets. It is not too bad - current limit of 60 degrees stays active until center of perspective is moved towards the bottom, to 84% of screen height. The plan is to split removal of 60 degrees limit to follow up patch. Fix max Z calculation in getProjMatrix. TransformState::getProjMatrix calculation of farZ was complex with possibility to lead to negative z values. Replacing it with simpler, precise calculation: furthestDistance = cameraToCenterDistance / (1 - tanFovAboveCenter * std::tan(getPitch())); TransformState::getProjMatrix calculation of farZ was an aproximation. Replacing it with simpler, but precise calculation. Related to: #15163 | ||||
* | [ios] Release 5.3.0-alpha.1 (#15279)ios-v5.3.0-alpha.1 | Jordan Kiley | 2019-07-31 | 4 | -5/+5 |
| | | | | | | * [ios] Bumped podspecs * Update platform/ios/CHANGELOG.md | ||||
* | [android] Additional changelog item to v7.4.1 mojito patch release section ↵ | Langston Smith | 2019-07-31 | 1 | -0/+1 |
| | | | | (#15277) | ||||
* | [android] updated android changelog for 7.4.1 patch release (#15274) | Langston Smith | 2019-07-31 | 1 | -0/+7 |
| | |||||
* | [ios, build] Update to Xcode 10.3 on CircleCI | Jason Wray | 2019-07-31 | 1 | -8/+8 |
| | |||||
* | [android] updating android changelog for 8.0.2 patch release (#15273) | Langston Smith | 2019-07-31 | 1 | -0/+9 |
| | |||||
* | [android] updated android changelog for 8.2.1 patch release (#15272) | Langston Smith | 2019-07-31 | 1 | -0/+6 |
| | |||||
* | [android] update changelog for the v8.3.0-alpha.1 releaseandroid-v8.3.0-alpha.1 | tobrun | 2019-07-31 | 1 | -1/+18 |
| | |||||
* | [android] do not reinitialize camera/render mode if it hasn't changed | Łukasz Paczos | 2019-07-31 | 5 | -41/+107 |
| | | | | Camera/Render mode updates can be streamed from various different stateless sources and we should make sure to skip an update to a mode that's already set. This keeps the callbacks tidy and does not perform unnecessary work. | ||||
* | [android] save location animation timestamp only when fed | Łukasz Paczos | 2019-07-31 | 1 | -20/+20 |
| | | | | When all location layer animations were reset, due to the mode change, we were recalculating the time of the animation, while we should be taking the remaining duration. Frequent recalculation requests resulted in a really short animation duration. | ||||
* | [android] package ideographs flag in the offline definition parcel | Łukasz Paczos | 2019-07-31 | 2 | -0/+4 |
| | |||||
* | [android] do not include CJK ideographs in the offline packs by default | Łukasz Paczos | 2019-07-31 | 2 | -2/+2 |
| | |||||
* | [ios] Update changelog for 4.11.2, 5.0.2, 5.1.2 (#15259) | Julian Rex | 2019-07-30 | 1 | -0/+15 |
| | |||||
* | [ios, build] Automatically deploy to CocoaPods | Jason Wray | 2019-07-30 | 2 | -0/+58 |
| | |||||
* | [ios, build] Install cocoapods as a deployment dependency | Jason Wray | 2019-07-30 | 1 | -1/+39 |
| | |||||
* | [android] ensure default local ideographs font family is not overwrote | Łukasz Paczos | 2019-07-30 | 2 | -3/+19 |
| | |||||
* | [core] Add unit test for grid index | Alexander Shalamov | 2019-07-30 | 1 | -0/+5 |
| | |||||
* | [core] Fix int overflow issue in GridIndex | Alexander Shalamov | 2019-07-30 | 2 | -16/+18 |
| | |||||
* | [build] Do not include mapbox-base if target already exists | Bruno de Oliveira Abinader | 2019-07-30 | 1 | -1/+3 |
| | |||||
* | [android] harden MapGestureDetector tests | Łukasz Paczos | 2019-07-30 | 1 | -26/+19 |
| | |||||
* | [build] Don't allow codecov to fail a CI job | Jason Wray | 2019-07-29 | 1 | -3/+1 |
| | |||||
* | [build] Use mapbox-base optional | Bruno de Oliveira Abinader | 2019-07-29 | 15 | -47/+22 |
| | |||||
* | [core] Shrink RenderOrchestrator::filteredLayersForSource in reduceMemoryUse() | Mikhail Pozdnyakov | 2019-07-29 | 1 | -3/+1 |
| | | | | | Before this change, `RenderOrchestrator::filteredLayersForSource` shrank inside `createRenderTree()`, which potentially might have affected rendering performance. | ||||
* | [ios, build] Stop copying iosapp token script into framework | Jason Wray | 2019-07-26 | 1 | -4/+0 |
| | |||||
* | [build] Replace geometry.hpp/variant with mapbox-base | Bruno de Oliveira Abinader | 2019-07-26 | 15 | -92/+76 |
| | |||||
* | [android] - update changelog for release v8.1.1 (#15224) | Tobrun | 2019-07-26 | 1 | -0/+12 |
| | |||||
* | [core] Added unit test for issue 15216 | Mikhail Pozdnyakov | 2019-07-26 | 1 | -0/+11 |
| | |||||
* | [core] Fix assertion at RenderRasterLayer::prepare() | Mikhail Pozdnyakov | 2019-07-26 | 2 | -2/+5 |
| | | | | | It shall consider that image data might not be available until the source loads it. | ||||
* | [core] Avoid copying feature properties | Mikhail Pozdnyakov | 2019-07-25 | 9 | -9/+19 |
| | |||||
* | [core] Simplfy ToGeometryCollection | Mikhail Pozdnyakov | 2019-07-25 | 1 | -32/+7 |
| | |||||
* | [android] align gesture animation reason | Łukasz Paczos | 2019-07-25 | 1 | -3/+2 |
| | |||||
* | [core] Optimize Query Rendered Features API | Mikhail Pozdnyakov | 2019-07-25 | 2 | -7/+9 |
| | | | | | | | | This PR filters out invisible layers before quering features (rather than after, like it happened before). With this change `API_queryRenderedFeaturesAll` performance test passes almost two times faster. | ||||
* | [ios, macos]MGLLoggingConfiguration can filter logs from core (#15120) | m-stephen | 2019-07-25 | 11 | -38/+90 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [ios, macos] update proj config * [ios, macos] implement the logging logic * [ios, macos] update comments * [ios, macos] update mac os config * [ios, macos] re-generate sdk files * [ios, macos] re-generate sdk files json * [ios, macos]re-generate json files * [ios, macos] re-generate ios json files * [ios] change conditions to bit mask * [ios, macos]send messages to platform * [ios, macos] add changelogs * [ios, macos] revert `logging_nslog` * [ios, macos] add event name and code into log msg * [ios, macos] update changlog * [ios, macos] fix a nit * [ios, macos]Fix nits. | ||||
* | [ios, build] Trigger external deploy jobs before long-running build tasksupstream/friedbunny-rearranges-deploy-job-order | Jason Wray | 2019-07-24 | 1 | -1/+7 |
| | |||||
* | [ios] Prepare ios-v5.2.0 release | Jason Wray | 2019-07-24 | 4 | -7/+22 |
| | |||||
* | [core] GeometryCollection must not be implicitly copied | Mikhail Pozdnyakov | 2019-07-24 | 7 | -38/+44 |
| | |||||
* | [core] Optimize RenderLineLayer::queryIntersectsFeature | Mikhail Pozdnyakov | 2019-07-24 | 1 | -11/+24 |
| | |||||
* | [core] Default GeometryTileFeature::getGeometries() implementation | Mikhail Pozdnyakov | 2019-07-24 | 3 | -4/+6 |
| |