From 5d0334843698d6ec88bf74305baf85f1ef855f9d Mon Sep 17 00:00:00 2001 From: Stan Iliev Date: Tue, 3 Jul 2018 14:47:59 -0400 Subject: [PATCH] Fix path rendering issues Fix remaining battery icon. Disable CCPR, which seems to have caused a regression. Test: Ran SystemUI and battery icon is drawn white. Bug: skbug.com/8127 Change-Id: Ic82bce14b760a8889ea2261c44b2631dc755288f --- libs/hwui/renderthread/CacheManager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/hwui/renderthread/CacheManager.cpp b/libs/hwui/renderthread/CacheManager.cpp index b07fb2d7ae0f7..bec80b1e60119 100644 --- a/libs/hwui/renderthread/CacheManager.cpp +++ b/libs/hwui/renderthread/CacheManager.cpp @@ -134,6 +134,7 @@ void CacheManager::configureContext(GrContextOptions* contextOptions) { } contextOptions->fPersistentCache = &skiapipeline::ShaderCache::get(); + contextOptions->fGpuPathRenderers &= ~GpuPathRenderers::kCoverageCounting; } void CacheManager::trimMemory(TrimMemoryMode mode) {