| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/ |
| H A D | collision_box_program.hpp | 72 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 D | program.hpp | 80 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 D | symbol_program.hpp | 318 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 D | fill_annotation_impl.cpp | 16 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 D | line_annotation_impl.cpp | 16 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 D | shape_annotation_impl.cpp | 18 layerID(AnnotationManager::ShapeLayerID + util::toString(id)) { in ShapeAnnotationImpl() 43 auto layer = data.addLayer(layerID); in updateTileData()
|
| H A D | shape_annotation_impl.hpp | 29 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 D | style.cpp | 114 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 D | layer_impl.cpp | 6 Layer::Impl::Impl(LayerType type_, std::string layerID, std::string sourceID) in Impl() argument 8 id(std::move(layerID)), in Impl()
|
| H A D | parser.cpp | 197 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 D | layer_impl.hpp | 32 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 D | feature_index.cpp | 131 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 D | style_diff.cpp | 70 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 D | style_diff.hpp | 46 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 D | custom_layer.cpp | 8 CustomLayer::CustomLayer(const std::string& layerID, in CustomLayer() argument 10 : Layer(makeMutable<Impl>(layerID, std::move(host))) { in CustomLayer()
|
| H A D | layer.cpp.ejs | 22 <%- 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 D | background_layer.cpp | 10 BackgroundLayer::BackgroundLayer(const std::string& layerID) in BackgroundLayer() argument 11 : Layer(makeMutable<Impl>(LayerType::Background, layerID, std::string())) { in BackgroundLayer()
|
| H A D | heatmap_layer.cpp | 14 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 D | hillshade_layer.cpp | 10 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 D | fill_layer.cpp | 10 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 D | raster_layer.cpp | 10 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 D | layer.hpp.ejs | 32 <%- camelize(type) %>Layer(const std::string& layerID); 34 <%- camelize(type) %>Layer(const std::string& layerID, const std::string& sourceID);
|
| H A D | background_layer.hpp | 19 BackgroundLayer(const std::string& layerID);
|
| H A D | heatmap_layer.hpp | 20 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 D | style.hpp | 71 std::unique_ptr<Layer> removeLayer(const std::string& layerID);
|