Home
last modified time | relevance | path

Searched refs:HillshadeLayer (Results 1 – 10 of 10) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/
H A Dhillshade_layer.cpp10 HillshadeLayer::HillshadeLayer(const std::string& layerID, const std::string& sourceID) in HillshadeLayer() function in mbgl::style::HillshadeLayer
14 HillshadeLayer::HillshadeLayer(Immutable<Impl> impl_) in HillshadeLayer() function in mbgl::style::HillshadeLayer
18 HillshadeLayer::~HillshadeLayer() = default;
20 const HillshadeLayer::Impl& HillshadeLayer::impl() const { in impl()
24 Mutable<HillshadeLayer::Impl> HillshadeLayer::mutableImpl() const { in mutableImpl()
28 std::unique_ptr<Layer> HillshadeLayer::cloneRef(const std::string& id_) const { in cloneRef()
32 return std::make_unique<HillshadeLayer>(std::move(impl_)); in cloneRef()
35 void HillshadeLayer::Impl::stringifyLayout(rapidjson::Writer<rapidjson::StringBuffer>&) const { in stringifyLayout()
40 const std::string& HillshadeLayer::getSourceID() const { in getSourceID()
47 void HillshadeLayer::setVisibility(VisibilityType value) { in setVisibility()
[all …]
H A Dhillshade_layer_impl.cpp6 bool HillshadeLayer::Impl::hasLayoutDifference(const Layer::Impl&) const { in hasLayoutDifference()
H A Dhillshade_layer_impl.hpp10 class HillshadeLayer::Impl : public Layer::Impl {
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dmake_property_setters.hpp214 …hillshade-illumination-direction"] = &setProperty<HillshadeLayer, PropertyValue<float>, &Hillshade… in makePaintPropertySetters()
215 …llshade-illumination-direction-transition"] = &setTransition<HillshadeLayer, &HillshadeLayer::setH… in makePaintPropertySetters()
216 …illumination-anchor"] = &setProperty<HillshadeLayer, PropertyValue<HillshadeIlluminationAnchorType… in makePaintPropertySetters()
217 …"hillshade-illumination-anchor-transition"] = &setTransition<HillshadeLayer, &HillshadeLayer::setH… in makePaintPropertySetters()
218 …result["hillshade-exaggeration"] = &setProperty<HillshadeLayer, PropertyValue<float>, &HillshadeLa… in makePaintPropertySetters()
219 …result["hillshade-exaggeration-transition"] = &setTransition<HillshadeLayer, &HillshadeLayer::setH… in makePaintPropertySetters()
220 …result["hillshade-shadow-color"] = &setProperty<HillshadeLayer, PropertyValue<Color>, &HillshadeLa… in makePaintPropertySetters()
221 …result["hillshade-shadow-color-transition"] = &setTransition<HillshadeLayer, &HillshadeLayer::setH… in makePaintPropertySetters()
222 …esult["hillshade-highlight-color"] = &setProperty<HillshadeLayer, PropertyValue<Color>, &Hillshade… in makePaintPropertySetters()
223 …result["hillshade-highlight-color-transition"] = &setTransition<HillshadeLayer, &HillshadeLayer::s… in makePaintPropertySetters()
[all …]
H A Dlayer.cpp117 return { std::make_unique<HillshadeLayer>(id, *source) }; in convertHillshadeLayer()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/
H A Dhillshade_layer.hpp17 class HillshadeLayer : public Layer { class
19 HillshadeLayer(const std::string& layerID, const std::string& sourceID);
20 ~HillshadeLayer() final;
76 HillshadeLayer(Immutable<Impl>);
81 inline bool Layer::is<HillshadeLayer>() const { in is()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_hillshade_layer.hpp12 RenderHillshadeLayer(Immutable<style::HillshadeLayer::Impl>);
27 const style::HillshadeLayer::Impl& impl() const;
H A Drender_hillshade_layer.cpp18 RenderHillshadeLayer::RenderHillshadeLayer(Immutable<style::HillshadeLayer::Impl> _impl) in RenderHillshadeLayer()
23 const style::HillshadeLayer::Impl& RenderHillshadeLayer::impl() const { in impl()
24 return static_cast<const style::HillshadeLayer::Impl&>(*baseImpl); in impl()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dlayer.hpp22 class HillshadeLayer;
92 return std::forward<V>(visitor)(*as<HillshadeLayer>()); in accept()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_layer.cpp34 … return std::make_unique<RenderHillshadeLayer>(staticImmutableCast<HillshadeLayer::Impl>(impl)); in create()