#include <GlyphVector.h>
Definition at line 42 of file GlyphVector.h.
◆ GlyphVector()
Definition at line 32 of file GlyphVector.cpp.
33 : fStrikePromise{std::move(strikePromise)}
36}
SkSpan< const Glyph * > glyphs() const
◆ flatten()
void sktext::gpu::GlyphVector::flatten |
( |
SkWriteBuffer & |
buffer | ) |
const |
Definition at line 84 of file GlyphVector.cpp.
84 {
85
88
89
90 buffer.write32(SkTo<int32_t>(fGlyphs.size()));
91 for (
Variant variant : fGlyphs) {
92 buffer.writeUInt(variant.packedGlyphID.value());
93 }
94}
void flatten(SkWriteBuffer &buffer) const
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 buffer
◆ glyphs()
SkSpan< const Glyph * > sktext::gpu::GlyphVector::glyphs |
( |
| ) |
const |
Definition at line 96 of file GlyphVector.cpp.
96 {
97 return SkSpan(
reinterpret_cast<const Glyph**
>(fGlyphs.data()), fGlyphs.size());
98}
SkSpan(Container &&) -> SkSpan< std::remove_pointer_t< decltype(std::data(std::declval< Container >()))> >
◆ GlyphVectorSize()
static size_t sktext::gpu::GlyphVector::GlyphVectorSize |
( |
size_t |
count | ) |
|
|
inlinestatic |
◆ Make()
◆ MakeFromBuffer()
Definition at line 50 of file GlyphVector.cpp.
52 {
53 std::optional<SkStrikePromise> promise =
55 if (!
buffer.validate(promise.has_value())) {
56 return std::nullopt;
57 }
58
59 int32_t glyphCount =
buffer.read32();
60
61 if (!
buffer.validate(glyphCount > 0)) {
62 return std::nullopt;
63 }
64
65
66 static constexpr int kMaxCount = (
int)(INT_MAX /
sizeof(uint32_t));
68 return std::nullopt;
69 }
70
71
72
73 if (!
buffer.validate(glyphCount *
sizeof(uint32_t) <=
buffer.available())) {
74 return std::nullopt;
75 }
76
78 for (
int i = 0;
i < glyphCount;
i++) {
80 }
82}
static SkStrikeCache * GlobalStrikeCache()
static std::optional< SkStrikePromise > MakeFromBuffer(SkReadBuffer &buffer, const SkStrikeClient *client, SkStrikeCache *strikeCache)
static constexpr size_t kMaxCount
◆ packedGlyphIDToGlyph()
void sktext::gpu::GlyphVector::packedGlyphIDToGlyph |
( |
StrikeCache * |
cache | ) |
|
Definition at line 102 of file GlyphVector.cpp.
102 {
103 if (fTextStrike == nullptr) {
106
107
108 for (
Variant& variant : fGlyphs) {
109 variant.glyph = fTextStrike->getGlyph(variant.packedGlyphID);
110 }
111
112
114
115
117 }
118}
void verifyPinnedStrike() const
const SkStrikeSpec & strikeSpec() const
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
◆ unflattenSize()
int sktext::gpu::GlyphVector::unflattenSize |
( |
| ) |
const |
|
inline |
Definition at line 68 of file GlyphVector.h.
static size_t GlyphVectorSize(size_t count)
◆ ::skgpu::ganesh::AtlasTextOp
◆ ::skgpu::graphite::Device
◆ GlyphVectorTestingPeer
The documentation for this class was generated from the following files: