summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* [core] Move generic setProperty() parts to the base Layer classMikhail Pozdnyakov2020-03-2424-124/+100
|
* [android] - use RGB values instead of alpha values for local glyph generationtobrun2020-03-241-1/+3
|
* [android] Add jni binding for styleable snapshotter (#16286)Kevin Li2020-03-2434-243/+429
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [android] Add jni binding for styleable snapshotter * Remove Map parameter from factories - remove unused map from factory interfaces. Map is only needed for repaint. * implement addlayer function * Implement addsource function for snapshotter * Implement addImages function * format codes * Apply baseline * Update CHANGELOG.md * Update map_snapshotter.cpp * Destroy snapshotter on the thread it was created * Activate file sources in start * Use custom deleter for snapshotter * format codes * Release snapshotter pointer to deleting lambda * Clang format * Update CHANGELOG.md * Fix review comments * FIx review comments Co-authored-by: Alexander Shalamov <alexander.shalamov@mapbox.com>
* [test] Include cpp-httplib as a system libraryThiago Marcos P. Santos2020-03-232-4/+14
| | | | This way it will not get warnings by linters and -Werror.
* [build] Deprecated GCC 4.9 and set the minimum to GCC 5Thiago Marcos P. Santos2020-03-232-5/+3
|
* [build] Prevent future modernize-* regressionsThiago Marcos P. Santos2020-03-231-2/+2
| | | | | Also ignore modernize-avoid-c-arrays, not such a big deal at the moment.
* [core] Fix modernize-use-override errorsThiago Marcos P. Santos2020-03-232-2/+2
| | | | As reported by clang-tidy-8.
* [core] Fix modernize-pass-by-value errorsThiago Marcos P. Santos2020-03-238-35/+23
| | | | As reported by clang-tidy-8.
* [core] Fix modernize-deprecated-headers errorsThiago Marcos P. Santos2020-03-232-4/+6
| | | | As reported by clang-tidy-8.
* [core] Fix modernize-use-equals-default errorsThiago Marcos P. Santos2020-03-232-2/+2
| | | | As reported by clang-tidy-8.
* [core] Fix modernize-use-auto errorsThiago Marcos P. Santos2020-03-231-1/+1
| | | | As reported by clang-tidy-8.
* [core] Fix modernize-return-braced-init-list errorsThiago Marcos P. Santos2020-03-239-47/+35
| | | | As reported by clang-tidy-8.
* Update LICENSE.mbgl-core.md license fileAlexander Shalamov2020-03-231-96/+32
|
* Bump mapbox-base to 1.2.0Alexander Shalamov2020-03-2319-53/+30
|
* Add Changelogzmiao2020-03-231-0/+6
|
* [build] Thread clang-tidy performance-* warnings as errorsThiago Marcos P. Santos2020-03-231-1/+1
| | | | With all them fixed, they won't come back.
* [core] Fix performance-unnecessary-value-param errorsThiago Marcos P. Santos2020-03-23112-475/+539
| | | | As reported by clang-tidy-8.
* [core] Fix performance-type-promotion-in-math-fn errorsThiago Marcos P. Santos2020-03-236-19/+26
| | | | As reported by clang-tidy-8.
* [core] Fix performance-noexcept-move-constructor errorsThiago Marcos P. Santos2020-03-232-5/+4
| | | | As reported by clang-tidy-8.
* [core] Fix performance-inefficient-vector-operation errorsThiago Marcos P. Santos2020-03-232-0/+2
| | | | As reported by clang-tidy-8.
* [core] Fix performance-unnecessary-copy-initialization errorsThiago Marcos P. Santos2020-03-231-1/+1
| | | | As reported by clang-tidy-8.
* [core] Fix performance-for-range-copy errorsThiago Marcos P. Santos2020-03-235-8/+8
| | | | As reported by clang-tidy-8.
* [build] Trigger the downstream CI and get the status backThiago Marcos P. Santos2020-03-202-0/+91
| | | | | Allows triggering a pipeline at any other repository passing parameters.
* [core] Render::clearData clears fontsMikhail Pozdnyakov2020-03-203-23/+26
|
* Update changelogMikhail Pozdnyakov2020-03-201-14/+2
|
* Update metricsMikhail Pozdnyakov2020-03-2020-40/+40
|
* [core] Introduce Renderer::clearData() instead of keepRenderData map optionsMikhail Pozdnyakov2020-03-2011-76/+28
| | | | | | | | | | `Renderer::clearData()` is a better API than the removed `MapOptions::keepRenderData()`: - gives more flexibility to the client - similar to the existing `Renderer::reduceMemoryUse()` - the `MapOptions::keepRenderData()` API implementation could not handle the raise condition, which happened if the new still image request had come before all tiles from the previous requests were loaded. Co-authored-by: Dane Springmeyer <dane@mapbox.com>
* Add additional transformState::latLngToScreenCoordinate getter (#16311)galinelle2020-03-193-2/+17
| | | | | | This change adds a latLngToScreenCoordinate overload, to retrieve the projected vec4 in additional to the ScreenCoordinate object, that is useful to detect whether the projected latLng is in front or behind the camera.
* Update metricszmiao2020-03-191-1/+1
|
* Refactor within functionzmiao2020-03-192-80/+54
|
* update testzmiao2020-03-191-0/+48
|
* [core] Using TileCoordinates for geometry comparisonzmiao2020-03-194-168/+180
|
* [build] Use found code sign identitieszmiao2020-03-194-19/+27
|
* Change log entryMikhail Pozdnyakov2020-03-181-0/+18
|
* Add Map.KeepRenderData and Map.DontKeepRenderData testsMikhail Pozdnyakov2020-03-181-0/+57
|
* Update metricsMikhail Pozdnyakov2020-03-1813-81/+81
|
* [render tests] Unset `MapOptions::keepRenderData()` flag in tile modeMikhail Pozdnyakov2020-03-181-1/+2
|
* [core] Add ImageManager::clear()Mikhail Pozdnyakov2020-03-183-0/+16
|
* [core] Add RenderOrchestrator::clearData()Mikhail Pozdnyakov2020-03-184-5/+19
|
* [core][tile|static mode] Introduce MapOptions::keepRenderData() flagMikhail Pozdnyakov2020-03-187-4/+50
| | | | Render orchestrator stores the render data between render frames if this flag is set.
* Update change log for the maps-v1.4.1 releaseAlexander Shalamov2020-03-161-0/+2
|
* start using tname variableDane Springmeyer2020-03-161-6/+6
|
* Update CHANGELOG.md (#16313)Kevin Li2020-03-161-0/+8
|
* Update map_snapshotter.cpp (#16308)Kevin Li2020-03-161-1/+1
|
* [build] Bump dockerThiago Marcos P. Santos2020-03-142-1/+2
| | | | Allow building with OpenGL ES 2.0 headers on Linux.
* Merge pull request #16305 from mapbox/mikhail_change_log_for_maps-v1.3.0maps_v1.4.0maps-v1.4.0upstream/maps_v1.4.0Mikhail Pozdnyakov2020-03-131-5/+9
| | | Update change log for the maps-v1.4.0 release
* [core] Fix crash at Placement::getSymbolPlacement()Mikhail Pozdnyakov2020-03-131-1/+1
|
* Update Changelogzmiao2020-03-131-0/+5
|
* Add change log entryMikhail Pozdnyakov2020-03-121-0/+4
|
* Update metricsMikhail Pozdnyakov2020-03-122-2/+2
|