#include <SkStrikeSpec.h>
|
static SkStrikeSpec | MakeMask (const SkFont &font, const SkPaint &paint, const SkSurfaceProps &surfaceProps, SkScalerContextFlags scalerContextFlags, const SkMatrix &deviceMatrix) |
|
static SkStrikeSpec | MakeTransformMask (const SkFont &font, const SkPaint &paint, const SkSurfaceProps &surfaceProps, SkScalerContextFlags scalerContextFlags, const SkMatrix &deviceMatrix) |
|
static std::tuple< SkStrikeSpec, SkScalar > | MakePath (const SkFont &font, const SkPaint &paint, const SkSurfaceProps &surfaceProps, SkScalerContextFlags scalerContextFlags) |
|
static std::tuple< SkStrikeSpec, SkScalar > | MakeCanonicalized (const SkFont &font, const SkPaint *paint=nullptr) |
|
static SkStrikeSpec | MakeWithNoDevice (const SkFont &font, const SkPaint *paint=nullptr) |
|
static SkStrikeSpec | MakePDFVector (const SkTypeface &typeface, int *size) |
|
static bool | ShouldDrawAsPath (const SkPaint &paint, const SkFont &font, const SkMatrix &matrix) |
|
Definition at line 39 of file SkStrikeSpec.h.
◆ SkStrikeSpec() [1/3]
Definition at line 25 of file SkStrikeSpec.cpp.
const SkTypeface & typeface() const
const SkDescriptor & descriptor() const
◆ SkStrikeSpec() [2/3]
◆ SkStrikeSpec() [3/3]
◆ ~SkStrikeSpec()
SkStrikeSpec::~SkStrikeSpec |
( |
| ) |
|
|
default |
◆ createScalerContext()
std::unique_ptr< SkScalerContext > SkStrikeSpec::createScalerContext |
( |
| ) |
const |
|
inline |
Definition at line 91 of file SkStrikeSpec.h.
91 {
94 }
SkDescriptor * getDesc() const
std::unique_ptr< SkScalerContext > createScalerContext(const SkScalerContextEffects &, const SkDescriptor *) const
◆ descriptor()
◆ dump()
◆ findOrCreateScopedStrike()
Definition at line 170 of file SkStrikeSpec.cpp.
171 {
172 return cache->findOrCreateScopedStrike(*
this);
173}
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
◆ findOrCreateStrike() [1/2]
Definition at line 175 of file SkStrikeSpec.cpp.
175 {
177}
sk_sp< SkStrike > findOrCreateStrike(const SkStrikeSpec &strikeSpec) SK_EXCLUDES(fLock)
static SkStrikeCache * GlobalStrikeCache()
◆ findOrCreateStrike() [2/2]
◆ MakeCanonicalized()
Definition at line 71 of file SkStrikeSpec.cpp.
72 {
74 if (
paint !=
nullptr) {
75 canonicalizedPaint = *
paint;
76 }
77
82 canonicalizedFont = pathFont.
set(
font);
83 strikeToSourceScale = pathFont->setupForAsPaths(nullptr);
84 canonicalizedPaint.
reset();
85 }
86
89 strikeToSourceScale};
90}
@ kFakeGammaAndBoostContrast
static const SkMatrix & I()
static bool ShouldDrawAsPath(const SkPaint &paint, const SkFont &font, const SkMatrix &matrix)
SkStrikeSpec(const SkDescriptor &descriptor, sk_sp< SkTypeface > typeface)
font
Font Metadata and Metrics.
◆ MakeMask()
◆ MakePath()
Definition at line 51 of file SkStrikeSpec.cpp.
54 {
55
56
59
60
61 pathFont.setSubpixel(false);
62
63
64
65 SkScalar strikeToSourceScale = pathFont.setupForAsPaths(&pathPaint);
66
68 strikeToSourceScale};
69}
◆ MakePDFVector()
Definition at line 134 of file SkStrikeSpec.cpp.
134 {
140 if (unitsPerEm <= 0) {
141 unitsPerEm = 1024;
142 }
145 }
147
153}
@ kNone
glyph outlines unchanged
sk_sp< T > sk_ref_sp(T *obj)
@ kAlias
no transparent pixels on glyph edges
int getUnitsPerEm() const
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
◆ MakeTransformMask()
Definition at line 41 of file SkStrikeSpec.cpp.
45 {
47 sourceFont.setSubpixel(false);
48 return SkStrikeSpec(sourceFont,
paint, surfaceProps, scalerContextFlags, deviceMatrix);
49}
◆ MakeWithNoDevice()
◆ operator=() [1/2]
◆ operator=() [2/2]
◆ ShouldDrawAsPath()
bool SkStrikeSpec::ShouldDrawAsPath |
( |
const SkPaint & |
paint, |
|
|
const SkFont & |
font, |
|
|
const SkMatrix & |
matrix |
|
) |
| |
|
static |
Definition at line 102 of file SkStrikeSpec.cpp.
103 {
104
105
107 return true;
108 }
109
110
111 if (viewMatrix.hasPerspective()) {
112 return true;
113 }
114
117
118
119 constexpr SkScalar memoryLimit = 256;
120 constexpr SkScalar maxSizeSquared = memoryLimit * memoryLimit;
121
122 auto distance = [&textMatrix](
int XIndex,
int YIndex) {
123 return textMatrix[XIndex] * textMatrix[XIndex] + textMatrix[YIndex] * textMatrix[YIndex];
124 };
125
128}
static SkMatrix MakeTextMatrix(SkScalar size, SkScalar scaleX, SkScalar skewX)
static constexpr int kMScaleX
horizontal scale factor
SkMatrix & postConcat(const SkMatrix &other)
static constexpr int kMSkewY
vertical skew factor
static constexpr int kMScaleY
vertical scale factor
static constexpr int kMSkewX
horizontal skew factor
@ kStroke_Style
set to stroke geometry
◆ typeface()
const SkTypeface & SkStrikeSpec::typeface |
( |
| ) |
const |
|
inline |
The documentation for this class was generated from the following files: