diff options
| author | John Reck <jreck@google.com> | 2014-09-03 16:46:05 -0700 |
|---|---|---|
| committer | John Reck <jreck@google.com> | 2014-09-03 17:37:59 -0700 |
| commit | e2478d45ccbe5b6abb360ac9d44771b5f4a50bde (patch) | |
| tree | f66b0980340a65a83bfd790bd63dc6b179221790 /libs/hwui/renderthread | |
| parent | 3215da25dd24c9570a90a6151b692e5fd38fbbc7 (diff) | |
| download | frameworks_base-e2478d45ccbe5b6abb360ac9d44771b5f4a50bde.zip frameworks_base-e2478d45ccbe5b6abb360ac9d44771b5f4a50bde.tar.gz frameworks_base-e2478d45ccbe5b6abb360ac9d44771b5f4a50bde.tar.bz2 | |
Fix some wrong-thread issues around animator management
Bug: 17372309
Fixes a case where UI thread and RT thread both used the same method
which wasn't safe for either of them.
Adds additional assertions & logging in unusual circumstances to
try and track down where the issue is occuring from.
Change-Id: I93d31a6fd0c5927259b67bdf96a475944226eee6
Diffstat (limited to 'libs/hwui/renderthread')
| -rw-r--r-- | libs/hwui/renderthread/CanvasContext.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/hwui/renderthread/CanvasContext.cpp b/libs/hwui/renderthread/CanvasContext.cpp index 967cb6f..428e426 100644 --- a/libs/hwui/renderthread/CanvasContext.cpp +++ b/libs/hwui/renderthread/CanvasContext.cpp @@ -59,6 +59,7 @@ void CanvasContext::destroy() { stopDrawing(); freePrefetechedLayers(); destroyHardwareResources(); + mAnimationContext->destroy(); if (mCanvas) { delete mCanvas; mCanvas = 0; |
