Go to the source code of this file.
◆ maskFormatToShift()
Definition at line 106 of file SkMask.cpp.
106 {
110}
static const int gMaskFormatToShift[]
uint32_t uint32_t * format
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
@ kBW_Format
1bit per pixel mask (e.g. monochrome)
◆ safeMul32()
static int32_t safeMul32 |
( |
int32_t |
a, |
|
|
int32_t |
b |
|
) |
| |
|
static |
returns the product if it is positive and fits in 31 bits. Otherwise this returns 0.
Definition at line 22 of file SkMask.cpp.
22 {
24 if (
size > 0 && SkTFitsIn<int32_t>(
size)) {
26 }
27 return 0;
28}
static int64_t sk_64_mul(int64_t a, int64_t b)
◆ gMaskFormatToShift
const int gMaskFormatToShift[] |
|
static |