#include <SkStrikeCache.h>
Definition at line 41 of file SkStrikeCache.h.
◆ SkStrikeCache()
SkStrikeCache::SkStrikeCache |
( |
| ) |
|
|
default |
◆ createStrike()
Definition at line 125 of file SkStrikeCache.cpp.
128 {
130 return this->internalCreateStrike(strikeSpec, maybeMetrics, std::move(pinner));
131}
◆ Dump()
void SkStrikeCache::Dump |
( |
| ) |
|
|
static |
Definition at line 57 of file SkStrikeCache.cpp.
57 {
58 SkDebugf(
"GlyphCache [ used budget ]\n");
63
64 auto visitor = [](
const SkStrike& strike) {
65 strike.dump();
66 };
67
69}
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static int GetFontCacheCountLimit()
static size_t GetFontCacheLimit()
static int GetFontCacheCountUsed()
static size_t GetFontCacheUsed()
static SkStrikeCache * GlobalStrikeCache()
◆ DumpMemoryStatistics()
Definition at line 71 of file SkStrikeCache.cpp.
71 {
73 dump->dumpNumericValue(kGlyphCacheDumpName,
"budget_size",
"bytes",
75 dump->dumpNumericValue(kGlyphCacheDumpName,
"glyph_count",
"objects",
77 dump->dumpNumericValue(kGlyphCacheDumpName,
"budget_glyph_count",
"objects",
79
81 dump->setMemoryBacking(kGlyphCacheDumpName,
"malloc",
nullptr);
82 return;
83 }
84
85 auto visitor = [&](
const SkStrike& strike) {
86 strike.dumpMemoryStatistics(
dump);
87 };
88
90}
static void dump(const float m[20], SkYUVColorSpace cs, bool rgb2yuv)
◆ findOrCreateScopedStrike()
◆ findOrCreateStrike()
auto SkStrikeCache::findOrCreateStrike |
( |
const SkStrikeSpec & |
strikeSpec | ) |
|
Definition at line 39 of file SkStrikeCache.cpp.
39 {
42 if (strike == nullptr) {
43 strike = this->internalCreateStrike(strikeSpec);
44 }
45 this->internalPurge();
46 return strike;
47}
const SkDescriptor & descriptor() const
◆ findStrike()
◆ getCacheCountLimit()
int SkStrikeCache::getCacheCountLimit |
( |
| ) |
const |
◆ getCacheCountUsed()
int SkStrikeCache::getCacheCountUsed |
( |
| ) |
const |
◆ getCacheSizeLimit()
size_t SkStrikeCache::getCacheSizeLimit |
( |
| ) |
const |
◆ getTotalMemoryUsed()
size_t SkStrikeCache::getTotalMemoryUsed |
( |
| ) |
const |
◆ GlobalStrikeCache()
Definition at line 30 of file SkStrikeCache.cpp.
30 {
34 }
37}
bool gSkUseThreadLocalStrikeCaches_IAcknowledgeThisIsIncrediblyExperimental
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace Enable an endless trace buffer The default is a ring buffer This is useful when very old events need to viewed For during application launch Memory usage will continue to grow indefinitely however Start app with an specific route defined on the framework flutter assets Path to the Flutter assets directory enable service port Allow the VM service to fallback to automatic port selection if binding to a specified port fails trace Trace early application lifecycle Automatically switches to an endless trace buffer trace skia Filters out all Skia trace event categories except those that are specified in this comma separated list dump skp on shader Automatically dump the skp that triggers new shader compilations This is useful for writing custom ShaderWarmUp to reduce jank By this is not enabled to reduce the overhead purge persistent cache
◆ PurgeAll()
void SkStrikeCache::PurgeAll |
( |
| ) |
|
|
static |
◆ purgeAll()
void SkStrikeCache::purgeAll |
( |
| ) |
|
Definition at line 149 of file SkStrikeCache.cpp.
149 {
151 this->internalPurge(fTotalMemoryUsed, true);
152}
◆ purgePinned()
void SkStrikeCache::purgePinned |
( |
size_t |
minBytesNeeded = 0 | ) |
|
Definition at line 144 of file SkStrikeCache.cpp.
144 {
146 this->internalPurge(minBytesNeeded, true);
147}
◆ setCacheCountLimit()
int SkStrikeCache::setCacheCountLimit |
( |
int |
limit | ) |
|
Definition at line 183 of file SkStrikeCache.cpp.
183 {
184 if (newCount < 0) {
185 newCount = 0;
186 }
187
189
190 int prevCount = fCacheCountLimit;
191 fCacheCountLimit = newCount;
192 this->internalPurge();
193 return prevCount;
194}
◆ setCacheSizeLimit()
size_t SkStrikeCache::setCacheSizeLimit |
( |
size_t |
limit | ) |
|
Definition at line 169 of file SkStrikeCache.cpp.
169 {
171
172 size_t prevLimit = fCacheSizeLimit;
173 fCacheSizeLimit = newLimit;
174 this->internalPurge();
175 return prevLimit;
176}
◆ SkStrike
The documentation for this class was generated from the following files: