Home
last modified time | relevance | path

Searched refs:fontStack (Results 1 – 10 of 10) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/text/
H A Dglyph_manager.cpp29 const FontStack& fontStack = dependency.first; in getGlyphs() local
30 Entry& entry = entries[fontStack]; in getGlyphs()
35 if (localGlyphRasterizer->canRasterizeGlyph(fontStack, glyphID)) { in getGlyphs()
37 … entry.glyphs.emplace(glyphID, makeMutable<Glyph>(generateLocalSDF(fontStack, glyphID))); in getGlyphs()
49 requestRange(request, fontStack, range); in getGlyphs()
61 Glyph GlyphManager::generateLocalSDF(const FontStack& fontStack, GlyphID glyphID) { in generateLocalSDF() argument
62 Glyph local = localGlyphRasterizer->rasterizeGlyph(fontStack, glyphID); in generateLocalSDF()
67 void GlyphManager::requestRange(GlyphRequest& request, const FontStack& fontStack, const GlyphRange… in requestRange() argument
72 …request.req = fileSource.request(Resource::glyphs(glyphURL, fontStack, range), [this, fontStack, r… in requestRange()
73 processResponse(res, fontStack, range); in requestRange()
[all …]
H A Dglyph_atlas.cpp17 const FontStack& fontStack = glyphMapEntry.first; in makeGlyphAtlas() local
18 GlyphPositionMap& positions = result.positions[fontStack]; in makeGlyphAtlas()
H A Dglyph_manager.hpp46 Glyph generateLocalSDF(const FontStack& fontStack, GlyphID glyphID);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dfont_stack.cpp8 std::string fontStackToString(const FontStack& fontStack) { in fontStackToString() argument
9 return boost::algorithm::join(fontStack, ","); in fontStackToString()
12 std::size_t FontStackHash::operator()(const FontStack& fontStack) const { in operator ()()
13 return boost::hash_range(fontStack.begin(), fontStack.end()); in operator ()()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/storage/
H A Dresource.cpp79 Resource Resource::glyphs(const std::string& urlTemplate, const FontStack& fontStack, const std::pa… in glyphs() argument
84 return util::percentEncode(fontStackToString(fontStack)); in glyphs()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/
H A Dgeometry_tile_worker.cpp252 const FontStack& fontStack = newFontGlyphs.first; in onGlyphsAvailable() local
255 Glyphs& glyphs = glyphMap[fontStack]; in onGlyphsAvailable()
256 GlyphIDs& pendingGlyphIDs = pendingGlyphDependencies[fontStack]; in onGlyphsAvailable()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/layout/
H A Dsymbol_layout.cpp123 FontStack fontStack = layout.evaluate<TextFont>(zoom, ft); in SymbolLayout() local
124 GlyphIDs& dependencies = glyphDependencies[fontStack]; in SymbolLayout()
165 FontStack fontStack = layout.evaluate<TextFont>(zoom, feature); in prepare() local
167 auto glyphMapIt = glyphMap.find(fontStack); in prepare()
171 auto glyphPositionsIt = glyphPositions.find(fontStack); in prepare()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/storage/
H A Doffline_download.cpp237 for (const auto& fontStack : parser.fontStacks()) { in activateDownload() local
239 …queueResource(Resource::glyphs(parser.glyphURL, fontStack, getGlyphRange(i * GLYPHS_PER_GLYPH_RANG… in activateDownload()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/storage/
H A Dresource.hpp67 const FontStack& fontStack,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drenderer_impl.cpp851 void Renderer::Impl::onGlyphsError(const FontStack& fontStack, const GlyphRange& glyphRange, std::e… in onGlyphsError() argument
853 …glyphRange.first, glyphRange.second, fontStackToString(fontStack).c_str(), util::toString(error).c… in onGlyphsError()