diff options
| author | 2016-11-29 17:22:38 +0000 | |
|---|---|---|
| committer | 2016-11-29 17:22:42 +0000 | |
| commit | d738d1beab8f8c5afc9271c75684ed7c06ef277f (patch) | |
| tree | 0edd2e205acb4367ec8ba6cdce8e3fb18c4ee106 | |
| parent | e061a790416523cd4976e0376d661f3b92e72c2d (diff) | |
| parent | 116c376c737fafff0e69f4b6c30d77fd21127ffc (diff) | |
Merge "Fix hwui compile error only seen with debug switch."
| -rw-r--r-- | libs/hwui/renderthread/OpenGLPipeline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/renderthread/OpenGLPipeline.cpp b/libs/hwui/renderthread/OpenGLPipeline.cpp index 177a729cbf55..9dc2b596e3e8 100644 --- a/libs/hwui/renderthread/OpenGLPipeline.cpp +++ b/libs/hwui/renderthread/OpenGLPipeline.cpp @@ -88,7 +88,7 @@ bool OpenGLPipeline::draw(const Frame& frame, const SkRect& screenDirty, const S caches.tessellationCache.trim(); #if DEBUG_MEMORY_USAGE - mCaches.dumpMemoryUsage(); + caches.dumpMemoryUsage(); #else if (CC_UNLIKELY(Properties::debugLevel & kDebugMemory)) { caches.dumpMemoryUsage(); |