Home
last modified time | relevance | path

Searched refs:nextFrameHasArrived (Results 1 - 5 of 5) sorted by relevance

/third_party/skia/src/gpu/
H A DGrResourceCache.h196 void purgeAsNeeded(const std::function<bool(void)>& nextFrameHasArrived = nullptr);
225 bool overBudget(const std::function<bool(void)>& nextFrameHasArrived = nullptr) const in overBudget()
227 return fBudgetedBytes > (nextFrameHasArrived ? size_t(fMaxBytesRate * fMaxBytes) : fMaxBytes); in overBudget()
339 bool allowToPurge(const std::function<bool(void)>& nextFrameHasArrived);
358 void suppressGpuCacheBelowCertainRatio(const std::function<bool(void)>& nextFrameHasArrived);
H A DGrResourceCache.cpp1187 bool GrResourceCache::allowToPurge(const std::function<bool(void)>& nextFrameHasArrived) in allowToPurge() argument
1193 if (nextFrameHasArrived && nextFrameHasArrived()) { in allowToPurge()
1217 void GrResourceCache::purgeAsNeeded(const std::function<bool(void)>& nextFrameHasArrived) { in purgeAsNeeded() argument
1238 bool stillOverbudget = this->overBudget(nextFrameHasArrived); in purgeAsNeeded()
1239 while (stillOverbudget && fPurgeableQueue.count() && this->allowToPurge(nextFrameHasArrived)) { in purgeAsNeeded()
1247 stillOverbudget = this->overBudget(nextFrameHasArrived); in purgeAsNeeded()
1253 stillOverbudget = this->overBudget(nextFrameHasArrived); in purgeAsNeeded()
1254 while (stillOverbudget && fPurgeableQueue.count() && this->allowToPurge(nextFrameHasArrived)) { in purgeAsNeeded()
1262 stillOverbudget = this->overBudget(nextFrameHasArrived); in purgeAsNeeded()
1380 suppressGpuCacheBelowCertainRatio(const std::function<bool(void)>& nextFrameHasArrived) suppressGpuCacheBelowCertainRatio() argument
[all...]
H A DGrDirectContext.cpp662 void GrDirectContext::suppressGpuCacheBelowCertainRatio(const std::function<bool(void)>& nextFrameHasArrived) in suppressGpuCacheBelowCertainRatio() argument
671 fResourceCache->suppressGpuCacheBelowCertainRatio(nextFrameHasArrived); in suppressGpuCacheBelowCertainRatio()
/third_party/skia/src/gpu/vk/
H A DGrVkGpu.h99 static void AsyncFreeVMAMemoryBetweenFrames(std::function<bool(void)> nextFrameHasArrived);
/third_party/skia/include/gpu/
H A DGrDirectContext.h898 void suppressGpuCacheBelowCertainRatio(const std::function<bool(void)>& nextFrameHasArrived);

Completed in 9 milliseconds