Home
last modified time | relevance | path

Searched refs:fMaxBytes (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/gpu/
DGrResourceCache.cpp52 fMaxBytes(maxBytes) { in GrResourceCache()
92 *maxResourceBytes = fMaxBytes; in getLimits()
97 bool smaller = (maxResources < fMaxCount) || (maxResourceBytes < fMaxBytes); in setLimits()
100 fMaxBytes = maxResourceBytes; in setLimits()
304 if (fEntryCount <= fMaxCount && fEntryBytes <= fMaxBytes) { in purgeAsNeeded()
342 int savedMaxBytes = fMaxBytes; in purgeAllUnlocked()
344 fMaxBytes = (size_t) -1; in purgeAllUnlocked()
361 fMaxBytes = savedMaxBytes; in purgeAllUnlocked()
446 SkDebugf("Budget: %d items %d bytes\n", fMaxCount, fMaxBytes); in printStats()
DGrResourceCache.h343 size_t fMaxBytes; variable