diff options
author | Daichi Hirono <hirono@google.com> | 2016-11-29 16:09:59 +0900 |
---|---|---|
committer | Daichi Hirono <hirono@google.com> | 2016-11-29 16:09:59 +0900 |
commit | 116c376c737fafff0e69f4b6c30d77fd21127ffc (patch) | |
tree | 142280eaf54de27d6659bc3bdc54e2898e408c34 /libs/hwui/renderthread/OpenGLPipeline.cpp | |
parent | d0835e45f7663cb6abef383b9d903429c824cd20 (diff) |
Fix hwui compile error only seen with debug switch.
Bug: None
Test: Build succeeded
Change-Id: I26e3f4fdc10f27d7eb7f3987d0f3e5dfa1bc9f45
Diffstat (limited to 'libs/hwui/renderthread/OpenGLPipeline.cpp')
-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(); |