Home
last modified time | relevance | path

Searched refs:BackgroundLayer (Results 1 – 11 of 11) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/
H A Dbackground_layer.cpp10 BackgroundLayer::BackgroundLayer(const std::string& layerID) in BackgroundLayer() function in mbgl::style::BackgroundLayer
14 BackgroundLayer::BackgroundLayer(Immutable<Impl> impl_) in BackgroundLayer() function in mbgl::style::BackgroundLayer
18 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 …]
H A Dbackground_layer_impl.cpp6 bool BackgroundLayer::Impl::hasLayoutDifference(const Layer::Impl&) const { in hasLayoutDifference()
H A Dbackground_layer_impl.hpp10 class BackgroundLayer::Impl : public Layer::Impl {
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/
H A Dbackground_layer.hpp17 class BackgroundLayer : public Layer { class
19 BackgroundLayer(const std::string& layerID);
20 ~BackgroundLayer() final;
55 BackgroundLayer(Immutable<Impl>);
60 inline bool Layer::is<BackgroundLayer>() const { in is()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dmake_property_setters.hpp227 …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()
H A Dlayer.cpp122 return { std::make_unique<BackgroundLayer>(id) }; in convertBackgroundLayer()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_background_layer.cpp16 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()
H A Drender_background_layer.hpp11 RenderBackgroundLayer(Immutable<style::BackgroundLayer::Impl>);
25 const style::BackgroundLayer::Impl& impl() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dlayer.hpp23 class BackgroundLayer;
90 return std::forward<V>(visitor)(*as<BackgroundLayer>()); in accept()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_layer.cpp36 … return std::make_unique<RenderBackgroundLayer>(staticImmutableCast<BackgroundLayer::Impl>(impl)); in create()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dstyle_impl.cpp153 bool operator()(BackgroundLayer&) { return false; } in operator ()()