summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [core] round color string's alpha to 2 decimal placesupstream/lp-color-getter-consistency-14130Łukasz Paczos2019-05-211-1/+1
|
* [android] return color string values in the [0-255] rangeŁukasz Paczos2019-05-2115-79/+68
|
* [core] Remove binary shader supportThiago Marcos P. Santos2019-05-2115-480/+0
| | | | | | | | | | | | | | | | | | | | | | The implementation is buggy and not worth maintaining anymore because performance benefits are not substantial or sometimes worse. Also, removing it saves about 150 ~ 180 KB in binary size. Below timings are averages of minimum 5 runs. ``` Device Init launch Average relaunch s10 1129.8 ms 700 ms s10 - binary 1346.75 ms 694 ms Pixel 1692 ms 723 ms Pixel - binary 1883 ms 1039 ms Kazam 17948 ms 1339 ms Kazam - binary 19157 ms 1564 ms Wiko 2060 ms 1278 ms Wiko - binary 3876 ms 1136 ms ``` Fixes #14294
* [core] Don't use optional unique_ptr in function coversion codeAnder Conselvan de Oliveira2019-05-213-29/+32
| | | | | Since unique_ptr is already nullable there is no need to wrap it in an optional<>.
* [core] Forward args in style::expression::dsl::compound()Ander Conselvan de Oliveira2019-05-211-2/+2
|
* [core] Pass legacy/categorical/*-default expression testsAnder Conselvan de Oliveira2019-05-212-20/+26
| | | | | Handle categorical function default value properly in conversion to expreexpression so related tests pass.
* [core] Fix legacy/{interval,exponential}/*-default expression testsAnder Conselvan de Oliveira2019-05-212-28/+63
| | | | | Consider the function default value in interval and exponential functions conversion.
* [core] Expose dsl::compound() internallyAnder Conselvan de Oliveira2019-05-213-6/+24
| | | | | This will be used in a follow up patch by the function to expression conversion code.
* [core] Fix some of the legacy interval function expression testsAnder Conselvan de Oliveira2019-05-212-7/+12
| | | | | The tests for conversion of legacy interval functions to expressions expects that the first stop in the "step" expression be omitted.
* [core] Fix most identity function with default legacy expression testsAnder Conselvan de Oliveira2019-05-215-33/+63
| | | | | Add handling of default value to the conversion of legacy identity functions. The color and enum tests still don't pass though.
* [core] Fix indentation of src/mbgl/style/conversion/function.cppAnder Conselvan de Oliveira2019-05-211-1/+1
| | | | One line in that file was indented with tabs instead of spaces.
* [node] Convert legacy functions to expressions in NodeExpression::ParseAnder Conselvan de Oliveira2019-05-212-30/+35
| | | | | | | | In order to test the conversion from function to expressions using the legacy tests in the expression test suite, parse function objects into expressions in NodeExpression::Parse. v2: Coding style fixes.
* [ios] Enable SKU tokens for all requestsJason Wray2019-05-205-51/+11
| | | Removes conditional code that relied on a plist flag. Other small cleanups.
* [core] Refactor HeadlessFrontend/Backend: GL separation and factory (#14692)Aleksandar Stojiljkovic2019-05-2127-64/+113
| | | | | Refactor out HeadlessFrontend and HeadlessBackend gl independent code to gfx. Define gl::HeadlessBackend as subclass, instantiated by gfx::HeadlessBackend static factory method. GL dependent tests are still using gl::HeadlessBackend directly (not through gfx).
* [benchmark] Add benchmark for tile invalidationThiago Marcos P. Santos2019-05-212-0/+55
|
* [tests] Add unit tests for offline data invalidationThiago Marcos P. Santos2019-05-211-0/+67
|
* [core] Add API for invalidating tilesThiago Marcos P. Santos2019-05-212-0/+49
| | | | | | | | | Add new APIs for invalidating tiles, effectively forcing Mapbox GL Native to check with the servers if the tiles are valid before using them. This is more efficient then deleting tiles, because in case of valid tiles, they won't get downloaded. Fixes #4376.
* [core] Remove re-linking programs approach (#14482)Aleksandar Stojiljkovic2019-05-205-71/+35
| | | | | | | | | | | | | | | | | | | | | | | Remove re-linking programs as redundant. It costs (cheaper to link once than twice) and (subjective) is not that common GL API usage pattern, although perfectly legal and permitted. Initial idea, behind the removed code, was to enable work on optimization that would reduce number of attrib setup calls in case when VAO is not available (as described in #9433). As such optimization is not implemented, and it is arguable if it makes sense to do it now, we can remove re-linking. Related to closed PRs #9433 and PR #11583. I have [measured the time spent just on relinking](https://gist.github.com/astojilj/29bd5a5c5dc0b2d9f29ecb660da07fbf) using release build on iPhone SE (A9, same as iPhone 6S): - 1st run after reboot or installation Total 37.14ms, average per program:1.86ms - reopening Total: 2.47ms, average per program: 0.12ms This time we save using the patch here.
* [core] CrossTileSymbolIndex::pruneUnusedLayers() does not create ↵Mikhail Pozdnyakov2019-05-201-7/+5
| | | | intermadiate containers
* [android] show multiple maps in a recycler view exampleŁukasz Paczos2019-05-203-36/+35
|
* [core] Check if pattern dependencies or pattern positions are missingAlexander Shalamov2019-05-201-8/+18
| | | | | Add check for optional pattern dependencies and don't bind empty vertex buffers if pattern positions are missing.
* [core] Avoid bucket downcasting in PlacementMikhail Pozdnyakov2019-05-195-44/+65
|
* [core] Remove Bucket::supportsLayerMikhail Pozdnyakov2019-05-1917-46/+1
|
* [core] Remove RenderLayerSymbolInterfaceMikhail Pozdnyakov2019-05-1923-89/+59
|
* [core] Placement accepts RenderLayer instancesMikhail Pozdnyakov2019-05-195-37/+24
|
* [core] Avoid unneeded proj matrix calculations in rendererMikhail Pozdnyakov2019-05-191-3/+2
|
* [core] RenderLayerSymbolInterface is not used in CrossTileSymbolIndexMikhail Pozdnyakov2019-05-199-43/+71
|
* [android] - wrap jni callback with try-catchtobrun2019-05-171-7/+13
|
* [android] - bump snapshot version to 8.1.0tobrun2019-05-171-1/+1
|
* [android] added connectivity state attribute to tile loading metric (#14667)Osana Babayan2019-05-171-0/+49
|
* [android] - updat changelog for releasing v6.8.2tobrun2019-05-171-1/+6
|
* Revert "[android] new manifest flag to enable/disable sku tokens"tobrun2019-05-176-73/+17
| | | | This reverts commit 71fd1474804563265117acd9bff1f94e7a68c08a.
* [ios] Podspec updates for v4.12.0-beta.1Nadia Barbosa2019-05-163-3/+3
|
* [ios] Rename performance's metrics variable names.android-v7.5.0-beta.1Fabian Guerra2019-05-163-17/+35
|
* [android] - update changelog for v8.0.0-beta.1tobrun2019-05-161-4/+24
|
* [android] - ignore telemtry schema size test for map loadtobrun2019-05-161-0/+2
|
* [ios] Update to libmbxaccounts 0.0.5 (#14683)Jason Wray2019-05-164-7/+20
|
* [android] pull in Polish translation and updates to Czech and HungarianŁukasz Paczos2019-05-163-7/+27
|
* [ios, macos] clarified documentation for newCamera param of the ↵Sam Fader2019-05-151-2/+2
| | | | | | | | shouldChangeFromCamera delegate (#14680) * [ios, macos] clarified documentation for newCamera in shouldChangeFromCamera * [ios, macos] clarified documentation for newCamera param of the shouldChangeFromCamera delegate part 2
* [ios] Update podspec to v4.11.0.Fabian Guerra2019-05-154-7/+16
|
* [core] add gfx::UploadPass, split startRender into prepare and uploadKonstantin Käfer2019-05-1590-536/+944
|
* [core] don't upload empty buffersKonstantin Käfer2019-05-152-9/+10
|
* [core] use float for storing opacity attributeKonstantin Käfer2019-05-152-2/+2
|
* [core] add gfx::CommandEncoder::present()Konstantin Käfer2019-05-158-14/+39
|
* [core] use unique IDs for DrawScopesKonstantin Käfer2019-05-1514-25/+72
|
* [android] - remove CI execution of android nitpick, now part of android checktobrun2019-05-151-3/+0
|
* [android] - add nitpick validation to make android-checktobrun2019-05-151-1/+1
|
* [android] Changelog for 7.4.0 release (#14677)Osana Babayan2019-05-151-0/+8
|
* [android] fix FragmentBackStackActivity navigationŁukasz Paczos2019-05-151-3/+7
|
* [android] refactor ViewPager exampleŁukasz Paczos2019-05-151-57/+49
|