#pragma once #include #include #include #include namespace mbgl { using GlyphRange = std::pair; struct GlyphRangeHash { std::size_t operator()(const GlyphRange& glyphRange) const { return boost::hash_value(glyphRange); } }; using GlyphRangeSet = std::unordered_set; constexpr uint32_t GLYPHS_PER_GLYPH_RANGE = 256; constexpr uint32_t GLYPH_RANGES_PER_FONT_STACK = 256; } // end namespace mbgl