Home
last modified time | relevance | path

Searched refs:CustomLayer (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 Dcustom_layer.cpp8 CustomLayer::CustomLayer(const std::string& layerID, in CustomLayer() function in mbgl::style::CustomLayer
13 CustomLayer::~CustomLayer() = default;
15 const CustomLayer::Impl& CustomLayer::impl() const { in impl()
19 Mutable<CustomLayer::Impl> CustomLayer::mutableImpl() const { in mutableImpl()
23 std::unique_ptr<Layer> CustomLayer::cloneRef(const std::string&) const { in cloneRef()
30 void CustomLayer::setVisibility(VisibilityType value) { in setVisibility()
41 void CustomLayer::setMinZoom(float minZoom) { in setMinZoom()
47 void CustomLayer::setMaxZoom(float maxZoom) { in setMaxZoom()
54 bool Layer::is<CustomLayer>() const { in is()
H A Dcustom_layer_impl.cpp6 CustomLayer::Impl::Impl(const std::string& id_, in Impl()
12 bool CustomLayer::Impl::hasLayoutDifference(const Layer::Impl&) const { in hasLayoutDifference()
16 void CustomLayer::Impl::stringifyLayout(rapidjson::Writer<rapidjson::StringBuffer>&) const { in stringifyLayout()
H A Dcustom_layer_impl.hpp14 class CustomLayer::Impl : public Layer::Impl {
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/
H A Dcustom_layer.hpp64 class CustomLayer : public Layer { class
66 CustomLayer(const std::string& id,
69 ~CustomLayer() final;
86 CustomLayer(const CustomLayer&) = delete;
90 bool Layer::is<CustomLayer>() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_custom_layer.cpp15 RenderCustomLayer::RenderCustomLayer(Immutable<style::CustomLayer::Impl> _impl) in RenderCustomLayer()
30 const CustomLayer::Impl& RenderCustomLayer::impl() const { in impl()
31 return static_cast<const CustomLayer::Impl&>(*baseImpl); in impl()
H A Drender_custom_layer.hpp10 RenderCustomLayer(Immutable<style::CustomLayer::Impl>);
20 const style::CustomLayer::Impl& impl() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dlayer.hpp24 class CustomLayer;
94 return std::forward<V>(visitor)(*as<CustomLayer>()); in accept()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_layer.cpp38 return std::make_unique<RenderCustomLayer>(staticImmutableCast<CustomLayer::Impl>(impl)); in create()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dstyle_impl.cpp154 bool operator()(CustomLayer&) { return false; } in operator ()()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dqmapboxgl.cpp1420 d_ptr->mapObj->getStyle().addLayer(std::make_unique<mbgl::style::CustomLayer>( in addCustomLayer()