diff options
author | Brian Carlstrom <bdc@google.com> | 2013-12-19 00:25:07 -0800 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2013-12-19 00:25:07 -0800 |
commit | 69d251383f3656a580c3878045de235d70a12000 (patch) | |
tree | 042d60d4385227ddd32f6760a3db3f20f4809936 /libs/hwui/renderthread/RenderThread.cpp | |
parent | 0c2a8c7f271082f5c595e1239230be418ecc41b8 (diff) |
Track Looper decoupling from ALooper
Change-Id: I83d1f5f6600019268c53706b7bf6d94b84931e18
Diffstat (limited to 'libs/hwui/renderthread/RenderThread.cpp')
-rw-r--r-- | libs/hwui/renderthread/RenderThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/renderthread/RenderThread.cpp b/libs/hwui/renderthread/RenderThread.cpp index 18d9300eefec..bccd6e616507 100644 --- a/libs/hwui/renderthread/RenderThread.cpp +++ b/libs/hwui/renderthread/RenderThread.cpp @@ -39,7 +39,7 @@ RenderThread::~RenderThread() { bool RenderThread::threadLoop() { for (;;) { int result = mLooper->pollAll(-1); - if (result == ALOOPER_POLL_ERROR) { + if (result == Looper::POLL_ERROR) { // TODO Something? break; } |