Home
last modified time | relevance | path

Searched refs:RasterLayer (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 Draster_layer.cpp10 RasterLayer::RasterLayer(const std::string& layerID, const std::string& sourceID) in RasterLayer() function in mbgl::style::RasterLayer
14 RasterLayer::RasterLayer(Immutable<Impl> impl_) in RasterLayer() function in mbgl::style::RasterLayer
18 RasterLayer::~RasterLayer() = default;
20 const RasterLayer::Impl& RasterLayer::impl() const { in impl()
24 Mutable<RasterLayer::Impl> RasterLayer::mutableImpl() const { in mutableImpl()
28 std::unique_ptr<Layer> RasterLayer::cloneRef(const std::string& id_) const { in cloneRef()
32 return std::make_unique<RasterLayer>(std::move(impl_)); in cloneRef()
35 void RasterLayer::Impl::stringifyLayout(rapidjson::Writer<rapidjson::StringBuffer>&) const { in stringifyLayout()
40 const std::string& RasterLayer::getSourceID() const { in getSourceID()
47 void RasterLayer::setVisibility(VisibilityType value) { in setVisibility()
[all …]
H A Draster_layer_impl.cpp6 bool RasterLayer::Impl::hasLayoutDifference(const Layer::Impl&) const { in hasLayoutDifference()
H A Draster_layer_impl.hpp10 class RasterLayer::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.hpp197 …result["raster-opacity"] = &setProperty<RasterLayer, PropertyValue<float>, &RasterLayer::setRaster… in makePaintPropertySetters()
198 …result["raster-opacity-transition"] = &setTransition<RasterLayer, &RasterLayer::setRasterOpacityTr… in makePaintPropertySetters()
199 …result["raster-hue-rotate"] = &setProperty<RasterLayer, PropertyValue<float>, &RasterLayer::setRas… in makePaintPropertySetters()
200 …result["raster-hue-rotate-transition"] = &setTransition<RasterLayer, &RasterLayer::setRasterHueRot… in makePaintPropertySetters()
201 …result["raster-brightness-min"] = &setProperty<RasterLayer, PropertyValue<float>, &RasterLayer::se… in makePaintPropertySetters()
202 …result["raster-brightness-min-transition"] = &setTransition<RasterLayer, &RasterLayer::setRasterBr… in makePaintPropertySetters()
203 …result["raster-brightness-max"] = &setProperty<RasterLayer, PropertyValue<float>, &RasterLayer::se… in makePaintPropertySetters()
204 …result["raster-brightness-max-transition"] = &setTransition<RasterLayer, &RasterLayer::setRasterBr… in makePaintPropertySetters()
205 …result["raster-saturation"] = &setProperty<RasterLayer, PropertyValue<float>, &RasterLayer::setRas… in makePaintPropertySetters()
206 …result["raster-saturation-transition"] = &setTransition<RasterLayer, &RasterLayer::setRasterSatura… in makePaintPropertySetters()
[all …]
H A Dlayer.cpp101 return { std::make_unique<RasterLayer>(id, *source) }; in convertRasterLayer()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/
H A Draster_layer.hpp17 class RasterLayer : public Layer { class
19 RasterLayer(const std::string& layerID, const std::string& sourceID);
20 ~RasterLayer() final;
88 RasterLayer(Immutable<Impl>);
93 inline bool Layer::is<RasterLayer>() const { in is()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_raster_layer.hpp11 RenderRasterLayer(Immutable<style::RasterLayer::Impl>);
26 const style::RasterLayer::Impl& impl() const;
H A Drender_raster_layer.cpp16 RenderRasterLayer::RenderRasterLayer(Immutable<style::RasterLayer::Impl> _impl) in RenderRasterLayer()
21 const style::RasterLayer::Impl& RenderRasterLayer::impl() const { in impl()
22 return static_cast<const style::RasterLayer::Impl&>(*baseImpl); in impl()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dlayer.hpp21 class RasterLayer;
88 return std::forward<V>(visitor)(*as<RasterLayer>()); in accept()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_layer.cpp32 return std::make_unique<RenderRasterLayer>(staticImmutableCast<RasterLayer::Impl>(impl)); in create()