Home
last modified time | relevance | path

Searched refs:ImageSource (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 Dimage_source.cpp11 ImageSource::ImageSource(std::string id, const std::array<LatLng, 4> coords_) in ImageSource() function in mbgl::style::ImageSource
15 ImageSource::~ImageSource() = default;
17 const ImageSource::Impl& ImageSource::impl() const { in impl()
21 void ImageSource::setCoordinates(const std::array<LatLng, 4>& coords_) { in setCoordinates()
26 std::array<LatLng, 4> ImageSource::getCoordinates() const { in getCoordinates()
30 void ImageSource::setURL(const std::string& url_) { in setURL()
40 void ImageSource::setImage(PremultipliedImage&& image_) { in setImage()
50 optional<std::string> ImageSource::getURL() const { in getURL()
54 void ImageSource::loadDescription(FileSource& fileSource) { in loadDescription()
H A Dimage_source_impl.cpp7 ImageSource::Impl::Impl(std::string id_, std::array<LatLng, 4> coords_) in Impl()
12 ImageSource::Impl::Impl(const Impl& other, std::array<LatLng, 4> coords_) in Impl()
18 ImageSource::Impl::Impl(const Impl& rhs, PremultipliedImage&& image_) in Impl()
23 ImageSource::Impl::~Impl() = default;
25 std::shared_ptr<PremultipliedImage> ImageSource::Impl::getImage() const { in getImage()
29 std::array<LatLng, 4> ImageSource::Impl::getCoordinates() const { in getCoordinates()
33 optional<std::string> ImageSource::Impl::getAttribution() const { in getAttribution()
H A Dimage_source_impl.hpp12 class ImageSource::Impl : public Source::Impl {
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/sources/
H A Dimage_source.hpp13 class ImageSource : public Source { class
15 ImageSource(std::string id, const std::array<LatLng, 4>);
16 ~ImageSource() override;
36 inline bool Source::is<ImageSource>() const { in is()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/sources/
H A Drender_image_source.hpp13 RenderImageSource(Immutable<style::ImageSource::Impl>);
47 const style::ImageSource::Impl& impl() const;
H A Drender_image_source.cpp19 RenderImageSource::RenderImageSource(Immutable<style::ImageSource::Impl> impl_) in RenderImageSource()
25 const style::ImageSource::Impl& RenderImageSource::impl() const { in impl()
26 return static_cast<const style::ImageSource::Impl&>(*baseImpl); in impl()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_source.cpp33 return std::make_unique<RenderImageSource>(staticImmutableCast<ImageSource::Impl>(impl)); in create()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/storage/
H A Doffline_download.cpp130 const auto& imageSource = *source->as<ImageSource>(); in getStatus()
221 const auto& imageSource = *source->as<ImageSource>(); in activateDownload()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dsource.cpp158 auto result = std::make_unique<ImageSource>(id, coordinates); in convertImageSource()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dqmapboxgl.cpp1344 auto sourceImage = source->as<ImageSource>(); in updateSource()