diff options
| author | 2013-02-06 15:29:46 -0800 | |
|---|---|---|
| committer | 2013-02-06 15:29:46 -0800 | |
| commit | c2a972131f1870042eb63847d4b24fbe718d8e3f (patch) | |
| tree | 5e9d66fbc9c58b7b9f260f9559fc1cc39fff87c4 | |
| parent | 3c099c42fd7ead1429076055990ae39b72c904f4 (diff) | |
Fix uninitialized variables in Caches.cpp
Bug #8151401
Change-Id: I221f93de0f1981974f82a094297836dd3fe418bc
| -rw-r--r-- | libs/hwui/Caches.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/hwui/Caches.cpp b/libs/hwui/Caches.cpp index 7e645d298c5c..1a86b3a4b32b 100644 --- a/libs/hwui/Caches.cpp +++ b/libs/hwui/Caches.cpp @@ -89,6 +89,9 @@ void Caches::init() { mFunctorsCount = 0; + debugLayersUpdates = false; + debugOverdraw = false; + mInitialized = true; } |