summaryrefslogtreecommitdiff
path: root/src/mbgl
Commit message (Collapse)AuthorAgeFilesLines
* [tidy] Check misc-static-assertBruno de Oliveira Abinader2016-06-132-2/+2
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/misc-static-assert.html
* [tidy] Check modernize-loop-convertBruno de Oliveira Abinader2016-06-131-2/+2
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-loop-convert.html
* [tidy] Check modernize-use-autoBruno de Oliveira Abinader2016-06-131-1/+1
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-auto.html
* [tidy] Check modernize-use-defaultBruno de Oliveira Abinader2016-06-135-10/+5
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-default.html
* [tidy] Check modernize-use-overrideBruno de Oliveira Abinader2016-06-135-5/+5
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-override.html
* [tidy] Check modernize-pass-by-valueBruno de Oliveira Abinader2016-06-1340-102/+88
| | | | 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-1337-43/+43
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/llvm-namespace-comment.html
* [core] Simplify GeometryTile::setDataJohn Firebaugh2016-06-135-14/+9
|
* [core] *Tile ↔ *TileDataJohn Firebaugh2016-06-1354-763/+757
| | | | 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] Tile ⇢ RenderTileJohn Firebaugh2016-06-1311-33/+33
|
* [core] Remove unnecessary virtual redoPlacement overloadJohn Firebaugh2016-06-132-3/+3
|
* [core] Privatize geojson_tile.hpp contentsJohn Firebaugh2016-06-132-40/+40
|
* [core] Privatize vector_tile.hpp contentsJohn Firebaugh2016-06-132-65/+62
|
* [core] Merge vector_tile_data.{hpp,cpp} into vector_tile.{hpp,cpp}John Firebaugh2016-06-135-65/+47
|
* [core] Merge annotation_tile_data.{hpp,cpp} into annotation_tile.{hpp,cpp}John Firebaugh2016-06-136-49/+36
|
* [core] Merge geojson_tile_data.{hpp,cpp} into geojson_tile.{hpp,cpp}John Firebaugh2016-06-135-115/+103
|
* [core] Remove unnecessary explicit destructorsJohn Firebaugh2016-06-134-8/+0
|
* [core] Eliminate static {Vector,Raster}TileData::parseDataJohn Firebaugh2016-06-135-12/+8
|
* [core] Update line-pattern shader code/testsBruno de Oliveira Abinader2016-06-131-2/+2
| | | | | | | | | Refs: - mapbox-gl-test-suite: https://github.com/mapbox/mapbox-gl-test-suite/pull/107 - mapbox-gl-shaders: https://github.com/mapbox/mapbox-gl-shaders/pull/17 - mapbox-gl-js: https://github.com/mapbox/mapbox-gl-js/pull/2724 Part of https://github.com/mapbox/mapbox-gl-shaders/issues/1.
* [core] fix pedantic warning messagesKonstantin Käfer2016-06-1316-35/+30
|
* Don't apply textRotate twice. (#5321)Young Hahn2016-06-111-2/+2
|
* text-pitch-alignment (#5288)Young Hahn2016-06-1018-54/+88
| | | | | | | | | | | | * First pass at port of https://github.com/mapbox/mapbox-gl-js/pull/2668 * RotationAlignmentType => AlignmentType * Handle undefined default value for text-pitch-alignment and implement inheritance for this value from text-rotation-alignment * Update dependencies * Move handling fo undefined default value out of camelize functions
* [core] Redundant id check in TexturePoolDeleterBruno de Oliveira Abinader2016-06-102-6/+3
|
* [core] Inline TileSource::isRequired, remove unused isOptionalJohn Firebaugh2016-06-102-10/+2
|
* [core] Merge FileBasedTileSource and TileSourceJohn Firebaugh2016-06-108-86/+55
|
* [core] Factor common code into FileBasedTileSourceJohn Firebaugh2016-06-104-20/+22
|
* [core] Simplify FileBasedTileSourceJohn Firebaugh2016-06-105-59/+27
|
* [core] Merge ImageTileSource into RasterTileDataJohn Firebaugh2016-06-104-37/+11
|
* [core] Merge VectorTileSource into VectorTileDataJohn Firebaugh2016-06-105-41/+14
|
* [core] Merge GeoJSONTileSource into GeoJSONTileDataJohn Firebaugh2016-06-104-143/+70
|
* [core] Merge AnnotationTileSource into AnnotationTileDataJohn Firebaugh2016-06-106-71/+22
|
* [core] Eliminate TileData dependency on TileSourceJohn Firebaugh2016-06-1010-24/+53
|
* [core] Eliminate Source dependency on TileSourceJohn Firebaugh2016-06-103-6/+15
|
* [core] Push conditional initialization into subclassesJohn Firebaugh2016-06-109-54/+106
|
* [core] Introduce GeometryTileData subclassesJohn Firebaugh2016-06-104-4/+42
|
* [core] Move setObserver out of Source::createTileJohn Firebaugh2016-06-101-4/+3
|
* [core] Move cache lookup out of Source::createTileJohn Firebaugh2016-06-101-5/+5
|
* [core] Repeat some code so that all branches are parallelJohn Firebaugh2016-06-101-19/+31
|
* [core] Remove unused includesJohn Firebaugh2016-06-101-3/+0
|
* [core] load parents of missing tiles as optionalKonstantin Käfer2016-06-102-16/+24
|
* [core] TileData objects now store whether an optional load attempt was performedKonstantin Käfer2016-06-103-0/+17
|
* [core] rename onPlacementRedone -> onNeedsRepaintKonstantin Käfer2016-06-109-18/+18
|
* [core] createTile callback can load optional and required tilesKonstantin Käfer2016-06-102-3/+6
|
* [core] remove unused TileSource::loadedKonstantin Käfer2016-06-101-8/+0
|
* [core] TileSources always start out as OptionalKonstantin Käfer2016-06-101-5/+5
|
* [core] only perform optional requests if the FileSource supports itKonstantin Käfer2016-06-102-14/+38
|
* [core] allow changing the necessity of a TileSourceKonstantin Käfer2016-06-105-13/+131
|
* [core] merge similar implementation of VectorTileSource and ImageTileSourceKonstantin Käfer2016-06-1015-73/+101
|
* [core] move parsePending() call to TileDataKonstantin Käfer2016-06-102-7/+8
|