summaryrefslogtreecommitdiff
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* [core, ios, macos, android] Add data-driven-styling support for `text-font`John Firebaugh2018-01-1022-22/+94
|
* [core] Handle NaN input to interpolate and stepJohn Firebaugh2018-01-101-3/+9
|
* [core] Omit inferred type annotations for 'coalesce' argumentsJohn Firebaugh2018-01-091-3/+10
|
* [core] Improve typing for !=, == expressionsJohn Firebaugh2018-01-091-0/+31
|
* [windows][core] Add std::tuple replacement for WindowsThiago Marcos P. Santos2018-01-082-5/+24
| | | | Windows STL + Clang can't build our IndexedTuple class.
* [windows][core] Add missing != operator to TilesetThiago Marcos P. Santos2018-01-081-0/+4
|
* [windows][core] Include what you useThiago Marcos P. Santos2018-01-081-0/+1
|
* Support TileJSON bounds property (#10701)Asheem Mamoowala2018-01-053-79/+16
| | | | | | | | * [core] Parse TileJSON bounds property * [core] Add TileRange and LatLngBounds::contains(CanonicalTileID) Move LatLngBounds::contains impl to cpp file * [core] Skip tile creation outside of tileset bounds * [core] Fix TileRange for wrapped bounds and use for CustomTileLoader instead of LatLngBounds comparisons for tiles.
* [core] Fix copy in range-based for loopsJason Wray2017-12-152-2/+2
| | | | Caught by `CLANG_WARN_RANGE_LOOP_ANALYSIS = YES`.
* [ios,macos] Darwin implementation of a CoreText-based LocalGlyphRasterizer.Chris Loer2017-12-111-1/+2
| | | | | - Changing font weight does not currently appear to be working. - Glyph metric extraction code not working; currently unused.
* [core] Support wrapped bounds in LatLngBounds::contains and ↵Asheem Mamoowala2017-12-071-15/+74
| | | | LatLngBounds::intersect.
* [build] standardize on -fvisibility=hidden for all targetsKonstantin Käfer2017-11-291-5/+10
| | | | | | | Enables -fvisibility=hidden for iOS and Linux, and adds a workaround for GCC 6.3-7.1 Adds a GCC 6 build Enables diagnostics for C files Fixes a shadow warning in parsedate.c
* [core] move HeadlessBackend extension initialization code into ImplKonstantin Käfer2017-11-291-1/+1
|
* [core, ios, macos] Implement unique_any and remove linb::anyAsheem Mamoowala2017-11-224-14/+279
|
* [core] Use Actors for CustomTileLoader invocation from bindings.Asheem Mamoowala2017-11-221-3/+3
|
* [core] Custom Geometry SourcesAsheem Mamoowala2017-11-224-1/+124
|
* [core] Cleanup in response to review comments.Chris Loer2017-11-171-3/+3
|
* [core] Split MapMode::Still into Static and TileAnsis Brammanis2017-11-171-1/+2
| | | | | `Tile` makes sure the symbols in the resulting tile are tileable while symbols in `Still` match rendering in `Continuous` mode.
* [build] Clang-3.8: Explicit mbgl::style::expression::Result default ctorBruno de Oliveira Abinader2017-11-141-0/+4
|
* [build] Clang-3.8: Default init of a const type requires user-provided ctorBruno de Oliveira Abinader2017-11-141-8/+8
|
* [core] Fix build on Android + GCC and Android + armeabiThiago Marcos P. Santos2017-11-123-3/+13
| | | | Sadly we don't have bots for these two setups.
* Merge branch 'release-agua' into tvn-merge-releaseTobrun2017-11-101-0/+2
|\
| * [ios, macos] Add selection support to MGLMultiPoint annotations. (#9984)Fabian Guerra Soto2017-10-181-0/+2
| | | | | | | | | | | | * [ios, macos] Add selection support to MGLMultiPoint annotations. * [ios, macos] Update changelogs.
| * [core] make forcing cache/network only more explicitKonstantin Käfer2017-10-124-11/+55
| | | | | | | | | | | | Previously, we used the existence of a `prior*` field in the Resource object as an indication for whether we should consult the cache or not. However, this is prone to error, since a failed cache lookup won't set any prior fields. Therefore, we manually set `priorExpires` to 0. This in turn triggered another bug where generated wrong expiration timestamps when the server response we got was expired (or expired between sending and receiving). This commit changes the flags so that we can now explicitly request CacheOnly/NetworkOnly (or All) loading methods, rather than the implicit Optional/Required naming scheme.
| * [core] Add `cameraForLatLngs()` method with modified bearingAsheem Mamoowala2017-10-092-3/+11
| |
* | Implement Expressions (#9439)Anand Thakker2017-11-0833-101/+2087
| | | | | | Ports https://github.com/mapbox/mapbox-gl-js/pull/4777 (and its several follow-ups)
* | [core] Move GLContextMode to its own Renderer headerBruno de Oliveira Abinader2017-11-013-10/+19
| |
* | [gcc4.9] Keep compatibility with GCC + AndroidThiago Marcos P. Santos2017-10-311-2/+2
| | | | | | | | Needed by Qt builds on Android.
* | [core] Add LatLngBounds::contains(const LatLngBounds&)Asheem Mamoowala2017-10-301-0/+7
| |
* | Replace compile-time polymorphism with runtime polymorphism in the ↵John Firebaugh2017-10-2319-1402/+291
| | | | | | | | conversion system
* | [core] Move SourceType to the 'style' namespaceAnand Thakker2017-10-162-6/+6
| |
* | [core, node] Support axonometric renderingLauren Budorick2017-10-141-0/+8
| |
* | [core] make forcing cache/network only more explicitKonstantin Käfer2017-10-124-11/+55
| | | | | | | | | | | | Previously, we used the existence of a `prior*` field in the Resource object as an indication for whether we should consult the cache or not. However, this is prone to error, since a failed cache lookup won't set any prior fields. Therefore, we manually set `priorExpires` to 0. This in turn triggered another bug where generated wrong expiration timestamps when the server response we got was expired (or expired between sending and receiving). This commit changes the flags so that we can now explicitly request CacheOnly/NetworkOnly (or All) loading methods, rather than the implicit Optional/Required naming scheme.
* | [core] Add `cameraForLatLngs()` method with modified bearingAsheem Mamoowala2017-10-092-3/+11
|/
* [core] Add minzoom to GeoJSONOptionsKonstantin Käfer2017-09-282-0/+11
|
* [build] split out DefaultFileSource and dependents to a separate targetKonstantin Käfer2017-09-281-1/+0
| | | | We don't want to link it into the node bindings, so keep it in a separate target
* [core] Move *TileID hashing to separate implJesse Crocker2017-09-261-0/+263
|
* [core] custom layer - add contextLost callbackIvo van Dongen2017-09-221-0/+16
| | | | - optional callback method that can be used to do cleanup when the context has been lost before re-initialisation
* [core] Actor/ActorRef - ask calls to void methodsIvo van Dongen2017-09-221-0/+26
| | | | - allows to wait for execution of void methods as well as non-void methods
* [core] send signal to RenderCustomLayer when gl context has been lostIvo van Dongen2017-09-221-0/+2
| | | | - Prevents cleaning up of GL resources that no longer exist, resulting in a crash
* [test] add ability to take the OnlineFileSource offlineKonstantin Käfer2017-09-222-0/+4
| | | | This functionality is used for testing to ensure correct offline behavior when connectivity is missing.
* Preserve depth buffer between 3D layers + optimize render order (#9931)Lauren Budorick2017-09-211-0/+2
| | | Port of https://github.com/mapbox/mapbox-gl-js/pull/5101: adds a new render pass `Pass3D` before any other rendering wherein we render layers with 3D passes (fill-extrusion layers) to offscreen framebuffers, sharing a depth renderbuffer between those layers in order to render 3D space correctly. Those framebuffers are saved on the RenderLayers and copied back to the map during the translucent pass. Rendering to offscreen framebuffers before we do any clear + draw means we can avoid expensive framebuffer restores.
* Fix platform dependent number type `unsigned long` -> `uint64_t`Asheem Mamoowala2017-09-201-1/+1
|
* [core] Clear atlasImage rect for a removed patternBruno de Oliveira Abinader2017-09-131-0/+26
|
* Fast tileCount with help from @mapbox/sphericalmercator moduleAsheem Mamoowala2017-09-082-5/+21
|
* [core] Remove debug::renderTreeLauren Budorick2017-09-071-1/+0
|
* [node] Cleanup NodeMap::RenderBruno de Oliveira Abinader2017-08-311-1/+2
|
* [core][ios][macos][android]DDS-ify `text-letter-spacing` and `text-max-width`Asheem Mamoowala2017-08-302-8/+8
|
* [core] enable Thread destruction from arbitrary threadsIvo van Dongen2017-08-301-2/+0
|
* [core] make thread.hpp publicIvo van Dongen2017-08-301-0/+163
|