Home
last modified time | relevance | path

Searched refs:OnFlushEntryRef (Results 1 – 3 of 3) sorted by relevance

/third_party/flutter/skia/src/gpu/ccpr/
DGrCCPathCache.h84 class OnFlushEntryRef : SkNoncopyable {
86 static OnFlushEntryRef OnFlushRef(GrCCPathCacheEntry*);
87 OnFlushEntryRef() = default;
88 OnFlushEntryRef(OnFlushEntryRef&& ref) : fEntry(skstd::exchange(ref.fEntry, nullptr)) {} in OnFlushEntryRef() function
89 ~OnFlushEntryRef();
95 void operator=(OnFlushEntryRef&& ref) { fEntry = skstd::exchange(ref.fEntry, nullptr); }
98 OnFlushEntryRef(GrCCPathCacheEntry* entry) : fEntry(entry) {} in OnFlushEntryRef() function
108 OnFlushEntryRef find(GrOnFlushResourceProvider*, const GrShape&,
DGrCCPathCache.cpp161 GrCCPathCache::OnFlushEntryRef GrCCPathCache::find( in find()
165 return OnFlushEntryRef(); in find()
170 return OnFlushEntryRef(); in find()
248 return OnFlushEntryRef::OnFlushRef(entry); in find()
333 GrCCPathCache::OnFlushEntryRef
334 GrCCPathCache::OnFlushEntryRef::OnFlushRef(GrCCPathCacheEntry* entry) { in OnFlushRef()
340 return OnFlushEntryRef(entry); in OnFlushRef()
343 GrCCPathCache::OnFlushEntryRef::~OnFlushEntryRef() { in ~OnFlushEntryRef()
DGrCCDrawPathsOp.h117 GrCCPathCache::OnFlushEntryRef fCacheEntry;