summaryrefslogtreecommitdiff
path: root/src/mbgl/text/glyph_range.hpp
blob: 74afb73dfccfd1c5d5e325ce380e596e9c20c918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include <utility>
#include <cstdint>
#include <unordered_set>
#include <boost/functional/hash.hpp>

namespace mbgl {

using GlyphRange = std::pair<uint16_t, uint16_t>;

struct GlyphRangeHash {
    std::size_t operator()(const GlyphRange& glyphRange) const {
        return boost::hash_value(glyphRange);
    }
};

using GlyphRangeSet = std::unordered_set<GlyphRange, GlyphRangeHash>;

constexpr uint32_t GLYPHS_PER_GLYPH_RANGE = 256;
constexpr uint32_t GLYPH_RANGES_PER_FONT_STACK = 256;

} // end namespace mbgl