summaryrefslogtreecommitdiff
path: root/test/fixtures/api
Commit message (Collapse)AuthorAgeFilesLines
* [test] ensure static rendering finishes when a tile can't be loadedKonstantin Käfer2016-01-152-0/+39
|
* [core] Eliminate platform::assetRoot()John Firebaugh2016-01-134-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:// implementationJohn Firebaugh2016-01-131-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 utestsThiago Marcos P. Santos2015-12-011-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 annotationsJohn Firebaugh2015-11-301-2/+1
|
* [core] Force style-sourced annotations to be visibleJohn Firebaugh2015-11-191-0/+3
|
* [core] Style-sourced shape annotation propertiesJohn Firebaugh2015-10-221-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 reparsedJohn Firebaugh2015-09-281-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 v8John Firebaugh2015-08-201-1/+1
|
* Add output of RepeatedRender test to .gitignoreThiago Marcos P. Santos2015-05-152-0/+0
| | | | Also delete files that are test output but were checked in.
* explicitly call .discard() to resize the view on static rendersKonstantin Käfer2015-04-173-0/+25
- this is only a stopgap; we need to properly pass state between threads - doesn't fix changing the pixel ratio