Home
last modified time | relevance | path

Searched refs:RasterSource (Results 1 – 14 of 14) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/sources/
H A Draster_source.cpp12 RasterSource::RasterSource(std::string id, variant<std::string, Tileset> urlOrTileset_, uint16_t ti… in RasterSource() function in mbgl::style::RasterSource
17 RasterSource::~RasterSource() = default;
19 const RasterSource::Impl& RasterSource::impl() const { in impl()
23 const variant<std::string, Tileset>& RasterSource::getURLOrTileset() const { in getURLOrTileset()
27 optional<std::string> RasterSource::getURL() const { in getURL()
35 uint16_t RasterSource::getTileSize() const { in getTileSize()
39 void RasterSource::loadDescription(FileSource& fileSource) { in loadDescription()
H A Draster_source_impl.cpp6 RasterSource::Impl::Impl(SourceType sourceType, std::string id_, uint16_t tileSize_) in Impl()
11 RasterSource::Impl::Impl(const Impl& other, Tileset tileset_) in Impl()
17 uint16_t RasterSource::Impl::getTileSize() const { in getTileSize()
21 optional<Tileset> RasterSource::Impl::getTileset() const { in getTileset()
25 optional<std::string> RasterSource::Impl::getAttribution() const { in getAttribution()
H A Draster_dem_source.cpp13 : RasterSource(std::move(id), urlOrTileset_, tileSize, SourceType::RasterDEM){ in RasterDEMSource()
H A Draster_source_impl.hpp9 class RasterSource::Impl : public Source::Impl {
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/sources/
H A Draster_source.hpp13 class RasterSource : public Source { class
15RasterSource(std::string id, variant<std::string, Tileset> urlOrTileset, uint16_t tileSize, Source…
16 ~RasterSource() override;
34 inline bool Source::is<RasterSource>() const { in is()
H A Draster_dem_source.hpp13 class RasterDEMSource : public RasterSource {
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/sources/
H A Drender_raster_source.cpp10 RenderRasterSource::RenderRasterSource(Immutable<style::RasterSource::Impl> impl_) in RenderRasterSource()
15 const style::RasterSource::Impl& RenderRasterSource::impl() const { in impl()
16 return static_cast<const style::RasterSource::Impl&>(*baseImpl); in impl()
H A Drender_raster_source.hpp11 RenderRasterSource(Immutable<style::RasterSource::Impl>);
40 const style::RasterSource::Impl& impl() const;
H A Drender_raster_dem_source.hpp11 RenderRasterDEMSource(Immutable<style::RasterSource::Impl>);
44 const style::RasterSource::Impl& impl() const;
H A Drender_raster_dem_source.cpp13 RenderRasterDEMSource::RenderRasterDEMSource(Immutable<style::RasterSource::Impl> impl_) in RenderRasterDEMSource()
18 const style::RasterSource::Impl& RenderRasterDEMSource::impl() const { in impl()
19 return static_cast<const style::RasterSource::Impl&>(*baseImpl); in impl()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_source.cpp22 return std::make_unique<RenderRasterSource>(staticImmutableCast<RasterSource::Impl>(impl)); in create()
24 … return std::make_unique<RenderRasterDEMSource>(staticImmutableCast<RasterSource::Impl>(impl)); in create()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dsource.hpp19 class RasterSource;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/storage/
H A Doffline_download.cpp110 const auto& rasterSource = *source->as<RasterSource>(); in getStatus()
201 const auto& rasterSource = *source->as<RasterSource>(); in activateDownload()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dsource.cpp56 return { std::make_unique<RasterSource>(id, std::move(*urlOrTileset), tileSize) }; in convertRasterSource()