summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* [core] Added mbgl::util::convert helper functionBruno de Oliveira Abinader2016-06-151-0/+9
| | | | | Converts a given std::array into another using a different (convertible) type.
* [core] Cleanup SpriteAtlasPositionBruno de Oliveira Abinader2016-06-151-7/+3
|
* Color class (#5361)Young Hahn2016-06-1530-43/+69
| | | | | | * Color class * Switch to list initialization
* [tidy/linux] modernize-pass-by-valueBruno de Oliveira Abinader2016-06-141-1/+1
|
* [tidy/linux] modernize-use-defaultBruno de Oliveira Abinader2016-06-141-3/+2
|
* [core] Miscellaneous Source cleanupsJohn Firebaugh2016-06-142-22/+10
|
* [core] Add Source::startRender for parallelism with finishRenderJohn Firebaugh2016-06-143-14/+21
|
* [core] Add virtual Source::getTileSize()John Firebaugh2016-06-148-7/+13
|
* [core] Push Source::url down to subclassesJohn Firebaugh2016-06-147-13/+12
|
* [core] Push Source::tileset down to TileSourceJohn Firebaugh2016-06-149-23/+18
|
* [core] Add virtual Source::getZoomRange()John Firebaugh2016-06-148-4/+22
|
* [core] Use Range<uint8_t> instead of full Tileset where possibleJohn Firebaugh2016-06-145-16/+16
|
* [core] Move GeoJSON-specific parsing into geojson_source.cppJohn Firebaugh2016-06-144-76/+76
|
* [core] Push Source::req down into subclassesJohn Firebaugh2016-06-145-2/+16
|
* [core] Eliminate Source::isLoadingJohn Firebaugh2016-06-143-6/+1
| | | | Source::load is already a no-op if the request is in progress, so it isn't necessary.
* [core] Push Source::geojsonvt down to GeoJSONSourceJohn Firebaugh2016-06-145-11/+16
|
* [core] Virtualize Source::loadJohn Firebaugh2016-06-148-99/+132
|
* [core] Introduce shared base class for VectorSource and RasterSourceJohn Firebaugh2016-06-146-6/+43
|
* [core] Virtualize Source::createTileJohn Firebaugh2016-06-1414-25/+45
|
* [core] Vector source tileSize is constantJohn Firebaugh2016-06-143-4/+2
|
* [core] Inline AnnotationSource constructor parametersJohn Firebaugh2016-06-143-10/+5
|
* [core] Pass geojsonvt only to GeoJSONSourceJohn Firebaugh2016-06-1411-24/+20
|
* [core] Introduce source subclassesJohn Firebaugh2016-06-1410-17/+153
|
* [core] Fix PropertyValue<T>::setJohn Firebaugh2016-06-131-1/+1
| | | | For runtime styling, it needs to overwrite any existing value.
* [core] Introduce Map::getLayerJohn Firebaugh2016-06-131-0/+4
|
* [core] Extract code templates to individual .ejs filesJohn Firebaugh2016-06-133-0/+192
|
* [core] Make enum ↔ string conversion more generic-friendlyJohn Firebaugh2016-06-137-173/+157
| | | | | | Rewrite enum.hpp in such a way that parseConstant can be defined generically for all enumerated types. While there, properly validated enumerated property values.
* [core] Eliminate duplicate Necessity typesJohn Firebaugh2016-06-134-16/+12
|
* [core] TileSource ⇢ TileLoaderJohn Firebaugh2016-06-137-22/+21
|
* [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
|