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 D | raster_layer.cpp | 10 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 D | raster_layer_impl.cpp | 6 bool RasterLayer::Impl::hasLayoutDifference(const Layer::Impl&) const { in hasLayoutDifference()
|
| H A D | raster_layer_impl.hpp | 10 class RasterLayer::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 | 197 …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 D | layer.cpp | 101 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 D | raster_layer.hpp | 17 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 D | render_raster_layer.hpp | 11 RenderRasterLayer(Immutable<style::RasterLayer::Impl>); 26 const style::RasterLayer::Impl& impl() const;
|
| H A D | render_raster_layer.cpp | 16 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 D | layer.hpp | 21 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 D | render_layer.cpp | 32 return std::make_unique<RenderRasterLayer>(staticImmutableCast<RasterLayer::Impl>(impl)); in create()
|