Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
GrGradientBitmapCache::Entry Struct Reference

Public Member Functions

 Entry (const void *buffer, size_t size, const SkBitmap &bm)
 
 ~Entry ()
 
bool equals (const void *buffer, size_t size) const
 

Public Attributes

EntryfPrev
 
EntryfNext
 
void * fBuffer
 
size_t fSize
 
SkBitmap fBitmap
 

Detailed Description

Definition at line 23 of file GrGradientBitmapCache.cpp.

Constructor & Destructor Documentation

◆ Entry()

GrGradientBitmapCache::Entry::Entry ( const void *  buffer,
size_t  size,
const SkBitmap bm 
)
inline

Definition at line 31 of file GrGradientBitmapCache.cpp.

32 : fPrev(nullptr),
33 fNext(nullptr),
34 fBitmap(bm) {
36 fSize = size;
37 memcpy(fBuffer, buffer, size);
38 }
static void * sk_malloc_throw(size_t size)
Definition SkMalloc.h:67
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

◆ ~Entry()

GrGradientBitmapCache::Entry::~Entry ( )
inline

Definition at line 40 of file GrGradientBitmapCache.cpp.

40{ sk_free(fBuffer); }
SK_API void sk_free(void *)

Member Function Documentation

◆ equals()

bool GrGradientBitmapCache::Entry::equals ( const void *  buffer,
size_t  size 
) const
inline

Definition at line 42 of file GrGradientBitmapCache.cpp.

42 {
43 return (fSize == size) && !memcmp(fBuffer, buffer, size);
44 }

Member Data Documentation

◆ fBitmap

SkBitmap GrGradientBitmapCache::Entry::fBitmap

Definition at line 29 of file GrGradientBitmapCache.cpp.

◆ fBuffer

void* GrGradientBitmapCache::Entry::fBuffer

Definition at line 27 of file GrGradientBitmapCache.cpp.

◆ fNext

Entry* GrGradientBitmapCache::Entry::fNext

Definition at line 25 of file GrGradientBitmapCache.cpp.

◆ fPrev

Entry* GrGradientBitmapCache::Entry::fPrev

Definition at line 24 of file GrGradientBitmapCache.cpp.

◆ fSize

size_t GrGradientBitmapCache::Entry::fSize

Definition at line 28 of file GrGradientBitmapCache.cpp.


The documentation for this struct was generated from the following file: