summaryrefslogtreecommitdiff
path: root/include/mbgl/style/layer.hpp
Commit message (Collapse)AuthorAgeFilesLines
* [core] ensure layer::accept works with non-void return values on gccIvo van Dongen2017-05-301-0/+7
|
* [core] forward visitor in layer::acceptIvo van Dongen2017-05-231-8/+8
|
* [core] Return {Source,Layer}::getID by valueJohn Firebaugh2017-05-121-1/+1
| | | | | | | | | | Avoid dangling references in the following sequence: auto& id = layer->getID(); layer->setMaxZoom(2); std::cout << id; The reference would be dangling because mutating the layer allocates a new Immutable impl, and there may be no references to the prior impl, which held the id.
* [core] Immutable ImplsJohn Firebaugh2017-05-121-14/+17
|
* [core] Render fill-extrusion layers (#8431)Lauren Budorick2017-04-271-1/+1
|
* [core] split off render layersIvo van Dongen2017-04-251-23/+15
|
* [core, darwin] Object identity for MGLSource*, MGLStyleLayer*John Firebaugh2017-04-131-0/+6
| | | | All `MGLSource` pointers referencing the same logical source will now be object identical; similarly for `MGLStyleLayer`.
* [core] Include what you useThiago Marcos P. Santos2017-01-201-0/+1
|
* [core] Get rid of user-specified refsJohn Firebaugh2017-01-041-0/+2
|
* [core] Implement circle-stroke propertiesJohn Firebaugh2016-12-091-0/+4
| | | | Also includes stubs for fill-extrusion layer, because most of the code was auto-generated.
* [core] Trigger Source::Impl::reload when a filter or layout property is modifiedJohn Firebaugh2016-09-061-15/+55
|
* [core] Adjust layer source properties to better reflect realityJohn Firebaugh2016-06-241-5/+0
| | | | | | | | * Layer source ID is immutable; must be provided to the constructor * Layer source layer is mutable * Layers with GeoJSON sources do not have a source layer While here, make Layer::copy impl-private.
* [core] Rationalize naming for style-related codeJohn Firebaugh2016-06-021-4/+3
|
* [core] Add {min,max}Zoom accessorsJohn Firebaugh2016-06-021-0/+6
|
* [core] Runtime style layer APIJohn Firebaugh2016-06-021-0/+78