summaryrefslogtreecommitdiff
path: root/test/src
Commit message (Collapse)AuthorAgeFilesLines
* [core] Refactor Source::*Impls into RenderSources and TilePyramidJohn Firebaugh2017-05-022-11/+23
|
* [android] use AAssetManager instead of libzipKonstantin Käfer2017-04-241-1/+1
|
* [core] s/onSourceDidChange/onSourceChanged/ + source refBruno de Oliveira Abinader2017-03-211-3/+3
|
* [core] Log Memory.Footprint test results (#8170)Anand Thakker2017-02-282-0/+147
| | | | | | * Log Memory.Footprint test output * On CI, only run Memory.Footprint test with libjemalloc
* [tests] Disable timing-based Timer tests in CIJohn Firebaugh2017-02-151-1/+1
|
* [core] default value support in categorical function conversionIvo van Dongen2017-02-021-0/+34
|
* [core] Add support for data-driven stylingJohn Firebaugh2017-02-021-0/+5
|
* [core] remove trailing whitespace, add trailing newlines, add space after //Konstantin Käfer2017-01-271-1/+1
|
* [core] Remove platform-specific main.cpp from MBGL_TEST_FILESBruno de Oliveira Abinader2017-01-181-20/+0
|
* [core] Fix flickering caused by regression in #7586John Firebaugh2017-01-101-0/+22
| | | | It should be safe to invoke GeometryTileWorker::setData multiple times without invoking GeometryTileWorker::setLayers. Therefore GeometryTileWorker::redoLayout() must not consume the layers.
* Happy new year! 🎉Minh Nguyễn2017-01-041-1/+1
|
* [build] upgrade to variant 1.1.4 and dependenciesKonstantin Käfer2016-11-281-1/+1
|
* [android][build] core tests - initial setup for rendering testsIvo van Dongen2016-11-271-1/+4
|
* [build] move logging to utilKonstantin Käfer2016-11-222-2/+2
|
* [build] move headless rendering files to platform/defaultKonstantin Käfer2016-11-221-2/+2
|
* [test] Use shared headless displayBruno de Oliveira Abinader2016-11-172-0/+10
| | | | Prevents some OpenGL implementations from bailing out.
* [core] symbol layer - recalculate style on icon/text size changesIvo van Dongen2016-11-111-3/+3
|
* [core] change std::array<uint16_t, 2> to mbgl::SizeKonstantin Käfer2016-10-271-7/+6
|
* [core] move gl::Context to Backend and refactor ViewKonstantin Käfer2016-10-252-4/+6
|
* [core] reload geojson source on url changeIvo van Dongen2016-10-201-0/+5
|
* [test] Show error message when expected file does not existKonstantin Käfer2016-09-271-2/+15
|
* [core] Don't allow OfflineDownload to flood the request queueJohn Firebaugh2016-09-261-0/+1
|
* [core] Source-driven attributionMinh Nguyễn2016-09-261-1/+6
| | | | | | Implemented observer callbacks so the style knows when the source’s attribution changes and the map knows when the style’s attribution changes. Also implemented a getter for a tile source’s attribution. Fixes #2723.
* [core] Use an actor model for tile worker concurrencyJohn Firebaugh2016-09-161-9/+4
|
* [test] use recursive wrapper for recursive variant typesKonstantin Käfer2016-09-151-6/+10
|
* [core] #3980 - Switching Core GL instances of map to unordered_mapBrad Leege2016-09-141-2/+2
|
* [core] change bool to enum class bool TileLoadStateKonstantin Käfer2016-09-071-3/+3
|
* [core] Observe visibility changesJohn Firebaugh2016-09-061-0/+5
|
* [core, ios, android, qt] Observe style layer mutations rather than requiring ↵John Firebaugh2016-09-061-0/+28
| | | | | | SDKs to use Map::update This paves the way for updates to filter and layout properties to trigger a source reload, without each SDK having to participate in the implementation.
* [core] Prepare style observer interfaces for source reloadingJohn Firebaugh2016-09-061-3/+3
| | | | | * Renamed {Source,Tile}Observer::onNeedsRepaint to onTileUpdated. Messages should be in terms of what happened to the observed object, not in terms of what the observer needs to do. This also removes a confusing overlap of virtual methods on StyleObserver. * Added style::Observer::onUpdate(Update). This is also a violation of the above rule, but I'm hopeful that it will disappear when update batching is implemented.
* [tests] Make it possible to disable tests on the CIThiago Marcos P. Santos2016-08-261-0/+6
| | | | | Useful for tests that depend on a good network connection and you want to run manually.
* [tests] Removed dead codeThiago Marcos P. Santos2016-08-241-8/+0
|
* [core] Don't allow style mutations to be overwritten by revalidationJohn Firebaugh2016-08-231-0/+60
| | | | | * Once we get a fresh style, stop revalidating. * If the style is mutated, stop revalidating and preserve the existing mutations.
* [tests] Fix a subtle ordering bug in StubFileSourceJohn Firebaugh2016-08-231-2/+10
|
* [core] #6071 - extract GeoJSONOptions conversion from GeoJSONSource conversionIvo van Dongen2016-08-231-0/+111
| | | | | | | | | | | | | | * [core] geojson_options - retain original error message * [core] tests - initial style conversion stub methods * [core] geojsonoptions conversion - initial unit tests * [core] tests - fix forward reference issue * [core] geojsonoptions conversion - unit tests * [core] geojsonoptions conversion - renamed Holder to Value
* [build] switch to CMakeKonstantin Käfer2016-08-053-4/+30
| | | | This is very much a work in progress.
* [tests] Do not re-trigger answered requestsThiago Marcos P. Santos2016-06-212-4/+14
| | | | | This happens on real file sources when tiles expire or in case of error. Here we only retry on error.
* [core] Make enum ↔ string conversion more generic-friendlyJohn Firebaugh2016-06-131-1/+3
| | | | | | Rewrite enum.hpp in such a way that parseConstant can be defined generically for all enumerated types. While there, properly validated enumerated property values.
* [tidy] Check modernize-use-overrideBruno de Oliveira Abinader2016-06-132-3/+3
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-override.html
* [tidy] Check modernize-pass-by-valueBruno de Oliveira Abinader2016-06-132-3/+3
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-pass-by-value.html
* [tidy] Check llvm-namespace-commentBruno de Oliveira Abinader2016-06-132-3/+3
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/llvm-namespace-comment.html
* [core] rename onPlacementRedone -> onNeedsRepaintKonstantin Käfer2016-06-101-3/+3
|
* [core] Rationalize naming for style-related codeJohn Firebaugh2016-06-021-6/+5
|
* [core] use #pragma once instead of ifdef include guardsKonstantin Käfer2016-05-254-17/+5
|
* [core] move *Observers to their own filesKonstantin Käfer2016-05-231-3/+3
|
* [core] remove MockView and View dependency in TransformKonstantin Käfer2016-05-181-26/+0
|
* [core] move TileData and dependents to new *TileID classesKonstantin Käfer2016-05-101-4/+5
|
* [core] Use the proper type for font stacksJohn Firebaugh2016-04-221-4/+4
|
* [ios, osx] Fixed project upgrade warningsMinh Nguyễn2016-04-161-1/+1
| | | | Fixed project upgrade warnings in projects managed by gyp.
* [ios] Don't try to launch test server (#4719)John Firebaugh2016-04-151-0/+3
|