Flutter Engine
The Flutter Engine
Classes | Public Member Functions | List of all members
GrGradientBitmapCache Class Reference

#include <GrGradientBitmapCache.h>

Inheritance diagram for GrGradientBitmapCache:
SkNoncopyable

Classes

struct  Entry
 

Public Member Functions

 GrGradientBitmapCache (int maxEntries, int resolution)
 
 ~GrGradientBitmapCache ()
 
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)
 

Detailed Description

Definition at line 20 of file GrGradientBitmapCache.h.

Constructor & Destructor Documentation

◆ GrGradientBitmapCache()

GrGradientBitmapCache::GrGradientBitmapCache ( int  maxEntries,
int  resolution 
)

Definition at line 47 of file GrGradientBitmapCache.cpp.

48 : fMaxEntries(max)
49 , fResolution(res) {
50 fEntryCount = 0;
51 fHead = fTail = nullptr;
52
53 this->validate();
54}
static float max(float r, float g, float b)
Definition: hsl.cpp:49

◆ ~GrGradientBitmapCache()

GrGradientBitmapCache::~GrGradientBitmapCache ( )

Definition at line 56 of file GrGradientBitmapCache.cpp.

56 {
57 this->validate();
58
59 Entry* entry = fHead;
60 while (entry) {
61 Entry* next = entry->fNext;
62 delete entry;
63 entry = next;
64 }
65}
static float next(float f)

Member Function Documentation

◆ getGradient()

void GrGradientBitmapCache::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 
)

Definition at line 152 of file GrGradientBitmapCache.cpp.

161 {
162 // Build our key:
163 // [numColors + colors[] + positions[] + alphaType + colorType + interpolation + dstColorSpace]
164 // NOTE: colorsAreOpaque is redundant with the actual colors. intermediateColorSpace is fully
165 // determined by interpolation and dstColorSpace.
166 static_assert(sizeof(SkPMColor4f) % sizeof(int32_t) == 0, "");
167 const int colorsAsIntCount = count * sizeof(SkPMColor4f) / sizeof(int32_t);
168 SkASSERT(count > 2); // Otherwise, we should have used the single-interval colorizer
169 const int keyCount = 1 + // count
170 colorsAsIntCount + // colors
171 (count - 2) + // positions
172 1 + // alphaType
173 1 + // colorType
174 3 + // interpolation
175 (dstColorSpace ? 2 : 0); // dstColorSpace
176
177 AutoSTMalloc<64, int32_t> storage(keyCount);
178 int32_t* buffer = storage.get();
179
180 *buffer++ = count;
181 memcpy(buffer, colors, count * sizeof(SkPMColor4f));
182 buffer += colorsAsIntCount;
183 for (int i = 1; i < count - 1; i++) {
184 *buffer++ = SkFloat2Bits(positions[i]);
185 }
186 *buffer++ = static_cast<int32_t>(alphaType);
187 *buffer++ = static_cast<int32_t>(colorType);
188 *buffer++ = static_cast<int32_t>(interpolation.fInPremul);
189 *buffer++ = static_cast<int32_t>(interpolation.fColorSpace);
190 *buffer++ = static_cast<int32_t>(interpolation.fHueMethod);
191 if (dstColorSpace) {
192 *buffer++ = dstColorSpace->toXYZD50Hash();
193 *buffer++ = dstColorSpace->transferFnHash();
194 }
195 SkASSERT(buffer - storage.get() == keyCount);
196
197 ///////////////////////////////////
198
199 // acquire lock for checking/adding to cache
200 SkAutoMutexExclusive ama(fMutex);
201 size_t size = keyCount * sizeof(int32_t);
202 if (!this->find(storage.get(), size, bitmap)) {
203 SkImageInfo info = SkImageInfo::Make(fResolution, 1, colorType, alphaType);
204 bitmap->allocPixels(info);
205 this->fillGradient(colors,
206 positions,
207 count,
208 colorsAreOpaque,
209 interpolation,
210 intermediateColorSpace,
211 dstColorSpace,
212 bitmap);
213 bitmap->setImmutable();
214 this->add(storage.get(), size, *bitmap);
215 }
216}
static void info(const char *fmt,...) SK_PRINTF_LIKE(1
Definition: DM.cpp:213
int count
Definition: FontMgrTest.cpp:50
#define SkASSERT(cond)
Definition: SkAssert.h:116
SkRGBA4f< kPremul_SkAlphaType > SkPMColor4f
Definition: SkColorData.h:376
static uint32_t SkFloat2Bits(float value)
Definition: SkFloatBits.h:41
static SkColorType colorType(AImageDecoder *decoder, const AImageDecoderHeaderInfo *headerInfo)
uint32_t toXYZD50Hash() const
Definition: SkColorSpace.h:161
uint32_t transferFnHash() const
Definition: SkColorSpace.h:221
PODArray< SkColor > colors
Definition: SkRecords.h:276
Definition: bitmap.py:1
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
Definition: switches.h:126
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
Definition: switches.h:259
static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at)

The documentation for this class was generated from the following files: