summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorChris Loer <chris.loer@gmail.com>2017-11-27 12:50:28 -0800
committerChris Loer <chris.loer@mapbox.com>2017-12-18 12:17:22 -0800
commitf1f2ebb019980d4c53d563d3495e016d50e23945 (patch)
tree62dd4a29a1e2c4680d59713cc2f6d101a1dab22b /platform
parenta53818a10b821218b86478e048a3884db93f7c00 (diff)
downloadqtlocation-mapboxgl-f1f2ebb019980d4c53d563d3495e016d50e23945.tar.gz
[core] Hook LocalGlyphRasterizer "font family" configuration up to Renderer
Diffstat (limited to 'platform')
-rw-r--r--platform/default/local_glyph_rasterizer.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/platform/default/local_glyph_rasterizer.cpp b/platform/default/local_glyph_rasterizer.cpp
index 7ace6cbfb1..7866f29420 100644
--- a/platform/default/local_glyph_rasterizer.cpp
+++ b/platform/default/local_glyph_rasterizer.cpp
@@ -2,6 +2,15 @@
namespace mbgl {
+class LocalGlyphRasterizer::Impl {
+};
+
+LocalGlyphRasterizer::LocalGlyphRasterizer(const optional<std::string>)
+{}
+
+LocalGlyphRasterizer::~LocalGlyphRasterizer()
+{}
+
bool LocalGlyphRasterizer::canRasterizeGlyph(const FontStack&, GlyphID) {
return false;
}