summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* [tidy] Check modernize-use-autoBruno de Oliveira Abinader2016-06-133-4/+4
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-auto.html
* [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-133-5/+5
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-pass-by-value.html
* [tidy] Check modernize-use-nullptrBruno de Oliveira Abinader2016-06-131-1/+1
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html
* [tidy] Check llvm-namespace-commentBruno de Oliveira Abinader2016-06-134-5/+5
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/llvm-namespace-comment.html
* [core] *Tile ↔ *TileDataJohn Firebaugh2016-06-133-7/+7
| | | | Tile is now the main base class; RasterTile, VectorTile, etc are its subclasses. GeometryTileData and its subclasses form the piece that's passed to the worker.
* [core] fix pedantic warning messagesKonstantin Käfer2016-06-1319-160/+160
|
* [test] Added Projection testsBruno de Oliveira Abinader2016-06-132-0/+69
|
* [test] Added style layer properties testsBruno de Oliveira Abinader2016-06-101-8/+200
|
* [core] load parents of missing tiles as optionalKonstantin Käfer2016-06-101-363/+648
|
* [core] TileData objects now store whether an optional load attempt was performedKonstantin Käfer2016-06-101-1/+7
|
* [core] rename onPlacementRedone -> onNeedsRepaintKonstantin Käfer2016-06-101-3/+3
|
* [core] createTile callback can load optional and required tilesKonstantin Käfer2016-06-101-174/+176
|
* [test] Rename Stress test to LoadThiago Marcos P. Santos2016-06-091-1/+1
| | | | Too slow to run on valgrind.
* [core] s/SharedTexture/PooledTexture/Bruno de Oliveira Abinader2016-06-071-4/+4
|
* [core] remove unused codeKonstantin Käfer2016-06-072-10/+0
|
* [core] Use RAII for TexturePool texturesBruno de Oliveira Abinader2016-06-071-26/+19
| | | | | TexturePool now disposes acquirable ids via SharedTexture, which guarantees that these are going back to TexturePool once released.
* [test] Added mbgl::gl::TexturePool testsBruno de Oliveira Abinader2016-06-031-6/+85
|
* [core, node, android] Remove used "base" parameter from setStyleJSONJohn Firebaugh2016-06-027-26/+26
|
* [core] Rationalize naming for style-related codeJohn Firebaugh2016-06-0210-64/+69
|
* [core] Introduce PropertyValue<T>John Firebaugh2016-06-021-37/+38
| | | | PropertyValue<T> represents the three possible types of style property value: undefined, constant, or function.
* [tests] Add basic tests for Map::{add,remove}LayerJohn Firebaugh2016-06-023-10/+38
|
* [core] Generalize Map::{add,remove}CustomLayerJohn Firebaugh2016-06-021-2/+2
|
* [core] Runtime style layer APIJohn Firebaugh2016-06-023-19/+11
|
* [tests] Tweak LineAnnotation test so that it reveals a bug; fix the bugJohn Firebaugh2016-06-022-1/+1
|
* [tests] Clean up annotation testsJohn Firebaugh2016-06-021-168/+90
|
* [all] Rationalize annotation APIJohn Firebaugh2016-06-012-30/+30
|
* [core] Use geometry.hpp types for shape annotationsJohn Firebaugh2016-06-011-11/+11
|
* [test] Added GL objects testsBruno de Oliveira Abinader2016-06-012-0/+122
|
* [core] Don't earcut more than 500 inner ringsYoung Hahn2016-05-312-0/+62
|
* [core] Replace clipper and libtess with earcut.hppJohn Firebaugh2016-05-311-0/+1
|
* [core] refactor updateRenderables algorithmKonstantin Käfer2016-05-272-230/+795
|
* [core] remove unused template definitionKonstantin Käfer2016-05-271-1/+1
|
* [core] AnnotationTileLayer vends its own name (#5163)Minh Nguyễn2016-05-261-0/+20
| | | Fixes #5159.
* [core] TileData::isReady() => TileData::isRenderable()Konstantin Käfer2016-05-251-1/+1
|
* [core] use #pragma once instead of ifdef include guardsKonstantin Käfer2016-05-255-21/+6
|
* [core] move *Observers to their own filesKonstantin Käfer2016-05-232-3/+4
|
* [core] Avoid NaNs in TransformState unit conversionsBruno de Oliveira Abinader2016-05-201-0/+40
| | | | | Fix cases where e.g. state has either zero width or height, causing the unit convertion functions would return NaNs.
* [core] allow creating optional requestsKonstantin Käfer2016-05-181-0/+252
| | | | | | Introduces "optional" requests. These should be fulfilled by the FileSource only there's a low-cost/easy way to obtain the data (e.g. from a local cache). If the data for an optional request cannot be found, it *must* return a Response object with a NotFound error. Traditional "required" requests still work the same way, with one change: If you set any prior* field in the Resource (i.e. priorModified, priorEtag, or priorExpires), the DefaultFileSource assumes that you already have the cache value and will not consult the cache before performing the request. If a prior cache lookup didn't turn up any data, and you therefore don't have an Etag or Modified value, you can still skip the cache by setting priorExpires. This will of course always result in a non-conditional HTTP request.
* [core] use rapidjson's dtoa implementation to stringify floating point numbersKonstantin Käfer2016-05-182-0/+56
|
* [core] remove MockView and View dependency in TransformKonstantin Käfer2016-05-185-58/+14
|
* [core] move from microsecond precision timestamp to integer second precisionKonstantin Käfer2016-05-134-11/+11
|
* [core] Added Viewport modeBruno de Oliveira Abinader2016-05-113-14/+14
| | | | | | Satisfies embedding platforms that requires the viewport coordinate systems to be set according to its standards e.g. viewport mirrored vertically.
* [core] retain tiles differently and remove old TileID classKonstantin Käfer2016-05-106-170/+504
|
* [core] move TileData and dependents to new *TileID classesKonstantin Käfer2016-05-104-29/+30
|
* [core] move Painter and dependents to new *TileID classesKonstantin Käfer2016-05-102-412/+0
|
* [core] add algorithm for generating clip IDs based on the new TileID classesKonstantin Käfer2016-05-102-0/+428
|
* [core] add algorithm for detecting whether an ordered map contains covering ↵Konstantin Käfer2016-05-103-1/+64
| | | | children
* [core] introduce three distinct TileID typesKonstantin Käfer2016-05-102-0/+297
| | | | | | * CanonicalTileID has z, x, and y, with x/y being within the bounds z defines. z can be anything from 0-32. * OverscaledTileID is composed of a z value, and a canonical tile. The z value indicates the zoom level the tile is intended for. It is primarily used for indexing overscaled data tiles. * UnwrappedTileID is composed of a wrap value, and a canonical tile. The wrap value is used for representing tiles to the left and right of the main (0/0/0 based) tile pyramid. It is primarily used for indicating the position a tile should be rendered at.
* [core] Implement has/!has filters (#4952)John Firebaugh2016-05-051-0/+22
|