Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add a name to CustomLayer LayerTypeInfo | Gali Nelle | 2020-04-20 | 1 | -1/+1 |
| | | | | | | This to prevent confusion and enable proper error logging when registering layers with missing name in LayerTypeInfo where the name should instead be present. | ||||
* | Add missing cast for unsigned long to int conversion | Gali Nelle | 2020-04-20 | 1 | -2/+2 |
| | |||||
* | [build] Enable clang-analyzer checks | Thiago Marcos P. Santos | 2020-04-17 | 1 | -0/+8 |
| | |||||
* | [core] Fix clang-analyzer-optin.cplusplus.VirtualCall | Thiago Marcos P. Santos | 2020-04-17 | 1 | -4/+6 |
| | | | | Detected by clang-tidy-8. | ||||
* | [core] Fix android-cloexec-fopen warning | Thiago Marcos P. Santos | 2020-04-17 | 1 | -1/+1 |
| | | | | Detected by clang-tidy-8. | ||||
* | Introduce a mean to add render features in layers with no sources | Gali Nelle | 2020-04-17 | 14 | -12/+346 |
| | | | | | | This change also uses the support in the LocationIndicator layer, to return a point feature when queried in correspondence of the location indicator. | ||||
* | [build] Remove glfw submodule | Thiago Marcos P. Santos | 2020-04-17 | 3 | -33/+0 |
| | | | | We use it from the system. | ||||
* | [render-test] Fix logging | Thiago Marcos P. Santos | 2020-04-17 | 1 | -0/+2 |
| | | | | Was broken after logging got moved to its own thread. | ||||
* | [metrics] Ignore location indicator on iOS until we move to gfx:: | Thiago Marcos P. Santos | 2020-04-17 | 1 | -0/+1 |
| | | | | After that, it will be more portable. | ||||
* | Use unique_ptr for RenderLocationIndicatorImpl | Gali Nelle | 2020-04-17 | 2 | -2/+2 |
| | |||||
* | Better structure fix. | Luke Seelenbinder | 2020-04-17 | 1 | -4/+4 |
| | |||||
* | Fix segfault resulting from an invalid geometry. | Luke Seelenbinder | 2020-04-17 | 1 | -2/+5 |
| | |||||
* | [glfw] Fix clang-10 build | Thiago Marcos P. Santos | 2020-04-17 | 1 | -3/+3 |
| | | | | Implicit conversion from int to float. | ||||
* | [node] Fix clang-tidy errors on the Node bindings headers | Thiago Marcos P. Santos | 2020-04-17 | 7 | -35/+24 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix performance-no-automatic-move (bonus) | Thiago Marcos P. Santos | 2020-04-17 | 6 | -9/+10 |
| | | | | | | As reported by clang-tidy-10. We don't run clang-tidy-10 yet. We should probably consider moving the bots at some point so errors like this won't return. | ||||
* | [core] Fix performance-noexcept-move-constructor in header files | Thiago Marcos P. Santos | 2020-04-17 | 7 | -17/+16 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix performance-unnecessary-value-param errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 11 | -13/+18 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix modernize-use-equals-default errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 6 | -7/+7 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix google-default-arguments errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 9 | -21/+22 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix misc-unconventional-assign-operator errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 2 | -2/+6 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix google-build-namespaces errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 3 | -12/+2 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix modernize-use-override errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 17 | -17/+17 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix readability-container-size-empty errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 1 | -1/+1 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix readability-redundant-smartptr-get errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 2 | -4/+2 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix performance-type-promotion-in-math-fn errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 3 | -10/+15 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix readability-redundant-declaration errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 1 | -0/+4 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix readability-const-return-type errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 1 | -6/+2 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix modernize-return-braced-init-list errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 6 | -18/+11 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix performance-unnecessary-value-param errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 11 | -59/+37 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix performance-move-const-arg errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 2 | -3/+3 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix bugprone-forwarding-reference-overload errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 1 | -0/+1 |
| | | | | | | This was a false positive. As reported by clang-tidy-8. | ||||
* | [core] Fix modernize-pass-by-value errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 3 | -11/+12 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix bugprone-forward-declaration-namespace errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 2 | -5/+0 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix performance-unnecessary-copy-initialization errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 1 | -2/+2 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix performance-inefficient-vector-operation errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 1 | -0/+1 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix readability-redundant-member-init errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 21 | -23/+24 |
| | | | | As reported by clang-tidy-8. | ||||
* | [core] Fix readability-avoid-const-params-in-decls errors in header files | Thiago Marcos P. Santos | 2020-04-17 | 49 | -217/+260 |
| | | | | As reported by clang-tidy-8. | ||||
* | [build] Make the code tidy | Thiago Marcos P. Santos | 2020-04-17 | 2 | -2/+7 |
| | | | | Now clang-tidy runs for all the mbgl-core. | ||||
* | Update changelog | Alexander Shalamov | 2020-04-16 | 1 | -0/+2 |
| | |||||
* | Add generic setter for 'source' property | Alexander Shalamov | 2020-04-16 | 4 | -2/+50 |
| | | | | | - Add setter for 'source' property - Test generic setters via setProperty method | ||||
* | [baselines] Update binary size baselines | Thiago Marcos P. Santos | 2020-04-16 | 1 | -3/+3 |
| | | | | New image, new libraries we link against. | ||||
* | [build] Move to Ubuntu Eoan | Thiago Marcos P. Santos | 2020-04-16 | 3 | -38/+43 |
| | | | | Disco has reached EOL and apt-get fails. | ||||
* | Fix LocationIndicator not updating image sizes when image manager content ↵ | Gali Nelle | 2020-04-16 | 4 | -20/+133 |
| | | | | changes | ||||
* | [build] Ignore location indicator on iOS until we port to ::gfx | Thiago Marcos P. Santos | 2020-04-15 | 1 | -1/+15 |
| | | | | Remove the ignore after https://github.com/mapbox/mapbox-gl-native/issues/16401 is done. | ||||
* | [build] Compare benchmark results to baseline | Juha Alanen | 2020-04-15 | 1 | -0/+15 |
| | |||||
* | [benchmark] Add script for comparing benchmark results to baseline | Juha Alanen | 2020-04-15 | 1 | -0/+41 |
| | | | | | Benchmark will fail if the average time is more than 5% higher than the baseline. | ||||
* | [build] Disable benchmark for MacOS debug CI builds | Juha Alanen | 2020-04-15 | 1 | -1/+4 |
| | |||||
* | [metrics] Add baselines for benchmark tests | Juha Alanen | 2020-04-15 | 2 | -0/+25478 |
| | |||||
* | [android, ios] Increase benchmark repetition count | Juha Alanen | 2020-04-15 | 2 | -2/+2 |
| | | | | More repetitions give more stable results. | ||||
* | [benchmark] Increase iteration count for some benchmarks | Juha Alanen | 2020-04-15 | 2 | -7/+7 |
| | | | | | Some benchmarks were run less than 5 iterations, which is not enough for stable results. |