summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add possibility to disable test and benchmark compilationupstream/kdn-cmake-configDenis Koronchik2021-07-211-3/+11
|
* Disable codecov jobAlexander Shalamov2021-04-161-4/+0
|
* [build] s/master/main on GL JSThiago Marcos P. Santos2020-09-211-3/+3
| | | | Check if pinned against main.
* [build] Disable code coverage buildsJuha Alanen2020-06-181-26/+0
|
* [build] Remove Android and iOS test runnersJuha Alanen2020-05-261-214/+0
|
* [core] Fix raster map jittering during panning (#16478)Kevin Li2020-05-251-2/+2
|
* [build] Disable Android unit test runnerJuha Alanen2020-05-181-3/+3
| | | | Disable Android unit test runner until CircleCI build issue is solved.
* [build] Disable benchmarks in CI on Linux and MacJuha Alanen2020-05-182-3/+6
|
* [build] Remove benchmark runnersJuha Alanen2020-05-181-77/+0
|
* Update changelogMikko Pulkki2020-05-021-0/+4
|
* Add unit tests for the free cameraMikko Pulkki2020-05-023-2/+503
|
* Add camera demo to the glfw appMikko Pulkki2020-05-022-1/+60
|
* Add FreeCameraOptions to the Map classMikko Pulkki2020-05-029-4/+210
|
* Refactor TransformState to use internal 3d cameraMikko Pulkki2020-05-025-37/+358
|
* Add quaternions to represent orientationsMikko Pulkki2020-05-023-0/+148
|
* Move vector types to a public headerMikko Pulkki2020-05-024-4/+16
|
* [darwin] Restore platform check for sku token (#16456)Jordan Kiley2020-05-011-0/+2
|
* Update changelog for the maps-1.6.0 releasemaps-v1.6.0upstream/release-v1.6.0Gali Nelle2020-04-301-0/+2
|
* [core] Fix rest of 'brace initialization' errorsAlexander Shalamov2020-04-304-52/+52
|
* [core] Fix geometry_util compilation errorzmiao2020-04-301-9/+10
|
* [darwin] remove accountType check (#16449)Jordan Kiley2020-04-301-9/+4
|
* Update changelogzmiao2020-04-301-0/+4
|
* Update baselinezmiao2020-04-301-1/+1
|
* [core] Distance expression: Refine logiczmiao2020-04-302-104/+175
|
* [test] Distance expression: Update unit testszmiao2020-04-305-46/+456
|
* Add support for polygon in distance expressionzmiao2020-04-302-33/+297
|
* [core] Distance expression: Remove code and comments related to unit argumentzmiao2020-04-283-11/+9
|
* Add change log entryMikhail Pozdnyakov2020-04-281-0/+12
|
* Update baselinesMikhail Pozdnyakov2020-04-281-3/+3
|
* [core][tile mode] Further improve the label prioritizationMikhail Pozdnyakov2020-04-281-12/+16
| | | | | | The most important variable labels a placed right away at "populate intersections" phase, even if they do not actually intersect the tile borders.
* [core][tile mode] Fix placement order of the variable labelsMikhail Pozdnyakov2020-04-282-29/+41
| | | | | | Before this change, all variable labels that could potentially intersect tile borders were placed first, breaking the style label placement priority order.
* [core] Label intersection prioritizationMikhail Pozdnyakov2020-04-281-3/+9
|
* [build] Fix script that trigger downstream jobsThiago Marcos P. Santos2020-04-281-1/+1
| | | | The API now replies with a 200 when the request is successful.
* [repo] Update code ownersThiago Marcos P. Santos2020-04-271-11/+5
| | | | Require a member of the gl-native team to review a PR
* Build default http stack if MBGL_PUBLIC_BUILD is setAlexander Shalamov2020-04-276-8/+12
|
* maps-v1.6.0-rc.2 (#16435)maps-v1.6.0-rc.2Minh Nguyễn2020-04-241-1/+1
|
* [core] Distance expression: remove unit argument (#16434)zmiao2020-04-243-170/+26
|
* Add test for PingFang TC SemiboldAlexander Shalamov2020-04-242-0/+15
|
* [ios, macos] Increased tolerance for local glyph rasterization testMinh Nguyễn2020-04-241-1/+1
| | | | Co-authored-by: Alexander Shalamov <alexander.shalamov@mapbox.com>
* [ios, macos] Match only one font name attribute at a timeMinh Nguyễn2020-04-241-7/+5
|
* [ios, macos] Added and updated documentationMinh Nguyễn2020-04-241-38/+96
|
* [ios, macos] Get glyph metrics from fontMinh Nguyễn2020-04-243-33/+60
| | | | | | Get glyph metrics from the font in the process of drawing each glyph into a bitmap context. These metrics result in more accurate kerning and better aligned baselines than the previous hard-coded values. Align iOS/macOS local glyph rasterization test fixture to Qt.
* [ios, macos] Avoid redundant fallback in font cascade listMinh Nguyễn2020-04-241-15/+38
| | | | A font descriptor should not be a fallback for itself.
* [ios, macos] Choose fonts from font stack that match local fontsMinh Nguyễn2020-04-242-48/+52
| | | | | | Prefer local fonts that match the names specified in the font stack (from the text-font layout property), except for the last resort fonts that mbgl hard-codes. Fall back to the list of fallback CJK fonts in user defaults, then the fonts passed in through the platform-agnostic interface (that come from Info.plist). Explicitly use the first font descriptor in the cascade list instead of the system default of Helvetica. Since the font stack can vary from one rasterization operation to the next, avoid caching the resolved font for now. Removed null checks that are unrealistic given the Core Text API contract.
* [core] Factored out default fontsMinh Nguyễn2020-04-242-8/+8
|
* [ios, macos] Take font family names from user defaultsMinh Nguyễn2020-04-241-5/+8
| | | | Take font family names from user defaults before falling back to font family names in Info.plist.
* [ios, macos] Allow specifying multiple fonts or font families for local font ↵Minh Nguyễn2020-04-242-8/+30
| | | | | | rendering mbgl::Renderer and mbgl::MapSnapshotter can now contain a list of font family names, font display names, and font PostScript names, each name separated by a newline.
* [ios, macos] Corrected PingFang test fixtureMinh Nguyễn2020-04-242-1/+1
| | | | PingFangTC-Regular is better than PingFangTC-Thin. There is no font by the name “PingFang”.
* [ios, macos] Fixed receiving local file URL responseMinh Nguyễn2020-04-242-0/+6
|
* [build] Remove incorrect include path in tests CMakeSudarsana Babu Nagineni2020-04-241-5/+1
|