Home
last modified time | relevance | path

Searched refs:DEMTileNeighbors (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/sources/
H A Drender_raster_dem_source.cpp68 std::map<DEMTileNeighbors, DEMTileNeighbors> opposites = { in onTileChanged()
69 { DEMTileNeighbors::Left, DEMTileNeighbors::Right }, in onTileChanged()
70 { DEMTileNeighbors::Right, DEMTileNeighbors::Left }, in onTileChanged()
71 { DEMTileNeighbors::TopLeft, DEMTileNeighbors::BottomRight }, in onTileChanged()
72 { DEMTileNeighbors::TopCenter, DEMTileNeighbors::BottomCenter }, in onTileChanged()
73 { DEMTileNeighbors::TopRight, DEMTileNeighbors::BottomLeft }, in onTileChanged()
74 { DEMTileNeighbors::BottomRight, DEMTileNeighbors::TopLeft }, in onTileChanged()
75 { DEMTileNeighbors::BottomCenter, DEMTileNeighbors:: TopCenter }, in onTileChanged()
76 { DEMTileNeighbors::BottomLeft, DEMTileNeighbors::TopRight } in onTileChanged()
79 if (tile.isRenderable() && demtile.neighboringTiles != DEMTileNeighbors::Complete) { in onTileChanged()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/
H A Draster_dem_tile.hpp14 enum class DEMTileNeighbors : uint8_t { enum
46 inline DEMTileNeighbors operator|(DEMTileNeighbors a, DEMTileNeighbors b) { in operator |()
47 return static_cast<DEMTileNeighbors>(int(a) | int(b)); in operator |()
50 inline DEMTileNeighbors operator&(DEMTileNeighbors a, DEMTileNeighbors b) { in operator &()
51 return static_cast<DEMTileNeighbors>(int(a) & int(b)); in operator &()
54 inline bool operator!=(DEMTileNeighbors a, DEMTileNeighbors b) { in operator !=()
79 void backfillBorder(const RasterDEMTile& borderTile, const DEMTileNeighbors mask);
83 DEMTileNeighbors neighboringTiles = DEMTileNeighbors::Empty;
H A Draster_dem_tile.cpp27 neighboringTiles = neighboringTiles | DEMTileNeighbors::NoUpper; in RasterDEMTile()
32 neighboringTiles = neighboringTiles | DEMTileNeighbors::NoLower; in RasterDEMTile()
87 void RasterDEMTile::backfillBorder(const RasterDEMTile& borderTile, const DEMTileNeighbors mask) { in backfillBorder()