summaryrefslogtreecommitdiff
path: root/src/mbgl/text/glyph_manager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [core] Modularize FileSource codebase (#15768)Alexander Shalamov2020-01-131-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [core] Introduce FileSourceManager and use it for default platform impl - Add `FileSourceManager` interface that provides access to `FileSource` instances and means of registering / unregistering `FileSource` factories - Split `DefaultFileSource` into smaller parts - Add `DatabaseFileSource` interface and it's default implementation - Remove inter-dependencies between concrete `FileSource` classes * [build] Add files to next build system * [core] Add generic property setters / getters * [core] Remove setOnlineStatus from OnlineFileSource interface * [core] Hide threading implementation details from DatabaseFileSource interface * [core] Make DB file source methods virtual * [core] Add documentation for DatabaseFileSource and rename one method * [core] Use simple callback instead of ActorRef * [core] Remove ActorRef from OnlineFileSource public header * [core] Add callback to FileSource::forward async API * [core] Pass OfflineRegionDefinition by value * [core] Update tests to use modular file sources * [core] Update unit tests * [core] Update unit tests after rebase * [core] Backport low prio fix for cached requests * [core] Backport pack database * [core] Return removed factory from unRegisterFileSourceFactory * [core] Rename shadowed args in onlinefilesource * [core] Remove simple std::function callback aliases * [core] Expose online file source property keys in public header file * [test-runner] Add proxy file source test runner * [cache] Update mbgl-cache utility to use new file source * [metrics] Rebaseline binary size metrics * [offline] Update offline utility * [core] Update changelog
* [core] Don't overwrite locally renderable glyphs with remote glyphsAsheem Mamoowala2019-08-211-2/+4
|
* [core] Fix use after std::move detected by clang-tidyThiago Marcos P. Santos2019-08-191-2/+3
| | | | | Detected by the bot being setup at https://github.com/mapbox/mapbox-gl-native/pull/15385.
* [core] Create glyph manager at renderer construction timeMikhail Pozdnyakov2019-05-141-6/+5
| | | | Avoid unnecessary glyph manager presence check in `Renderer::Impl::()`.
* [core] don't use <boost/functional/hash.hpp> to avoid <locale> includeKonstantin Käfer2018-10-231-1/+1
|
* [core] Initial implementation of 'format' expressionChris Loer2018-10-151-1/+1
|
* [core] Evict unused font stacks from GlyphManagerJohn Firebaugh2018-08-171-0/+7
|
* [core] Enable local glyph generation using TinySDF.Chris Loer2017-12-111-3/+17
| | | | | | | - Platform-specific LocalGlyphRasterizer is responsible for deciding which glyphs to rasterize locally and for implementing the rasterization. - Default platform implementation doesn't locally generate any glyphs -> no behavior change - Unit test uses StubLocalGlyphRasterizer, which returns a single fixed bitmap for all CJK glyphs - Rename glyph_loader.test to glyph_manager.test
* [core] Update glyph requestors _before_ requesting from file sourceBruno de Oliveira Abinader2017-10-091-7/+4
|
* [core] Per-bucket glyph atlasesJohn Firebaugh2017-06-131-0/+145