aboutsummaryrefslogtreecommitdiffstats
path: root/test/algorithm/update_renderables.test.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Refactor tileCover to support lod tilesMikko Pulkki2020-04-061-124/+134
|
* [core] Add unit testsAlexander Shalamov2020-04-011-0/+63
|
* [build] generate header maps instead of -files.txtKonstantin Käfer2019-01-091-1/+1
|
* [core] don't break ascent in the overscaled tile phaseKonstantin Käfer2018-09-211-0/+50
| | | | We optimize our updateRenderable algorithm by breaking ascent when we've already checked a certain tile. So far, we've compared the UnwrappedTileIDs, but they don't include the overscale component. When ascending through overscaled tile IDs, we've stopped the ascent too early, when we should've kept the search going.
* [core] make forcing cache/network only more explicitKonstantin Käfer2017-10-121-115/+115
| | | | | | Previously, we used the existence of a `prior*` field in the Resource object as an indication for whether we should consult the cache or not. However, this is prone to error, since a failed cache lookup won't set any prior fields. Therefore, we manually set `priorExpires` to 0. This in turn triggered another bug where generated wrong expiration timestamps when the server response we got was expired (or expired between sending and receiving). This commit changes the flags so that we can now explicitly request CacheOnly/NetworkOnly (or All) loading methods, rather than the implicit Optional/Required naming scheme.
* [build] make Xcode use the correct compiler when it is installed in a ↵Konstantin Käfer2017-07-181-4/+0
| | | | non-standard location
* [core] add unused default template parameter to keep Xcode 9's Clang from ↵Konstantin Käfer2017-07-131-0/+6
| | | | crashing
* [core] Change OverscaledTileID to also include a "wrap" value.Chris Loer2017-07-111-494/+492
| | | | | This prevents TilePyramid from sharing wrapped copies of tiles. This is necessary because two wrapped tiles no longer share the same CollisionTile.
* [core] Render parent raster tiles when ideal tile can't be loadedKonstantin Käfer2017-04-201-0/+33
|
* [test] add .test.cpp suffix to test case filesKonstantin Käfer2016-09-281-0/+1228