summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [glfw] Add feature state supportJuha Alanen2019-09-182-0/+82
|
* [node] Add changelog entry for feature state APIsJuha Alanen2019-09-181-0/+3
|
* [node] enable feature state testsJuha Alanen2019-09-183-15/+9
|
* [node] Add support for feature state APIsJuha Alanen2019-09-183-0/+231
|
* [core] Update mapbox-gl-js versionJuha Alanen2019-09-181-0/+0
|
* [render-test] Add support for feature state APIsJuha Alanen2019-09-181-0/+138
|
* [tests] Add feature state unit testJuha Alanen2019-09-181-0/+16
|
* [tests] Update expression unit test for feature stateJuha Alanen2019-09-181-2/+1
|
* [tests] Update bucket unit test for feature stateJuha Alanen2019-09-181-5/+5
|
* [core] Add removeFeatureState APIJuha Alanen2019-09-189-1/+95
|
* [core] Feature state support to RenderLayer classesJuha Alanen2019-09-1812-20/+31
|
* [core] Add feature state support to queryRenderedFeatures APIJuha Alanen2019-09-1810-17/+43
|
* [core] Add support for set/getFeatureState APIsJuha Alanen2019-09-187-0/+85
|
* [core] Add SourceFeatureState class to handle feature statesJuha Alanen2019-09-184-0/+99
|
* [core] Add setFeatureState API to Tile classesJuha Alanen2019-09-185-1/+35
|
* [core] Add feature state support to bucket classesJuha Alanen2019-09-1817-42/+232
|
* [core] Add feature-state compound expressionJuha Alanen2019-09-181-0/+15
|
* [core] Add feature state support to isFeatureConstant expressionJuha Alanen2019-09-181-1/+2
|
* [core] Add feature state support to expressionJuha Alanen2019-09-184-0/+40
|
* [core] Add new types for feature statesJuha Alanen2019-09-181-0/+3
|
* [build] Update mapbox-base versionJuha Alanen2019-09-181-0/+0
|
* [android] fix: MapSnapshotter.withApiBaseUri functionGuillaume2019-09-181-1/+1
|
* [ios] Fixed test name (since validAccessToken has been removed in another ↵Julian Rex2019-09-172-13/+42
| | | | PR). Added some more asserts. (#15643)
* [ios, macos] Ensure potential variables that might be nil have a fallback. ↵Julian Rex2019-09-171-3/+12
| | | | | | | | (#15645) * [ios] Ensure potential variables that might be nil have a fallback. * [ios, macos] (potentially) free the returned arch info.
* [ios, macos] Tail work from 15385 (#15647)Julian Rex2019-09-1716-24/+19
| | | | | | | | * [ios] Tweak iosapp headers. * [ios] Revert bundle identifier change. * [ios, macos] Remove parameter not referenced.
* [Core] Fix wrong `maxzoom` setting of tileSet when using URL source (#15581)zmiao2019-09-177-7/+38
| | | | | | | | | | | | * [core] Take max/min zoom option from style if they are set * [core] std::move input value * [Core] Add changelogs * [Core] Fix clang-format reported error * [Core] fix clang-tidy reported error
* [android] - ignore location tracking mode based animations when the camera ↵Łukasz Paczos2019-09-172-0/+92
| | | | is transitioning
* [build] Remove Qt builds from legacy buildsystemThiago Marcos P. Santos2019-09-175-532/+0
|
* [build] Do not run clang-tidy on the legacy workflowThiago Marcos P. Santos2019-09-171-27/+0
| | | | Already running on the new build.
* [build] CI configThiago Marcos P. Santos2019-09-177-60/+554
| | | | | | | | | | Run it in parallel with the old build system. This will offer a migration path and make sure we keep everything working at the cost of running many CI bots. New stuff is prefixed with "next". Appveyor already got migrated to the next buildsystem. After merging, we will follow-up removing duplicated core bots.
* [build] Add simple instructionsThiago Marcos P. Santos2019-09-172-0/+42
|
* [build] Rewrite our CMake buildsystemThiago Marcos P. Santos2019-09-1714-0/+2231
| | | | | | | | | | | | | | | - Try as much as possible not to use explicit compiler flags, relying on CMake to do the job in a portable away. - Build mbgl-core as a single static library and leverage lto as much as possible. - Support a MinSizRel build for other platforms. - Make GLFW and Node a client of mbgl-core public interface. - Same for the offline tool and static render tool. - Use only target settings (do not pollute the global scope) - Confine core code in a single file. - Confine platform code inside a single include (exception being Qt that needs AUTOMOC before adding the targets) - Align the Android build with the Android toolchain file.
* [build] Install missing node depsThiago Marcos P. Santos2019-09-171-1/+7
| | | | Needed to run the query tests.
* [build] Fix expression-test buildThiago Marcos P. Santos2019-09-171-0/+9
|
* [build] Do not override new/delete on render-test for sanitize buildsThiago Marcos P. Santos2019-09-171-0/+2
| | | | Sanitizers will also do the same and it will conflict.
* [build] Fix clang format and tidy checksThiago Marcos P. Santos2019-09-174-16/+21
|
* [build] Fix iOS nitsThiago Marcos P. Santos2019-09-178-8/+8
| | | | | | - Hardcoded the bundle identifier on Info.plist, CMake is not picking it up. - Do not use installed headers when building the framework.
* [build] Disable a test that requires a debug buildThiago Marcos P. Santos2019-09-171-0/+1
| | | | Overdraw debug layer is only available on debug builds.
* [build] Remove Qt test dependency on coreThiago Marcos P. Santos2019-09-172-7/+13
| | | | | This test is testing the Qt bindings and should only link with QMapboxGL.
* [build] Use the system CURL on LinuxThiago Marcos P. Santos2019-09-171-121/+43
| | | | And we don't need to use Mason anymore.
* [build] Mark explicitly visible symbolsThiago Marcos P. Santos2019-09-176-3/+33
| | | | | Easier to maintain than a linker script. We build everything with visibility hidden by default.
* [build] Make test/util.hpp a public interfaceThiago Marcos P. Santos2019-09-172-3/+3
| | | | | We will build the tests as a library and platforms will provide the test runner.
* [build] Make the default styles part of GL NativeThiago Marcos P. Santos2019-09-176-8/+2
| | | | | The reason is applications using it, like GLFW, don't need to depend on code inside platform/default.
* [build] Cosmetics on vendor packagesThiago Marcos P. Santos2019-09-1728-133/+229
| | | | | | - Add include guards on all the files - Add a vendor package for sqlite and gtest - Use relative paths to all the files
* [core] Fix for FormatSectionOverrides::hasOverrideAlexander Shalamov2019-09-171-11/+4
|
* [ios] Add support for running tests (that require an access token) ↵Julian Rex2019-09-162-6/+12
| | | | individually. (#15629)
* [ios, macos] Introduce custom drawing overlays for MGLMapSnapshotterNadia Barbosa2019-09-165-17/+189
|
* [ios] Update change log. (#15626)Julian Rex2019-09-161-8/+1
|
* [ios] Small fixes to the Swift Playground (#15603)Jordan Kiley2019-09-162-6/+3
|
* [ios] Add custom XCTestSuite to check for "pending" tests and tests ↵Julian Rex2019-09-136-84/+56
| | | | requiring a valid access token. (#15477)