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:
John Reck
2019-10-08 23:28:41 +00:00
parent 8a207962ec
commit f846aeec9d
2 changed files with 4 additions and 4 deletions

View File

@@ -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() {

View File

@@ -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);
}
}