51 fHead = fTail =
nullptr;
70 entry->fPrev->fNext = entry->fNext;
77 entry->fNext->fPrev = entry->fPrev;
85void GrGradientBitmapCache::attachToHead(
Entry* entry)
const {
86 entry->fPrev =
nullptr;
97 AutoValidate av(
this);
103 *bm = entry->fBitmap;
106 this->release(entry);
107 this->attachToHead(entry);
110 entry = entry->fNext;
115void GrGradientBitmapCache::add(
const void*
buffer,
size_t len,
const SkBitmap& bm) {
116 AutoValidate av(
this);
118 if (fEntryCount == fMaxEntries) {
120 delete this->release(fTail);
125 this->attachToHead(entry);
134 bool colorsAreOpaque,
143 p.append(SkRasterPipelineOp::seed_shader);
147 &
p, &alloc, colorsAreOpaque, interpolation, intermediateColorSpace, dstColorSpace);
148 p.appendStore(
bitmap->colorType(), &ctx);
149 p.run(0, 0,
bitmap->width(), 1);
155 bool colorsAreOpaque,
166 static_assert(
sizeof(
SkPMColor4f) %
sizeof(int32_t) == 0,
"");
169 const int keyCount = 1 +
175 (dstColorSpace ? 2 : 0);
182 buffer += colorsAsIntCount;
183 for (
int i = 1;
i <
count - 1;
i++) {
186 *
buffer++ =
static_cast<int32_t
>(alphaType);
201 size_t size = keyCount *
sizeof(int32_t);
205 this->fillGradient(
colors,
210 intermediateColorSpace,
222void GrGradientBitmapCache::validate()
const {
223 SkASSERT(fEntryCount >= 0 && fEntryCount <= fMaxEntries);
225 if (fEntryCount > 0) {
229 if (fEntryCount == 1) {
235 Entry* entry = fHead;
239 entry = entry->fNext;
246 entry = entry->fPrev;
static void info(const char *fmt,...) SK_PRINTF_LIKE(1
static float next(float f)
SkRGBA4f< kPremul_SkAlphaType > SkPMColor4f
static uint32_t SkFloat2Bits(float value)
static SkColorType colorType(AImageDecoder *decoder, const AImageDecoderHeaderInfo *headerInfo)
SK_API void sk_free(void *)
static void * sk_malloc_throw(size_t size)
void getGradient(const SkPMColor4f *colors, const SkScalar *positions, int count, bool colorsAreOpaque, const SkGradientShader::Interpolation &interpolation, const SkColorSpace *intermediateColorSpace, const SkColorSpace *dstColorSpace, SkColorType colorType, SkAlphaType alphaType, SkBitmap *bitmap)
GrGradientBitmapCache(int maxEntries, int resolution)
uint32_t toXYZD50Hash() const
uint32_t transferFnHash() const
static void AppendGradientFillStages(SkRasterPipeline *p, SkArenaAlloc *alloc, const SkPMColor4f *colors, const SkScalar *positions, int count)
static void AppendInterpolatedToDstStages(SkRasterPipeline *p, SkArenaAlloc *alloc, bool colorsAreOpaque, const Interpolation &interpolation, const SkColorSpace *intermediateColorSpace, const SkColorSpace *dstColorSpace)
static SkMatrix Scale(SkScalar sx, SkScalar sy)
static float max(float r, float g, float b)
PODArray< SkColor > colors
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
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
bool equals(const void *buffer, size_t size) const
Entry(const void *buffer, size_t size, const SkBitmap &bm)
static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at)