Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/sources/
H A Dcustom_geometry_source.cpp14 CustomGeometrySource::CustomGeometrySource(std::string id, in CustomGeometrySource() function in mbgl::style::CustomGeometrySource
15 const CustomGeometrySource::Options options) in CustomGeometrySource()
16 : Source(makeMutable<CustomGeometrySource::Impl>(std::move(id), options)), in CustomGeometrySource()
20 CustomGeometrySource::~CustomGeometrySource() = default;
22 const CustomGeometrySource::Impl& CustomGeometrySource::impl() const { in impl()
23 return static_cast<const CustomGeometrySource::Impl&>(*baseImpl); in impl()
26 void CustomGeometrySource::loadDescription(FileSource&) { in loadDescription()
27 baseImpl = makeMutable<CustomGeometrySource::Impl>(impl(), loader->self()); in loadDescription()
31 void CustomGeometrySource::setTileData(const CanonicalTileID& tileID, in setTileData()
36 void CustomGeometrySource::invalidateTile(const CanonicalTileID& tileID) { in invalidateTile()
[all …]
H A Dcustom_geometry_source_impl.cpp7 CustomGeometrySource::Impl::Impl(std::string id_, in Impl()
8 const CustomGeometrySource::Options options) in Impl()
15 CustomGeometrySource::Impl::Impl(const Impl& impl, ActorRef<CustomTileLoader> loaderRef_) in Impl()
23 optional<std::string> CustomGeometrySource::Impl::getAttribution() const { in getAttribution()
27 CustomGeometrySource::TileOptions CustomGeometrySource::Impl::getTileOptions() const { in getTileOptions()
31 Range<uint8_t> CustomGeometrySource::Impl::getZoomRange() const { in getZoomRange()
35 optional<ActorRef<CustomTileLoader>> CustomGeometrySource::Impl::getTileLoader() const { in getTileLoader()
H A Dcustom_geometry_source_impl.hpp11 class CustomGeometrySource::Impl : public Source::Impl {
13 Impl(std::string id, CustomGeometrySource::Options options);
18 CustomGeometrySource::TileOptions getTileOptions() const;
23 CustomGeometrySource::TileOptions tileOptions;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/sources/
H A Dcustom_geometry_source.hpp22 class CustomGeometrySource : public Source { class
39 CustomGeometrySource(std::string id, CustomGeometrySource::Options options);
40 ~CustomGeometrySource() final;
53 inline bool Source::is<CustomGeometrySource>() const { in is()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/conversion/
H A Dcustom_geometry_source_options.hpp11 struct Converter<CustomGeometrySource::Options> {
14 optional<CustomGeometrySource::Options> operator()(const V& value, Error& error) const { in operator ()()
15 CustomGeometrySource::Options options; in operator ()()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/sources/
H A Drender_custom_geometry_source.cpp13 RenderCustomGeometrySource::RenderCustomGeometrySource(Immutable<style::CustomGeometrySource::Impl>… in RenderCustomGeometrySource()
18 const style::CustomGeometrySource::Impl& RenderCustomGeometrySource::impl() const { in impl()
19 return static_cast<const style::CustomGeometrySource::Impl&>(*baseImpl); in impl()
H A Drender_custom_geometry_source.hpp11 RenderCustomGeometrySource(Immutable<style::CustomGeometrySource::Impl>);
40 const style::CustomGeometrySource::Impl& impl() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/
H A Dcustom_geometry_tile.hpp22 const style::CustomGeometrySource::TileOptions,
38 const style::CustomGeometrySource::TileOptions options;
H A Dcustom_geometry_tile.cpp17 const style::CustomGeometrySource::TileOptions options_, in CustomGeometryTile()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_source.cpp35 … std::make_unique<RenderCustomGeometrySource>(staticImmutableCast<CustomGeometrySource::Impl>(impl… in create()