summaryrefslogtreecommitdiff
path: root/src/mbgl/text/glyph_atlas.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/text/glyph_atlas.hpp')
-rw-r--r--src/mbgl/text/glyph_atlas.hpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mbgl/text/glyph_atlas.hpp b/src/mbgl/text/glyph_atlas.hpp
index 2003c8e593..ef1ddc85ed 100644
--- a/src/mbgl/text/glyph_atlas.hpp
+++ b/src/mbgl/text/glyph_atlas.hpp
@@ -39,8 +39,6 @@ public:
GlyphAtlas(Size, FileSource&);
~GlyphAtlas();
- std::map<uint32_t, SDFGlyph>& getGlyphSet(const FontStack&);
-
// Workers send a `getGlyphs` message to the main thread once they have determined
// which glyphs they will need. Invoking this method will increment reference
// counts for all the glyphs in `GlyphDependencies`. If all glyphs are already
@@ -93,12 +91,6 @@ private:
std::unordered_map<FontStack, Entry, FontStackHash> entries;
- // Only used by GlyphAtlasTest
- friend class ::GlyphAtlasTest;
- bool hasGlyphRanges(const FontStack&, const GlyphRangeSet&) const;
- bool hasGlyphRange(const FontStack&, const GlyphRange&) const;
- bool rangeIsParsed(const std::map<GlyphRange, GlyphRequest>&, const GlyphRange&) const;
-
GlyphRequest& requestRange(Entry&, const FontStack&, const GlyphRange&);
void processResponse(const Response&, const FontStack&, const GlyphRange&);