Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [core] Update unit tests for viewport collision. | Chris Loer | 2017-11-17 | 1 | -4/+8 |
| | | | | Add 'GridIndex' unit test. | ||||
* | [test] Added Map.SetStyleDefaultCamera test | Bruno de Oliveira Abinader | 2017-08-11 | 1 | -0/+6 |
| | |||||
* | [core] Remove API tests that are covered by node tests | John Firebaugh | 2017-07-26 | 1 | -0/+0 |
| | |||||
* | [core] Replace API.ZoomHistory test with integration test | John Firebaugh | 2017-07-26 | 2 | -0/+0 |
| | |||||
* | [test] Added API.ZoomHistory | Bruno de Oliveira Abinader | 2017-07-04 | 2 | -0/+0 |
| | |||||
* | [test] Use test::checkImage in API.RepeatedRender | Bruno de Oliveira Abinader | 2017-07-04 | 1 | -0/+0 |
| | |||||
* | [core] Load source TileJSON immediately | John Firebaugh | 2017-05-02 | 3 | -4/+4 |
| | | | | | | | This reverses #3095. Rationale: * We're now exposing source attributes as a public API. Making those attributes unavailable at certain times complicates that API. * We're preparing to split RenderSource out of Source. Removing this removes a point of coupling between the two. | ||||
* | [core] query source features | Ivo van Dongen | 2017-03-09 | 1 | -0/+9 |
| | |||||
* | [core] Add support for queryRenderedFeatures filter | Asheem Mamoowala | 2017-03-04 | 1 | -0/+28 |
| | |||||
* | [android][build] core tests - initial setup for rendering tests | Ivo van Dongen | 2016-11-27 | 1 | -0/+0 |
| | |||||
* | [tests] Add unit tests for query features fiters | Thiago Marcos P. Santos | 2016-10-05 | 1 | -0/+61 |
| | |||||
* | [tests] Add tests for Map::[add|remove]Image | Thiago Marcos P. Santos | 2016-09-22 | 1 | -0/+25 |
| | |||||
* | [core] set correct depth values for CustomLayer so compositing works | Konstantin Käfer | 2016-08-22 | 1 | -0/+0 |
| | |||||
* | [test] ensure static rendering finishes when a tile can't be loaded | Konstantin Käfer | 2016-01-15 | 2 | -0/+39 |
| | |||||
* | [core] Eliminate platform::assetRoot() | John Firebaugh | 2016-01-13 | 4 | -1/+15 |
| | | | | I regenerated assets.zip so that all file paths have an `assets/` prefix, as the Android AssetFileSource implementation asserts, and removed `TEST_DATA` from the paths. | ||||
* | [core] Simplify asset:// implementation | John Firebaugh | 2016-01-13 | 1 | -3/+2 |
| | | | | | | | | * Move asset:// URL handling to DefaultFileSource. * AssetFileSource implements FileSource interface and follows familiar implementation patterns. * Move default implementation to platform/default, zip implementation to platform/android. * Don't bother with modified / expires / etag -- assets are not cached so it doesn't matter. * Don't bother with interleaving individual IO calls on the implementation thread. That adds a lot of complexity for very little benefit. | ||||
* | [tests] Fix/improve Asset utests | Thiago Marcos P. Santos | 2015-12-01 | 1 | -0/+0 |
| | | | | | | ASSET=zip make test-* was broken and now works. Also added a test stressing concurrent file access. | ||||
* | [tests] Don't use icons from the style for annotations | John Firebaugh | 2015-11-30 | 1 | -2/+1 |
| | |||||
* | [core] Force style-sourced annotations to be visible | John Firebaugh | 2015-11-19 | 1 | -0/+3 |
| | |||||
* | [core] Style-sourced shape annotation properties | John Firebaugh | 2015-10-22 | 1 | -0/+19 |
| | | | | | This introduces the possibility to source the type and style properties of a shape annotation from a designated layer in the style. | ||||
* | Ensure that LiveTileData can be reparsed | John Firebaugh | 2015-09-28 | 1 | -0/+6 |
| | | | | | | | | | | Annotation tiles may become partially parsed just like regular tiles, for example if a point annotation is added to the map before the style's sprite has been loaded. In such cases, they need to be reparsed or the annotation will not be rendered. Previously, the code path for reparsing would be short-circuited by a dynamic_cast<VectorTileData*> followed by a null check. This commit removes that case and adds (back) a virtual reparse method to the TileData interface. | ||||
* | Update test-suite and test fixtures for v8 | John Firebaugh | 2015-08-20 | 1 | -1/+1 |
| | |||||
* | Add output of RepeatedRender test to .gitignore | Thiago Marcos P. Santos | 2015-05-15 | 2 | -0/+0 |
| | | | | Also delete files that are test output but were checked in. | ||||
* | explicitly call .discard() to resize the view on static renders | Konstantin Käfer | 2015-04-17 | 3 | -0/+25 |
- this is only a stopgap; we need to properly pass state between threads - doesn't fix changing the pixel ratio |