summaryrefslogtreecommitdiff
path: root/src/mbgl/tile
Commit message (Collapse)AuthorAgeFilesLines
* [core] Hold on to tile yStretch value for rendering old symbolBuckets while ↵Chris Loer2017-07-112-2/+10
| | | | waiting for new ones.
* [core] Change OverscaledTileID to also include a "wrap" value.Chris Loer2017-07-111-16/+17
| | | | | This prevents TilePyramid from sharing wrapped copies of tiles. This is necessary because two wrapped tiles no longer share the same CollisionTile.
* [core] Improved label pitch-scaling: approximate collision box shapes based ↵Chris Loer2017-07-113-0/+8
| | | | on tile distance from camera.
* [core] make{Glyph,Image}Atlas only once for any number of symbol layersJohn Firebaugh2017-07-062-27/+24
|
* [core] document lifetimes of GeometryTileFeaturesKonstantin Käfer2017-06-211-0/+7
|
* [core] retain GeometryTileLayer in SymbolLayoutKonstantin Käfer2017-06-211-2/+3
| | | | We're storing GeometryTileFeature objects in SymbolLayout, but they may reference data in GeometryTileLayer, which could go away if we don't retain it.
* [core] always return owning pointers for GeometryTileData::getLayer()Konstantin Käfer2017-06-214-23/+31
|
* [core] switch to vector-tile library for decoding Mapbox vector tilesKonstantin Käfer2017-06-213-252/+62
|
* [core] shared feature data for GeoJSONTileData objectsKonstantin Käfer2017-06-211-5/+11
|
* [core] add benchmark for vector tile parsingKonstantin Käfer2017-06-213-298/+334
|
* [core] Per-tile glyph/icon atlasesJohn Firebaugh2017-06-133-1/+45
|
* [core] Per-bucket icon atlasesJohn Firebaugh2017-06-134-29/+28
|
* [core] Per-bucket glyph atlasesJohn Firebaugh2017-06-134-26/+24
|
* [core] Merge RenderLayer::uploadBuckets into RenderSource::startRenderJohn Firebaugh2017-06-135-0/+30
|
* [core] Split RenderStyle from StyleJohn Firebaugh2017-06-054-8/+6
|
* [core] Refactor RenderSource updatesJohn Firebaugh2017-06-055-39/+19
| | | | | | | * Eliminate updateBatch in favor of diffing layers and detecting changes to properties upon which layout depends. * Replace RenderSource::{update,remove,invalidate,reload}Tiles with a single update method * Replace TilePyramid::{update,remove,invalidate,reload}Tiles with a single update method * Remove Style& dependency TODO from GeometryTile and TileParameters
* [core] Thread Style parameter through queryRenderedFeaturesJohn Firebaugh2017-06-054-1/+11
|
* [core] use the last field in a property value, rather than the first fieldKonstantin Käfer2017-06-031-10/+17
|
* [core] interpret missing field in vector tile values as null instead of falseKonstantin Käfer2017-06-031-1/+1
|
* [core] Don't use a separate SpriteAtlas for annotation imagesJohn Firebaugh2017-05-261-5/+2
| | | | Instead, just add them to the Style as needed. Includes changes from #8905 and takes care to avoid regressing #3817.
* [core] Simplify and fix sprite atlas coordinate calculationsJohn Firebaugh2017-05-233-5/+10
| | | | | | | | * Always return image metrics exclusive of padding * Work with integer coordinates whenever possible * Eliminate redundant SpriteAtlasElement members * Fix asymmetric re-padding in getIconQuad when pixelRatio != 1 * Add explanatory comments
* [core] Throttle tiles to redo symbol placement at most once every 300ms.Chris Loer2017-05-172-2/+14
| | | | Fixes issue #8435 and prepares for pitch-scaling changes in issue #8967.
* [core, node, darwin, qt] Remove support for paint classesJohn Firebaugh2017-05-151-1/+0
|
* [core] cascade ⇢ transition / cascading ⇢ transitionableJohn Firebaugh2017-05-151-1/+1
|
* [core] Move renderer/* files into sub-folders (#8983)Asheem Mamoowala2017-05-125-9/+9
| | | Move renderer/* files into sub-folders
* [core] Replace createRender{Source,Layer} with Render{Source,Layer}::createJohn Firebaugh2017-05-121-1/+1
| | | | | * Eliminates the need for EnableImmutableFromThis * Eliminates the dependency of {Source,Layer}::Impl on corresponding Render class (circular dependency)
* [core] Immutable ImplsJohn Firebaugh2017-05-127-25/+24
|
* [tidy] modernize-use-equals-defaultBruno de Oliveira Abinader2017-05-121-2/+1
|
* [tidy] modernize-use-autoBruno de Oliveira Abinader2017-05-121-5/+5
|
* [core] Avoid calling virtual GeometryTile::cancel() on dtorBruno de Oliveira Abinader2017-05-122-1/+7
| | | | | warning: Call to virtual function during destruction will not dispatch to derived class [clang-analyzer-optin.cplusplus.VirtualCall]
* [core] Omnibus Style::update methodJohn Firebaugh2017-05-041-4/+1
| | | | Combine Style::cascade, recalculate, relayout, and updateTiles into a single method. This allows multiple loops over sources and layers to be consolidated and prepares for additional Style-Map decoupling: rather than tracking pending updates via a set of Update flags held by the Map and passed to the Style, the Style can use its own data to determine what to update.
* [core] UpdateParameters ⇢ TileParametersJohn Firebaugh2017-05-0410-20/+20
|
* [core] Move render-related sources out of style directory/namespaceJohn Firebaugh2017-05-0311-27/+19
| | | | | | | | | | | | | | | | Moves the following to the renderer directory and out of the style namespace: * CascadeParameters * PropertyEvaluationParameters * UpdateParameters * PropertyEvaluator * DataDrivenPropertyEvaluator * CrossFadedPropertyEvaluator * PaintPropertyBinder * PaintProperyStatistics * PossiblyEvaluatedPropertyValue * TransitioningLight * EvaluatedLight
* [core] Refactor Source::*Impls into RenderSources and TilePyramidJohn Firebaugh2017-05-022-5/+8
|
* [all] Push querySourceFeatures back out to MapJohn Firebaugh2017-05-026-11/+9
| | | | Once Source and RendererSource are split, Source will no longer have access to tiles.
* [core] Tweak handling of annotation special case SpriteAtlasJohn Firebaugh2017-04-266-52/+48
| | | | | * Simplify SymbolLayout; it never needs to care about more than one SpriteAtlas. * Move the reference from SymbolLayer::Impl to SymbolBucket. This is a prerequisite for making layer Impls immutable.
* [core] split off render layersIvo van Dongen2017-04-257-21/+49
|
* [core] Render parent raster tiles when ideal tile can't be loadedKonstantin Käfer2017-04-203-31/+36
|
* [core] account for property functions in query rendered featuresIvo van Dongen2017-04-191-1/+2
|
* [core] make Tile::getBucket constIvo van Dongen2017-04-195-5/+5
|
* [core] Replace GlyphRangeSet in onGlyphsAvailable with optionals in the mapJohn Firebaugh2017-04-144-26/+17
| | | | GlyphRangeSet isn't keyed by FontStack, so using it to indicate that a particular range was loaded could have produced false positives.
* [core] De-mutex GlyphAtlas and SpriteAtlasChris Loer2017-04-045-51/+158
| | | | | | | | | | | | - Expose glyph and icon information to workers via message interface. - Glyph/SpriteAtlas track which tiles have outstanding requests and send messages to them when glyphs/icons become available. - Remove obsolete "updateSymbolDependentTiles" pathway - Symbol preparation for a tile now depends on all glyphs becoming available before it can start. - Start tracking individual icons needed for a tile, although we don't do anything with the information yet. - Introduce typedef for GlyphID
* [core] check null data in query source featuresIvo van Dongen2017-03-281-0/+5
|
* [core] Remove unnecessary unordered_map includesJohn Firebaugh2017-03-212-2/+0
|
* [core] Use core wagyu algorithm; move results into GeometryCollectionJohn Firebaugh2017-03-172-69/+20
|
* Added wagyu and removed angus clipperBlake Thompson2017-03-171-46/+68
|
* [core] don’t query rendered features until all data is availableIvo van Dongen2017-03-141-0/+1
|
* [core] query source featuresIvo van Dongen2017-03-096-1/+82
|
* [core] rename query options for query rendered featuresIvo van Dongen2017-03-094-5/+5
|
* [core] Add support for queryRenderedFeatures filterAsheem Mamoowala2017-03-044-5/+8
|