Revert "Drop all caches in UI_HIDDEN"
This reverts commit 8a207962ec.
Bug: 142301356
Test: none, speculative
Reason for revert: Seems to break alarm?
Change-Id: Ia1680d1a937b596297c2eab3e54476daf9589347
This commit is contained in:
@@ -135,7 +135,7 @@ void CacheManager::trimStaleResources() {
|
||||
return;
|
||||
}
|
||||
mGrContext->flush();
|
||||
mGrContext->performDeferredCleanup(std::chrono::seconds(30));
|
||||
mGrContext->purgeResourcesNotUsedInMs(std::chrono::seconds(30));
|
||||
}
|
||||
|
||||
sp<skiapipeline::VectorDrawableAtlas> CacheManager::acquireVectorDrawableAtlas() {
|
||||
|
||||
@@ -646,11 +646,11 @@ void CanvasContext::trimMemory(RenderThread& thread, int level) {
|
||||
ATRACE_CALL();
|
||||
if (!thread.getGrContext()) return;
|
||||
ATRACE_CALL();
|
||||
if (level >= TRIM_MEMORY_UI_HIDDEN) {
|
||||
thread.cacheManager().trimMemory(CacheManager::TrimMemoryMode::Complete);
|
||||
}
|
||||
if (level >= TRIM_MEMORY_COMPLETE) {
|
||||
thread.cacheManager().trimMemory(CacheManager::TrimMemoryMode::Complete);
|
||||
thread.destroyRenderingContext();
|
||||
} else if (level >= TRIM_MEMORY_UI_HIDDEN) {
|
||||
thread.cacheManager().trimMemory(CacheManager::TrimMemoryMode::UiHidden);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user