Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrResourceCache.h102 int getMaxResourceCount() const { return fMaxCount; } in getMaxResourceCount()
261 bool overBudget() const { return fBudgetedBytes > fMaxBytes || fBudgetedCount > fMaxCount; } in overBudget()
264 return fBudgetedBytes+bytes <= fMaxBytes && fBudgetedCount+1 <= fMaxCount; in wouldFit()
321 int fMaxCount; variable
DGrResourceCache.cpp63 , fMaxCount(kDefaultMaxCount) in GrResourceCache()
91 fMaxCount = count; in setLimits()
383 if (fBudgetedCount < fMaxCount && in notifyCntReachedZero()
DGrTest.cpp221 float countUtilization = (100.f * fBudgetedCount) / fMaxCount; in dumpStats()
224 out->appendf("Budget: %d items %d bytes\n", fMaxCount, (int)fMaxBytes); in dumpStats()