summaryrefslogtreecommitdiff
path: root/test/test.gypi
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2016-03-08 13:49:54 +0100
committerKonstantin Käfer <mail@kkaefer.com>2016-05-10 14:50:56 +0200
commit82ebcfa14e2eb8d13c3eca9c2eb5adaa229f4182 (patch)
treef9a29146dba576d3cbde6dee47d563b256013b39 /test/test.gypi
parent6a9a8e200863787b18b9f8aa921e1189616ac918 (diff)
downloadqtlocation-mapboxgl-82ebcfa14e2eb8d13c3eca9c2eb5adaa229f4182.tar.gz
[core] introduce three distinct TileID types
* CanonicalTileID has z, x, and y, with x/y being within the bounds z defines. z can be anything from 0-32. * OverscaledTileID is composed of a z value, and a canonical tile. The z value indicates the zoom level the tile is intended for. It is primarily used for indexing overscaled data tiles. * UnwrappedTileID is composed of a wrap value, and a canonical tile. The wrap value is used for representing tiles to the left and right of the main (0/0/0 based) tile pyramid. It is primarily used for indicating the position a tile should be rendered at.
Diffstat (limited to 'test/test.gypi')
-rw-r--r--test/test.gypi2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test.gypi b/test/test.gypi
index 1e136389e8..7c1d48f2fa 100644
--- a/test/test.gypi
+++ b/test/test.gypi
@@ -50,6 +50,8 @@
'math/minmax.cpp',
'math/clamp.cpp',
+ 'tile/tile_id.cpp',
+
'storage/offline.cpp',
'storage/offline_database.cpp',
'storage/offline_download.cpp',