Home
last modified time | relevance | path

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

/aosp14/frameworks/base/libs/hwui/renderthread/
H A DCacheManager.cpp45 mMaxSurfaceArea = static_cast<size_t>((DeviceInfo::getWidth() * DeviceInfo::getHeight()) * in CacheManager()
61 mMaxResourceBytes = mMaxSurfaceArea * mMemoryPolicy.surfaceSizeMultiplier; in setupCacheLimits()
66 mMaxGpuFontAtlasBytes = nextPowerOfTwo(mMaxSurfaceArea); in setupCacheLimits()
191 mMaxSurfaceArea, mMaxResourceBytes / 1000000.f, in dumpMemoryUsage()
348 if (frameArea > mMaxSurfaceArea) { in notifyNextFrameSize()
349 mMaxSurfaceArea = frameArea; in notifyNextFrameSize()
H A DCacheManager.h88 size_t mMaxSurfaceArea = 0; variable