Home
last modified time | relevance | path

Searched refs:glyphID (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/text/
H A Dglyph_manager.cpp34 for (const auto& glyphID : glyphIDs) { in getGlyphs() local
35 if (localGlyphRasterizer->canRasterizeGlyph(fontStack, glyphID)) { in getGlyphs()
36 if (entry.glyphs.find(glyphID) == entry.glyphs.end()) { in getGlyphs()
37 … entry.glyphs.emplace(glyphID, makeMutable<Glyph>(generateLocalSDF(fontStack, glyphID))); in getGlyphs()
40 ranges.insert(getGlyphRange(glyphID)); in getGlyphs()
61 Glyph GlyphManager::generateLocalSDF(const FontStack& fontStack, GlyphID glyphID) { in generateLocalSDF() argument
62 Glyph local = localGlyphRasterizer->rasterizeGlyph(fontStack, glyphID); in generateLocalSDF()
135 for (const auto& glyphID : glyphIDs) { in notify() local
136 auto it = entry.glyphs.find(glyphID); in notify()
140 glyphs.emplace(glyphID, std::experimental::nullopt); in notify()
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/tile/
H A Dgeometry_tile_worker.cpp259 const GlyphID& glyphID = newGlyph.first; in onGlyphsAvailable() local
262 if (pendingGlyphIDs.erase(glyphID)) { in onGlyphsAvailable()
263 glyphs.emplace(glyphID, std::move(glyph)); in onGlyphsAvailable()
282 for (auto glyphID : fontDependencies.second) { in requestNewGlyphs() local
283 …if (fontGlyphs == glyphMap.end() || fontGlyphs->second.find(glyphID) == fontGlyphs->second.end()) { in requestNewGlyphs()
284 pendingGlyphDependencies[fontDependencies.first].insert(glyphID); in requestNewGlyphs()