summaryrefslogtreecommitdiff
path: root/test/algorithm/mock.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/algorithm/mock.hpp')
-rw-r--r--test/algorithm/mock.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/algorithm/mock.hpp b/test/algorithm/mock.hpp
index b8eb020105..dea2162b04 100644
--- a/test/algorithm/mock.hpp
+++ b/test/algorithm/mock.hpp
@@ -33,12 +33,17 @@ struct MockTileData {
bool isRenderable() const {
return renderable;
}
+
+ bool isFullyRenderable() const {
+ return fullyRenderable;
+ }
bool isLoaded() const {
return loaded;
}
bool renderable = false;
+ bool fullyRenderable = false;
bool triedOptional = false;
bool loaded = false;
const mbgl::OverscaledTileID tileID;