Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Classes | Public Member Functions | List of all members
SkFuchsiaFontDataCache Class Reference
Inheritance diagram for SkFuchsiaFontDataCache:
SkRefCnt SkRefCntBase

Public Member Functions

 SkFuchsiaFontDataCache ()=default
 
 ~SkFuchsiaFontDataCache ()
 
sk_sp< SkDataGetOrCreateSkData (int bufferId, const fuchsia::mem::Buffer &buffer)
 
- Public Member Functions inherited from SkRefCntBase
 SkRefCntBase ()
 
virtual ~SkRefCntBase ()
 
bool unique () const
 
void ref () const
 
void unref () const
 

Detailed Description

Definition at line 30 of file SkFontMgr_fuchsia.cpp.

Constructor & Destructor Documentation

◆ SkFuchsiaFontDataCache()

SkFuchsiaFontDataCache::SkFuchsiaFontDataCache ( )
default

◆ ~SkFuchsiaFontDataCache()

SkFuchsiaFontDataCache::~SkFuchsiaFontDataCache ( )
inline

Definition at line 33 of file SkFontMgr_fuchsia.cpp.

33{ SkASSERT(fBuffers.empty()); }
#define SkASSERT(cond)
Definition SkAssert.h:116

Member Function Documentation

◆ GetOrCreateSkData()

sk_sp< SkData > SkFuchsiaFontDataCache::GetOrCreateSkData ( int  bufferId,
const fuchsia::mem::Buffer &  buffer 
)

Definition at line 50 of file SkFontMgr_fuchsia.cpp.

51 {
52 SkAutoMutexExclusive mutexLock(fMutex);
53
54 auto iter = fBuffers.find(bufferId);
55 if (iter != fBuffers.end()) {
56 return sk_ref_sp(iter->second);
57 }
58 auto font_mgr = sk_ref_sp(this);
59
60 uint64_t size = buffer.size;
61 uintptr_t mapped_addr = 0;
62 zx_status_t status =
63 zx::vmar::root_self()->map(ZX_VM_PERM_READ, 0, buffer.vmo, 0, size, &mapped_addr);
64 if (status != ZX_OK) return nullptr;
65
66 auto context = new ReleaseSkDataContext{sk_ref_sp(this), bufferId};
68 reinterpret_cast<void*>(mapped_addr), size, ReleaseSkData, context);
69 SkASSERT(data);
70
71 fBuffers[bufferId] = data.get();
72 return data;
73}
sk_sp< T > sk_ref_sp(T *obj)
Definition SkRefCnt.h:381
static sk_sp< SkData > MakeWithProc(const void *ptr, size_t length, ReleaseProc proc, void *ctx)
Definition SkData.cpp:128
static const uint8_t buffer[]
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot data
Definition switches.h:41
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

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