summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [android] - use RGB values instead of alpha values for local glyph generationupstream/tvn-local-font-fixtobrun2020-03-231-1/+3
|
* 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
|
* [core] Binary size fixupMikhail Pozdnyakov2020-03-121-38/+46
|
* [core] Collision index uses doubled padding with the tilted viewMikhail Pozdnyakov2020-03-123-3/+11
|
* [core] Variable labels stick to latest anchor if the view is tiltedMikhail Pozdnyakov2020-03-122-22/+29
| | | | This is done in order to improve labels stability and for the performace reasons.
* [core] Do not squeeze placement period if the view is tiltedMikhail Pozdnyakov2020-03-123-14/+17
| | | | | | If the view is not tilted, we want the new symbols to show up faster, so we squeeze the placement period. On contrary, with the tilted view it's more important to make placement rarely for performance reasons and as the new symbols are normally "far away" and the user is not that interested to see them ASAP.
* [core] Place already visible symbols first and hidden symbols lastMikhail Pozdnyakov2020-03-122-1/+29
|
* Update baselinesMikhail Pozdnyakov2020-03-124-0/+140
|
* [tests] Enable left-top-right-bottom-offset-tile-map-mode testMikhail Pozdnyakov2020-03-123-1/+35
| | | | Rebase its results after https://github.com/mapbox/mapbox-gl-native/commit/3ca26ed2a609ed2eec03be0e712c29ce83a99235
* [test][ios] Update iOS render test data setup scriptJuha Alanen2020-03-123-17/+32
|
* [glfw] Add OpenGL files only when the flag is enabledJuha Alanen2020-03-121-2/+14
|
* [test] Run Annotations DebugSparse test only with OpenGL rendererJuha Alanen2020-03-121-0/+4
|
* [core] Follow-up on the platform integration callback PRThiago Marcos P. Santos2020-03-121-5/+6
| | | | Addressing review comments that arrived after the PR was merged.
* [metrics] Updated baselinesThiago Marcos P. Santos2020-03-114-0/+140
|
* Bump mapbox-gl-jskevin2020-03-111-0/+0
|