Home
last modified time | relevance | path

Searched refs:coords_ (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/sources/
H A Dimage_source_impl.cpp7 ImageSource::Impl::Impl(std::string id_, std::array<LatLng, 4> coords_) in Impl() argument
9 coords(std::move(coords_)) { in Impl()
12 ImageSource::Impl::Impl(const Impl& other, std::array<LatLng, 4> coords_) in Impl() argument
14 coords(std::move(coords_)), in Impl()
H A Dimage_source.cpp11 ImageSource::ImageSource(std::string id, const std::array<LatLng, 4> coords_) in ImageSource() argument
12 : Source(makeMutable<Impl>(std::move(id), coords_)) { in ImageSource()
21 void ImageSource::setCoordinates(const std::array<LatLng, 4>& coords_) { in setCoordinates() argument
22 baseImpl = makeMutable<Impl>(impl(), coords_); in setCoordinates()