Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/tile/
H A Dtile_id.hpp123 inline CanonicalTileID CanonicalTileID::scaledTo(uint8_t targetZ) const { in scaledTo()
124 if (targetZ <= z) { in scaledTo()
125 return { targetZ, x >> (z - targetZ), y >> (z - targetZ) }; // parent or same in scaledTo()
127 return { targetZ, x << (targetZ - z), y << (targetZ - z) }; // child in scaledTo()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/map/
H A Dtransform_state.cpp294 float targetZ = 0; in screenCoordinateToLatLng() local
323 double t = z0 == z1 ? 0 : (targetZ - z0) / (z1 - z0); in screenCoordinateToLatLng()