Searched refs:CustomTileLoader (Results 1 – 8 of 8) sorted by relevance
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/ |
| H A D | custom_tile_loader.cpp | 8 CustomTileLoader::CustomTileLoader(const TileFunction& fetchTileFn, const TileFunction& cancelTileF… in CustomTileLoader() function in mbgl::style::CustomTileLoader 13 void CustomTileLoader::fetchTile(const OverscaledTileID& tileID, ActorRef<CustomGeometryTile> tileR… in fetchTile() 36 void CustomTileLoader::cancelTile(const OverscaledTileID& tileID) { in cancelTile() 42 void CustomTileLoader::removeTile(const OverscaledTileID& tileID) { in removeTile() 58 void CustomTileLoader::setTileData(const CanonicalTileID& tileID, const GeoJSON& data) { in setTileData() 70 void CustomTileLoader::invalidateTile(const CanonicalTileID& tileID) { in invalidateTile() 82 void CustomTileLoader::invalidateRegion(const LatLngBounds& bounds, Range<uint8_t> ) { in invalidateRegion() 103 void CustomTileLoader::invokeTileFetch(const CanonicalTileID& tileID) { in invokeTileFetch() 109 void CustomTileLoader::invokeTileCancel(const CanonicalTileID& tileID) { in invokeTileCancel()
|
| H A D | custom_tile_loader.hpp | 16 class CustomTileLoader : private util::noncopyable { class 21 CustomTileLoader(const TileFunction& fetchTileFn, const TileFunction& cancelTileFn);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/sources/ |
| H A D | custom_geometry_source.cpp | 17 …loader(std::make_unique<Actor<CustomTileLoader>>(*sharedThreadPool(), options.fetchTileFunction, o… in CustomGeometrySource() 33 loader->self().invoke(&CustomTileLoader::setTileData, tileID, data); in setTileData() 37 loader->self().invoke(&CustomTileLoader::invalidateTile, tileID); in invalidateTile() 41 loader->self().invoke(&CustomTileLoader::invalidateRegion, bounds, impl().getZoomRange()); in invalidateRegion()
|
| H A D | custom_geometry_source_impl.hpp | 14 Impl(const Impl&, ActorRef<CustomTileLoader>); 20 optional<ActorRef<CustomTileLoader>> getTileLoader() const; 25 optional<ActorRef<CustomTileLoader>> loaderRef;
|
| H A D | custom_geometry_source_impl.cpp | 15 CustomGeometrySource::Impl::Impl(const Impl& impl, ActorRef<CustomTileLoader> loaderRef_) in Impl() 35 optional<ActorRef<CustomTileLoader>> CustomGeometrySource::Impl::getTileLoader() const { in getTileLoader()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/ |
| H A D | custom_geometry_tile.hpp | 14 class CustomTileLoader; 23 ActorRef<style::CustomTileLoader> loader); 39 ActorRef<style::CustomTileLoader> loader;
|
| H A D | custom_geometry_tile.cpp | 18 ActorRef<style::CustomTileLoader> loader_) in CustomGeometryTile() 28 loader.invoke(&style::CustomTileLoader::removeTile, id); in ~CustomGeometryTile() 60 loader.invoke(&style::CustomTileLoader::fetchTile, id, actorRef); in setNecessity() 63 loader.invoke(&style::CustomTileLoader::cancelTile, id); in setNecessity()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/sources/ |
| H A D | custom_geometry_source.hpp | 20 class CustomTileLoader; 49 std::unique_ptr<Actor<CustomTileLoader>> loader;
|