Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
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
#define SkASSERT(cond)
Definition SkAssert.h:116
SkRGBA4f< kPremul_SkAlphaType > SkPMColor4f
static uint32_t SkFloat2Bits(float value)
Definition SkFloatBits.h:41
static SkColorType colorType(AImageDecoder *decoder, const AImageDecoderHeaderInfo *headerInfo)
uint32_t toXYZD50Hash() const
uint32_t transferFnHash() const
static const uint8_t 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
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: