| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/ |
| H A D | fill_layer.cpp | 10 FillLayer::FillLayer(const std::string& layerID, const std::string& sourceID) in FillLayer() function in mbgl::style::FillLayer 14 FillLayer::FillLayer(Immutable<Impl> impl_) in FillLayer() function in mbgl::style::FillLayer 18 FillLayer::~FillLayer() = default; 20 const FillLayer::Impl& FillLayer::impl() const { in impl() 24 Mutable<FillLayer::Impl> FillLayer::mutableImpl() const { in mutableImpl() 28 std::unique_ptr<Layer> FillLayer::cloneRef(const std::string& id_) const { in cloneRef() 32 return std::make_unique<FillLayer>(std::move(impl_)); in cloneRef() 35 void FillLayer::Impl::stringifyLayout(rapidjson::Writer<rapidjson::StringBuffer>&) const { in stringifyLayout() 40 const std::string& FillLayer::getSourceID() const { in getSourceID() 44 void FillLayer::setSourceLayer(const std::string& sourceLayer) { in setSourceLayer() [all …]
|
| H A D | fill_layer_impl.cpp | 6 bool FillLayer::Impl::hasLayoutDifference(const Layer::Impl& other) const { in hasLayoutDifference() 7 assert(dynamic_cast<const FillLayer::Impl*>(&other)); in hasLayoutDifference() 8 const auto& impl = static_cast<const style::FillLayer::Impl&>(other); in hasLayoutDifference()
|
| H A D | fill_layer_impl.hpp | 10 class FillLayer::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 | 83 …result["fill-antialias"] = &setProperty<FillLayer, PropertyValue<bool>, &FillLayer::setFillAntiali… in makePaintPropertySetters() 84 …result["fill-antialias-transition"] = &setTransition<FillLayer, &FillLayer::setFillAntialiasTransi… in makePaintPropertySetters() 85 …result["fill-opacity"] = &setProperty<FillLayer, DataDrivenPropertyValue<float>, &FillLayer::setFi… in makePaintPropertySetters() 86 …result["fill-opacity-transition"] = &setTransition<FillLayer, &FillLayer::setFillOpacityTransition… in makePaintPropertySetters() 87 …result["fill-color"] = &setProperty<FillLayer, DataDrivenPropertyValue<Color>, &FillLayer::setFill… in makePaintPropertySetters() 88 result["fill-color-transition"] = &setTransition<FillLayer, &FillLayer::setFillColorTransition>; in makePaintPropertySetters() 89 …result["fill-outline-color"] = &setProperty<FillLayer, DataDrivenPropertyValue<Color>, &FillLayer:… in makePaintPropertySetters() 90 …result["fill-outline-color-transition"] = &setTransition<FillLayer, &FillLayer::setFillOutlineColo… in makePaintPropertySetters() 91 …result["fill-translate"] = &setProperty<FillLayer, PropertyValue<std::array<float, 2>>, &FillLayer… in makePaintPropertySetters() 92 …result["fill-translate-transition"] = &setTransition<FillLayer, &FillLayer::setFillTranslateTransi… in makePaintPropertySetters() [all …]
|
| H A D | layer.cpp | 158 converted = convertVectorLayer<FillLayer>(*id, value, error); in operator ()()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/ |
| H A D | fill_layer.hpp | 17 class FillLayer : public Layer { class 19 FillLayer(const std::string& layerID, const std::string& sourceID); 20 ~FillLayer() final; 87 FillLayer(Immutable<Impl>); 92 inline bool Layer::is<FillLayer>() const { in is()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/ |
| H A D | render_fill_layer.hpp | 11 RenderFillLayer(Immutable<style::FillLayer::Impl>); 33 const style::FillLayer::Impl& impl() const;
|
| H A D | render_fill_layer.cpp | 18 RenderFillLayer::RenderFillLayer(Immutable<style::FillLayer::Impl> _impl) in RenderFillLayer() 23 const style::FillLayer::Impl& RenderFillLayer::impl() const { in impl() 24 return static_cast<const style::FillLayer::Impl&>(*baseImpl); in impl()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/ |
| H A D | fill_annotation_impl.cpp | 19 auto newLayer = std::make_unique<FillLayer>(layerID, AnnotationManager::SourceID); in updateStyle() 24 auto* fillLayer = layer->as<FillLayer>(); in updateStyle()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/ |
| H A D | layer.hpp | 17 class FillLayer; 80 return std::forward<V>(visitor)(*as<FillLayer>()); in accept()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/ |
| H A D | render_layer.cpp | 24 return std::make_unique<RenderFillLayer>(staticImmutableCast<FillLayer::Impl>(impl)); in create()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/ |
| H A D | qmapboxgl.cpp | 1561 if (layer_->is<FillLayer>()) { in setFilter() 1562 layer_->as<FillLayer>()->setFilter(filter_); in setFilter() 1637 if (layer_->is<FillLayer>()) { in getFilter() 1638 filter_ = layer_->as<FillLayer>()->getFilter(); in getFilter()
|