Home
last modified time | relevance | path

Searched refs:layerID (Results 1 – 25 of 39) sorted by relevance

12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/
H A Dcollision_box_program.hpp72 const std::string& layerID) { in draw() argument
83 auto vertexArrayIt = segment.vertexArrays.find(layerID); in draw()
86 … vertexArrayIt = segment.vertexArrays.emplace(layerID, context.createVertexArray()).first; in draw()
151 const std::string& layerID) { in draw() argument
160 auto vertexArrayIt = segment.vertexArrays.find(layerID); in draw()
163 … vertexArrayIt = segment.vertexArrays.emplace(layerID, context.createVertexArray()).first; in draw()
H A Dprogram.hpp80 const std::string& layerID) { in draw() argument
82 auto vertexArrayIt = segment.vertexArrays.find(layerID); in draw()
85 … vertexArrayIt = segment.vertexArrays.emplace(layerID, context.createVertexArray()).first; in draw()
H A Dsymbol_program.hpp318 const std::string& layerID) { in draw() argument
320 auto vertexArrayIt = segment.vertexArrays.find(layerID); in draw()
323 … vertexArrayIt = segment.vertexArrays.emplace(layerID, context.createVertexArray()).first; in draw()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dfill_annotation_impl.cpp16 Layer* layer = style.getLayer(layerID); in updateStyle()
19 auto newLayer = std::make_unique<FillLayer>(layerID, AnnotationManager::SourceID); in updateStyle()
20 newLayer->setSourceLayer(layerID); in updateStyle()
H A Dline_annotation_impl.cpp16 Layer* layer = style.getLayer(layerID); in updateStyle()
19 auto newLayer = std::make_unique<LineLayer>(layerID, AnnotationManager::SourceID); in updateStyle()
20 newLayer->setSourceLayer(layerID); in updateStyle()
H A Dshape_annotation_impl.cpp18 layerID(AnnotationManager::ShapeLayerID + util::toString(id)) { in ShapeAnnotationImpl()
43 auto layer = data.addLayer(layerID); in updateTileData()
H A Dshape_annotation_impl.hpp29 const std::string layerID; member in mbgl::ShapeAnnotationImpl
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dstyle.cpp114 Layer* Style::getLayer(const std::string& layerID) { in getLayer() argument
116 return impl->getLayer(layerID); in getLayer()
119 const Layer* Style::getLayer(const std::string& layerID) const { in getLayer()
120 return impl->getLayer(layerID); in getLayer()
H A Dlayer_impl.cpp6 Layer::Impl::Impl(LayerType type_, std::string layerID, std::string sourceID) in Impl() argument
8 id(std::move(layerID)), in Impl()
H A Dparser.cpp197 const std::string layerID = { id.GetString(), id.GetStringLength() }; in parseLayers() local
198 if (layersMap.find(layerID) != layersMap.end()) { in parseLayers()
199 Log::Warning(Event::ParseStyle, "duplicate layer id %s", layerID.c_str()); in parseLayers()
203 …layersMap.emplace(layerID, std::pair<const JSValue&, std::unique_ptr<Layer>> { layerValue, nullptr… in parseLayers()
204 ids.push_back(layerID); in parseLayers()
H A Dlayer_impl.hpp32 Impl(LayerType, std::string layerID, std::string sourceID);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/geometry/
H A Dfeature_index.cpp131 auto getRenderLayer = [&] (const std::string& layerID) -> const RenderLayer* { in addFeature() argument
133 if (layer->getID() == layerID) { in addFeature()
144 for (const std::string& layerID : bucketLayerIDs.at(indexedFeature.bucketLeaderID)) { in addFeature() local
145 const RenderLayer* renderLayer = getRenderLayer(layerID); in addFeature()
167 result[layerID].push_back(convertFeature(*geometryTileFeature, tileID)); in addFeature()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dstyle_diff.cpp70 bool hasLayoutDifference(const LayerDifference& layerDiff, const std::string& layerID) { in hasLayoutDifference() argument
71 if (layerDiff.added.count(layerID)) in hasLayoutDifference()
73 const auto it = layerDiff.changed.find(layerID); in hasLayoutDifference()
H A Dstyle_diff.hpp46 bool hasLayoutDifference(const LayerDifference&, const std::string& layerID);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/
H A Dcustom_layer.cpp8 CustomLayer::CustomLayer(const std::string& layerID, in CustomLayer() argument
10 : Layer(makeMutable<Impl>(layerID, std::move(host))) { in CustomLayer()
H A Dlayer.cpp.ejs22 <%- camelize(type) %>Layer::<%- camelize(type) %>Layer(const std::string& layerID)
23 : Layer(makeMutable<Impl>(LayerType::<%- camelize(type) %>, layerID, std::string())) {
26 <%- camelize(type) %>Layer::<%- camelize(type) %>Layer(const std::string& layerID, const std::strin…
27 : Layer(makeMutable<Impl>(LayerType::<%- camelize(type) %>, layerID, sourceID)) {
H A Dbackground_layer.cpp10 BackgroundLayer::BackgroundLayer(const std::string& layerID) in BackgroundLayer() argument
11 : Layer(makeMutable<Impl>(LayerType::Background, layerID, std::string())) { in BackgroundLayer()
H A Dheatmap_layer.cpp14 HeatmapLayer::HeatmapLayer(const std::string& layerID, const std::string& sourceID) in HeatmapLayer() argument
15 : Layer(makeMutable<Impl>(LayerType::Heatmap, layerID, sourceID)) { in HeatmapLayer()
H A Dhillshade_layer.cpp10 HillshadeLayer::HillshadeLayer(const std::string& layerID, const std::string& sourceID) in HillshadeLayer() argument
11 : Layer(makeMutable<Impl>(LayerType::Hillshade, layerID, sourceID)) { in HillshadeLayer()
H A Dfill_layer.cpp10 FillLayer::FillLayer(const std::string& layerID, const std::string& sourceID) in FillLayer() argument
11 : Layer(makeMutable<Impl>(LayerType::Fill, layerID, sourceID)) { in FillLayer()
H A Draster_layer.cpp10 RasterLayer::RasterLayer(const std::string& layerID, const std::string& sourceID) in RasterLayer() argument
11 : Layer(makeMutable<Impl>(LayerType::Raster, layerID, sourceID)) { in RasterLayer()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/
H A Dlayer.hpp.ejs32 <%- camelize(type) %>Layer(const std::string& layerID);
34 <%- camelize(type) %>Layer(const std::string& layerID, const std::string& sourceID);
H A Dbackground_layer.hpp19 BackgroundLayer(const std::string& layerID);
H A Dheatmap_layer.hpp20 HeatmapLayer(const std::string& layerID, const std::string& sourceID);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dstyle.hpp71 std::unique_ptr<Layer> removeLayer(const std::string& layerID);

12