summaryrefslogtreecommitdiff
path: root/platform/default/src/mbgl/text/local_glyph_rasterizer.cpp
blob: 6eea2f94d88f4df7b5540bc7b4e1e113eab54e23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <mbgl/text/local_glyph_rasterizer.hpp>

namespace mbgl {

class LocalGlyphRasterizer::Impl {
};

LocalGlyphRasterizer::LocalGlyphRasterizer(const optional<std::string>&) {}

LocalGlyphRasterizer::~LocalGlyphRasterizer()
{}

bool LocalGlyphRasterizer::canRasterizeGlyph(const FontStack&, GlyphID) {
    return false;
}

Glyph LocalGlyphRasterizer::rasterizeGlyph(const FontStack&, GlyphID) {
    return Glyph();
}

} // namespace mbgl