| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/ |
| H A D | line_layer.cpp | 10 LineLayer::LineLayer(const std::string& layerID, const std::string& sourceID) in LineLayer() function in mbgl::style::LineLayer 14 LineLayer::LineLayer(Immutable<Impl> impl_) in LineLayer() function in mbgl::style::LineLayer 18 LineLayer::~LineLayer() = default; 20 const LineLayer::Impl& LineLayer::impl() const { in impl() 24 Mutable<LineLayer::Impl> LineLayer::mutableImpl() const { in mutableImpl() 28 std::unique_ptr<Layer> LineLayer::cloneRef(const std::string& id_) const { in cloneRef() 32 return std::make_unique<LineLayer>(std::move(impl_)); in cloneRef() 35 void LineLayer::Impl::stringifyLayout(rapidjson::Writer<rapidjson::StringBuffer>& writer) const { in stringifyLayout() 41 const std::string& LineLayer::getSourceID() const { in getSourceID() 45 void LineLayer::setSourceLayer(const std::string& sourceLayer) { in setSourceLayer() [all …]
|
| H A D | line_layer_impl.cpp | 6 bool LineLayer::Impl::hasLayoutDifference(const Layer::Impl& other) const { in hasLayoutDifference() 7 assert(dynamic_cast<const LineLayer::Impl*>(&other)); in hasLayoutDifference() 8 const auto& impl = static_cast<const style::LineLayer::Impl&>(other); in hasLayoutDifference()
|
| H A D | line_layer_impl.hpp | 10 class LineLayer::Impl : public Layer::Impl {
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/ |
| H A D | make_property_setters.hpp | 29 … result["line-cap"] = &setProperty<LineLayer, PropertyValue<LineCapType>, &LineLayer::setLineCap>; in makeLayoutPropertySetters() 30 …result["line-join"] = &setProperty<LineLayer, DataDrivenPropertyValue<LineJoinType>, &LineLayer::s… in makeLayoutPropertySetters() 31 …result["line-miter-limit"] = &setProperty<LineLayer, PropertyValue<float>, &LineLayer::setLineMite… in makeLayoutPropertySetters() 32 …result["line-round-limit"] = &setProperty<LineLayer, PropertyValue<float>, &LineLayer::setLineRoun… in makeLayoutPropertySetters() 98 …result["line-opacity"] = &setProperty<LineLayer, DataDrivenPropertyValue<float>, &LineLayer::setLi… in makePaintPropertySetters() 99 …result["line-opacity-transition"] = &setTransition<LineLayer, &LineLayer::setLineOpacityTransition… in makePaintPropertySetters() 100 …result["line-color"] = &setProperty<LineLayer, DataDrivenPropertyValue<Color>, &LineLayer::setLine… in makePaintPropertySetters() 101 result["line-color-transition"] = &setTransition<LineLayer, &LineLayer::setLineColorTransition>; in makePaintPropertySetters() 102 …result["line-translate"] = &setProperty<LineLayer, PropertyValue<std::array<float, 2>>, &LineLayer… in makePaintPropertySetters() 103 …result["line-translate-transition"] = &setTransition<LineLayer, &LineLayer::setLineTranslateTransi… in makePaintPropertySetters() [all …]
|
| H A D | layer.cpp | 162 converted = convertVectorLayer<LineLayer>(*id, value, error); in operator ()()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/ |
| H A D | line_layer.hpp | 19 class LineLayer : public Layer { class 21 LineLayer(const std::string& layerID, const std::string& sourceID); 22 ~LineLayer() final; 125 LineLayer(Immutable<Impl>); 130 inline bool Layer::is<LineLayer>() const { in is()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/ |
| H A D | render_line_layer.hpp | 20 RenderLineLayer(Immutable<style::LineLayer::Impl>); 42 const style::LineLayer::Impl& impl() const;
|
| H A D | render_line_layer.cpp | 19 RenderLineLayer::RenderLineLayer(Immutable<style::LineLayer::Impl> _impl) in RenderLineLayer() 24 const style::LineLayer::Impl& RenderLineLayer::impl() const { in impl() 25 return static_cast<const style::LineLayer::Impl&>(*baseImpl); in impl()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/ |
| H A D | line_annotation_impl.cpp | 19 auto newLayer = std::make_unique<LineLayer>(layerID, AnnotationManager::SourceID); in updateStyle() 25 auto* lineLayer = layer->as<LineLayer>(); in updateStyle()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/ |
| H A D | layer.hpp | 18 class LineLayer; 82 return std::forward<V>(visitor)(*as<LineLayer>()); in accept()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/ |
| H A D | render_layer.cpp | 26 return std::make_unique<RenderLineLayer>(staticImmutableCast<LineLayer::Impl>(impl)); in create()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/ |
| H A D | qmapboxgl.cpp | 1565 if (layer_->is<LineLayer>()) { in setFilter() 1566 layer_->as<LineLayer>()->setFilter(filter_); in setFilter() 1639 } else if (layer_->is<LineLayer>()) { in getFilter() 1640 filter_ = layer_->as<LineLayer>()->getFilter(); in getFilter()
|