summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [tidy] Install mason clang-tidy if CLANG_TIDY is not setBruno de Oliveira Abinader2016-06-144-2/+4
| | | | Also added HeaderFilterRegex to .clang-tidy.
* [macos] Renamed OS X SDK to macOS SDKMinh Nguyễn2016-06-1499-194/+199
| | | | Also renamed as many references to OS X as possible to macOS in documentation.
* Suppress warning when dequeueing subclasses (#5244)Alan Kinnaman2016-06-141-2/+2
| | | | | | | When using a subclass of `MGLAnnotationView` or `MGLAnnotationImage`, the following warning occurs: `Incompatible pointer types initializing 'MyClassName *' with an expression of type 'MGLAnnotationView * _Nullable'` This change eliminates the warning and matches Apple's implementation of `UITableViewCell`.
* [node] Partial implementation of runtime styling API for node bindingsJohn Firebaugh2016-06-138-15/+403
|
* [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-132-0/+5
|
* [core] Extract code templates to individual .ejs filesJohn Firebaugh2016-06-135-275/+272
|
* [core] Eliminate some redundant NodeMap membersJohn Firebaugh2016-06-132-21/+9
|
* [core] Make enum ↔ string conversion more generic-friendlyJohn Firebaugh2016-06-1315-258/+194
| | | | | | 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] Bail out when a warning/error is foundBruno de Oliveira Abinader2016-06-131-1/+14
|
* [build] Re-enable tidy checksBruno de Oliveira Abinader2016-06-134-14/+63
|
* [build] Separate headers gen in a specific targetBruno de Oliveira Abinader2016-06-131-15/+32
|
* [build] compdb depends on node_modulesBruno de Oliveira Abinader2016-06-131-1/+1
|
* [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-134-5/+5
| | | | 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-1310-11/+11
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-override.html
* [tidy] Check modernize-pass-by-valueBruno de Oliveira Abinader2016-06-1354-135/+120
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-pass-by-value.html
* [tidy] Check modernize-use-nullptrBruno de Oliveira Abinader2016-06-134-5/+5
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html
* [tidy] Check llvm-namespace-commentBruno de Oliveira Abinader2016-06-1345-53/+53
| | | | 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-1358-771/+765
| | | | 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-132-4/+4
| | | | | | | | | 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-1341-288/+196
|
* [test] Added Projection testsBruno de Oliveira Abinader2016-06-134-5/+80
|
* [build] Make node_modules non-parallelBruno de Oliveira Abinader2016-06-121-0/+1
|
* Don't apply textRotate twice. (#5321)Young Hahn2016-06-112-3/+3
|
* text-pitch-alignment (#5288)Young Hahn2016-06-1022-65/+107
| | | | | | | | | | | | * 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
* Use shaders@f0b94dcc5f782958e9aade61d592a207d8a46e0f (#5314)Young Hahn2016-06-101-1/+1
|
* [core] Port pitched circle rendering from gl-jsBruno de Oliveira Abinader2016-06-101-1/+1
| | | | | | | Extrude scale is already multiplied with altitude by default since 62b4dd554ab4df891221b1e43bda5a0f5dc1741a. Fixes #5006.
* [test] Added style layer properties testsBruno de Oliveira Abinader2016-06-101-8/+200
|
* [core] Redundant id check in TexturePoolDeleterBruno de Oliveira Abinader2016-06-102-6/+3
|
* [build] Update compdb & tidy for Linux & OS XBruno de Oliveira Abinader2016-06-102-3/+22
|
* [build] Use Debug folders by default on YCM configBruno de Oliveira Abinader2016-06-101-2/+3
| | | | We've recently moved from Release to Debug default build type.
* [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
|