Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [core] harden OfflineDatabase | Konstantin Käfer | 2018-08-14 | 1 | -0/+2 |
| | |||||
* | [core] Optimize generated set{Paint,Layout}Property code | John Firebaugh | 2018-08-13 | 1 | -0/+1 |
| | |||||
* | [core] Eliminate setProperty & co. | John Firebaugh | 2018-08-13 | 1 | -2/+0 |
| | |||||
* | [android, linux] Upgrade to SQLite 3.24.0, compiled to minimize binary size | John Firebaugh | 2018-08-10 | 2 | -4/+4 |
| | |||||
* | Update mbgl.cmake | Vladimir Kondrashov | 2018-08-10 | 1 | -4/+4 |
| | |||||
* | [build] Update gl-js | John Firebaugh | 2018-08-08 | 1 | -0/+4 |
| | |||||
* | [core] Replace unique_any with peer from mapbox-bindgen | Bruno de Oliveira Abinader | 2018-08-08 | 2 | -2/+2 |
| | |||||
* | [core] Add lineMetrics to GeoJSONOptions | Mikhail Pozdnyakov | 2018-08-08 | 1 | -1/+1 |
| | | | | | This patch also bumps geojson-vt-cpp version to 6.6.0, which enables the `lineMetrics` option. | ||||
* | Relax typing for comparison operators (#12537) | Anand Thakker | 2018-08-02 | 1 | -2/+2 |
| | | | | | | | | | | * Relax typing for comparison operators Ports https://github.com/mapbox/mapbox-gl-js/pull/6961 * Review comments * Lint fixes | ||||
* | [ios, macos] Enable link-time optimization for iOS release builds (#12502) | John Firebaugh | 2018-07-31 | 3 | -0/+7 |
| | |||||
* | [core] Merge DataDrivenPropertyValue into PropertyValue (#12513) | John Firebaugh | 2018-07-31 | 1 | -2/+0 |
| | |||||
* | [core] Tweak conversions to reduce binary size | John Firebaugh | 2018-07-30 | 1 | -0/+2 |
| | | | | | * return {} → return nullopt * error = { "..." } → error.message = "..." | ||||
* | Update geometry, geojsonvt and vector-tile modules | Sudarsana Babu Nagineni | 2018-07-30 | 1 | -3/+3 |
| | | | | | Update mason modules geometry, geojsonvt and vector-tile to latest. | ||||
* | [core] Compress all shader source as a single corpus | John Firebaugh | 2018-07-25 | 1 | -0/+2 |
| | |||||
* | [build] Bump benchmark to v1.4.1 | Bruno de Oliveira Abinader | 2018-07-23 | 1 | -2/+2 |
| | |||||
* | [build] See what happened when `npm install` fails | John Firebaugh | 2018-07-20 | 1 | -1/+5 |
| | |||||
* | [core] Move expression.cpp to expression directory | John Firebaugh | 2018-07-20 | 1 | -3/+1 |
| | |||||
* | [core] Replace {Source,Camera,Composite}Function with PropertyExpression | John Firebaugh | 2018-07-20 | 2 | -8/+2 |
| | |||||
* | [build] vendor Google Test | Konstantin Käfer | 2018-07-20 | 2 | -8/+3 |
| | |||||
* | [build] organize CMake targets in folders for IDEs | Konstantin Käfer | 2018-07-17 | 10 | -0/+21 |
| | |||||
* | [core] treat parsedate as C++ file to remove C build rules | Konstantin Käfer | 2018-07-16 | 1 | -2/+2 |
| | | | | It is already wrapped with #ifdef __cplusplus extern "C", so we can safely compile it as C++ but retain C linkage | ||||
* | [core] make the offline DB schema a regular include file | Konstantin Käfer | 2018-07-16 | 1 | -0/+1 |
| | |||||
* | [core] Convert legacy functions directly to expressions | John Firebaugh | 2018-07-13 | 2 | -13/+2 |
| | |||||
* | [build] Move all mason_use statements to a single file | John Firebaugh | 2018-07-13 | 1 | -0/+66 |
| | | | | So its checksum can be used in a CI cache key name. | ||||
* | [build] add Node as executable for profiling action | Konstantin Käfer | 2018-07-06 | 1 | -3/+10 |
| | | | | This is now the same as the Run action | ||||
* | Rename `HeatmapColorPropertyValue` to `ColorRampPropertyValue` | Mikhail Pozdnyakov | 2018-07-05 | 1 | -2/+2 |
| | | | | | | | | Based on patch from @lbud (Lauren Budorick). Give `HeatmapColorPropertyValue` a more generic name, since the same value type will be used for both `heatmap-color` and `line-gradient` properties. | ||||
* | [core] Avoid blocking in Thread<Object> constructor (#12151) | Anand Thakker | 2018-07-03 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Introduce AspiringActor, EstablishedActor This pair of objects represents the two-phase (parent-thread / child-thread) construction that's needed to support constructing Thread<Object> without blocking until the child thread is up and running. An `AspiringActor<O>` is responsible for: - ownership of the actor's `Mailbox` - allocating the memory for (but *not* constructing) the target object `O` Using these two pieces--the mailbox and a stable address for `O`--an `AspiringActor<O>` can accept messages for the target object, or provide `ActorRef<O>`s that do so, before the object has actually been constructed by the corresponding `EstablishedActor<O>`. (Such messages are queued in the mailbox until after the object is constructed.) This allows for an `AspiringActor<O>` to be created and safely used by a thread other than the one on which the target object will (eventually) live. An `EstablishedActor<O>` is responsible for managing the lifetime of the target object `O` and the open/closed state of the parent's `mailbox`. The `O` object's lifetime is contained by that of its owning `EstablishedActor<O>`: the `EstablishedActor` constructor executes the `O` constructor via "placement new", constructing it at the address provided by the parent `AspiringActor`, and the `~EstablishedActor` destructor similarly executes the `~O` destructor (after closing the mailbox). `EstablishedActor` should therefore live entirely on the thread intended to own `O`. * Remove Actor#{invoke,ask} | ||||
* | [core] Introduce "collator" expressions | Chris Loer | 2018-07-03 | 1 | -0/+3 |
| | | | | Cross platform parsing and evaluation code. | ||||
* | [core] Introduce LanguageTag for parsing BCP 47 tags | Chris Loer | 2018-07-03 | 2 | -0/+3 |
| | |||||
* | [core, vendor] Create vendored nunicode 1.8. | Chris Loer | 2018-07-03 | 3 | -0/+24 |
| | | | | | - Version bump to 1.8 necessary for "unaccent" functionality - Qt now depends on nunicode, ruling out use of precompiled binaries | ||||
* | [core] Remove stops-based *Function constructors | John Firebaugh | 2018-06-29 | 1 | -0/+1 |
| | |||||
* | [core] Replace use of *Stops with expressions DSL | John Firebaugh | 2018-06-29 | 1 | -0/+2 |
| | |||||
* | [tests] Replaced the ZoomHistory test with a render test | John Firebaugh | 2018-06-28 | 1 | -1/+0 |
| | |||||
* | [core] Split Interpolator into a separate file | John Firebaugh | 2018-06-28 | 1 | -0/+1 |
| | |||||
* | [node] Build and publish for node 6.x, 8.x, and 10.x | John Firebaugh | 2018-06-26 | 1 | -1/+3 |
| | | | | Note that we're still only testing the 6.x ABI (48). | ||||
* | [node] Drop node 4.x support | John Firebaugh | 2018-06-26 | 1 | -1/+4 |
| | |||||
* | [node] add compatibility with node-pre-gyp binary publishing | Konstantin Käfer | 2018-06-26 | 1 | -1/+1 |
| | |||||
* | [core] fix undefined behavior in LineAtlas::addDash | Konstantin Käfer | 2018-06-12 | 1 | -0/+1 |
| | |||||
* | [build] cache Node + Nan headers globally, not build-specific | Konstantin Käfer | 2018-06-04 | 1 | -0/+1 |
| | |||||
* | [ios, build] Remove obsolete UI tests, KIF and OHHTTPStubs submodulesupstream/fb-remove-dead-uitest-infra | Jason Wray | 2018-05-24 | 1 | -1/+1 |
| | |||||
* | [build] disable parts of the build that require node when WITH_NODEJS=OFF is set | Konstantin Käfer | 2018-05-24 | 1 | -0/+5 |
| | |||||
* | Accept constant expressions in non-dds properties (#11960) | Anand Thakker | 2018-05-23 | 1 | -0/+1 |
| | | | Closes #11940 | ||||
* | [android] - remove mips and armeabi as supported ABIs | Tobrun | 2018-05-22 | 1 | -7/+1 |
| | | | | | | | | | | [android] - bump CI image to NDK 17 compatible [core] - remove setting edgeDistance to 0, comparison 'const short' > 32767 is always false [android] - remove throwing in desructor, undefined behaviour [android] - bump dependency versions of project | ||||
* | [node] allow building all ABIs at once | Konstantin Käfer | 2018-05-22 | 4 | -659/+107 |
| | |||||
* | Merge branch 'release-boba' into masterupstream/fabian-merge-release-4.0.1-master | Fabian Guerra | 2018-05-17 | 1 | -2/+0 |
|\ | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # mapbox-gl-js # platform/android/CHANGELOG.md # platform/android/MapboxGLAndroidSDK/gradle.properties # platform/android/gradle/dependencies.gradle # platform/darwin/src/MGLVectorTileSource.mm # platform/darwin/src/MGLVectorTileSource_Private.h # platform/ios/CHANGELOG.md # src/mbgl/style/expression/compound_expression.cpp | ||||
| * | [core] Convert "legacy" filters directly into expressions (#11610) | Lucas Wojciechowski | 2018-05-10 | 1 | -2/+0 |
| | | | | | | Ports the specialized filter-* expressions from GL JS, adding them to src/mbgl/style/expression/compound_expression.cpp | ||||
* | | [linux] Don't compile linux mbgl-loop-uv against node headers | John Firebaugh | 2018-05-04 | 2 | -23/+17 |
| | | | | | | | | Previously, `target_include_directories(mbgl-loop-uv PUBLIC ${NODEJS_INCLUDE_DIRS})` always applied. Compiles were working by accident because node is always installed in CI. Instead, split and inline loop-uv.cmake contents: linux uses `target_add_mason_package(mbgl-loop-uv PUBLIC libuv)`, node uses `target_include_directories(mbgl-loop-node PUBLIC ${NODEJS_INCLUDE_DIRS})`. | ||||
* | | [core] Remove unused 'Throttler' class. | Chris Loer | 2018-04-30 | 1 | -2/+0 |
| | | | | | | | | Throttler was previously used to control how frequently background placement ran. | ||||
* | | [core] Streaming TileCover for polygonal regions (#11267) | Asheem Mamoowala | 2018-04-26 | 2 | -0/+3 |
|/ | | | A per-tile streaming algorithm for tile cover on points, lines, and polygons. Works for individual zoom levels, and not zoom ranges. | ||||
* | Don't enforce ["zoom"] constraints for filters (#11672) | Anand Thakker | 2018-04-12 | 1 | -1/+0 |
| | | | | | | | | | | | | * Don't enforce ["zoom"] constraints for filters Fixes #11594 * Add a couple of comments * Fix ambiguous constructor call * ParsingContext(optional<Type>) => ParsingContext(Type) |