Searched refs:BackgroundLayer (Results 1 – 11 of 11) sorted by relevance
10 BackgroundLayer::BackgroundLayer(const std::string& layerID) in BackgroundLayer() function in mbgl::style::BackgroundLayer14 BackgroundLayer::BackgroundLayer(Immutable<Impl> impl_) in BackgroundLayer() function in mbgl::style::BackgroundLayer18 BackgroundLayer::~BackgroundLayer() = default;20 const BackgroundLayer::Impl& BackgroundLayer::impl() const { in impl()24 Mutable<BackgroundLayer::Impl> BackgroundLayer::mutableImpl() const { in mutableImpl()28 std::unique_ptr<Layer> BackgroundLayer::cloneRef(const std::string& id_) const { in cloneRef()32 return std::make_unique<BackgroundLayer>(std::move(impl_)); in cloneRef()35 void BackgroundLayer::Impl::stringifyLayout(rapidjson::Writer<rapidjson::StringBuffer>&) const { in stringifyLayout()41 void BackgroundLayer::setVisibility(VisibilityType value) { in setVisibility()52 void BackgroundLayer::setMinZoom(float minZoom) { in setMinZoom()[all …]
6 bool BackgroundLayer::Impl::hasLayoutDifference(const Layer::Impl&) const { in hasLayoutDifference()
10 class BackgroundLayer::Impl : public Layer::Impl {
17 class BackgroundLayer : public Layer { class19 BackgroundLayer(const std::string& layerID);20 ~BackgroundLayer() final;55 BackgroundLayer(Immutable<Impl>);60 inline bool Layer::is<BackgroundLayer>() const { in is()
227 …result["background-color"] = &setProperty<BackgroundLayer, PropertyValue<Color>, &BackgroundLayer:… in makePaintPropertySetters()228 …result["background-color-transition"] = &setTransition<BackgroundLayer, &BackgroundLayer::setBackg… in makePaintPropertySetters()229 …result["background-pattern"] = &setProperty<BackgroundLayer, PropertyValue<std::string>, &Backgrou… in makePaintPropertySetters()230 …result["background-pattern-transition"] = &setTransition<BackgroundLayer, &BackgroundLayer::setBac… in makePaintPropertySetters()231 …result["background-opacity"] = &setProperty<BackgroundLayer, PropertyValue<float>, &BackgroundLaye… in makePaintPropertySetters()232 …result["background-opacity-transition"] = &setTransition<BackgroundLayer, &BackgroundLayer::setBac… in makePaintPropertySetters()
122 return { std::make_unique<BackgroundLayer>(id) }; in convertBackgroundLayer()
16 RenderBackgroundLayer::RenderBackgroundLayer(Immutable<style::BackgroundLayer::Impl> _impl) in RenderBackgroundLayer()21 const style::BackgroundLayer::Impl& RenderBackgroundLayer::impl() const { in impl()22 return static_cast<const style::BackgroundLayer::Impl&>(*baseImpl); in impl()
11 RenderBackgroundLayer(Immutable<style::BackgroundLayer::Impl>);25 const style::BackgroundLayer::Impl& impl() const;
23 class BackgroundLayer;90 return std::forward<V>(visitor)(*as<BackgroundLayer>()); in accept()
36 … return std::make_unique<RenderBackgroundLayer>(staticImmutableCast<BackgroundLayer::Impl>(impl)); in create()
153 bool operator()(BackgroundLayer&) { return false; } in operator ()()