summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/tile_mask.hpp
blob: 5f24d63ba44cb363dcc5a808b8c72f760bcfecac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <mbgl/tile/tile_id.hpp>

#include <set>

namespace mbgl {

// A TileMask is a set of TileIDs that describe what part of a tile should be rendered. It omits
// those parts of the tile that are covered by other/better tiles. If the entire tile should be
// rendered, it contains the { 0, 0, 0 } tile. If it's empty, no part of the tile will be rendered.
// TileMasks are typically generated with algorithm::updateTileMasks().
using TileMask = std::set<CanonicalTileID>;

} // namespace mbgl