Home
last modified time | relevance | path

Searched refs:VectorSource (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 Dvector_source.cpp13 VectorSource::VectorSource(std::string id, variant<std::string, Tileset> urlOrTileset_) in VectorSource() function in mbgl::style::VectorSource
18 VectorSource::~VectorSource() = default;
20 const VectorSource::Impl& VectorSource::impl() const { in impl()
24 const variant<std::string, Tileset>& VectorSource::getURLOrTileset() const { in getURLOrTileset()
28 optional<std::string> VectorSource::getURL() const { in getURL()
36 void VectorSource::loadDescription(FileSource& fileSource) { in loadDescription()
H A Dvector_source_impl.cpp6 VectorSource::Impl::Impl(std::string id_) in Impl()
10 VectorSource::Impl::Impl(const Impl& other, Tileset tileset_) in Impl()
15 optional<Tileset> VectorSource::Impl::getTileset() const { in getTileset()
19 optional<std::string> VectorSource::Impl::getAttribution() const { in getAttribution()
H A Dvector_source_impl.hpp9 class VectorSource::Impl : public Source::Impl {
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/sources/
H A Dvector_source.hpp13 class VectorSource : public Source { class
15 VectorSource(std::string id, variant<std::string, Tileset> urlOrTileset);
16 ~VectorSource() final;
32 inline bool Source::is<VectorSource>() const { in is()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/sources/
H A Drender_vector_source.cpp14 RenderVectorSource::RenderVectorSource(Immutable<style::VectorSource::Impl> impl_) in RenderVectorSource()
19 const style::VectorSource::Impl& RenderVectorSource::impl() const { in impl()
20 return static_cast<const style::VectorSource::Impl&>(*baseImpl); in impl()
H A Drender_vector_source.hpp11 RenderVectorSource(Immutable<style::VectorSource::Impl>);
40 const style::VectorSource::Impl& impl() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dsource.hpp18 class VectorSource;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_source.cpp20 return std::make_unique<RenderVectorSource>(staticImmutableCast<VectorSource::Impl>(impl)); in create()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/storage/
H A Doffline_download.cpp104 const auto& vectorSource = *source->as<VectorSource>(); in getStatus()
195 const auto& vectorSource = *source->as<VectorSource>(); in activateDownload()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dsource.cpp89 return { std::make_unique<VectorSource>(id, std::move(*urlOrTileset)) }; in convertVectorSource()