diff options
author | Bo Liu <boliu@google.com> | 2014-05-13 16:47:27 -0700 |
---|---|---|
committer | Bo Liu <boliu@google.com> | 2014-06-23 11:26:03 -0700 |
commit | 826b56448691221e4cfe2f19a09c3d8790f78d2c (patch) | |
tree | c3a45d57cec6f34358d089d7d772badbb010f176 /libs/hwui/renderthread/DrawFrameTask.cpp | |
parent | f5fb7035c4b90ec288daaf7d2ff0df025a4ffc79 (diff) |
Enable asynchronous RenderThread for WebView
BUG: 12179257
Change-Id: Ib7358dc84a0a58020d178d10b324b9631848c06d
Diffstat (limited to 'libs/hwui/renderthread/DrawFrameTask.cpp')
-rw-r--r-- | libs/hwui/renderthread/DrawFrameTask.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/renderthread/DrawFrameTask.cpp b/libs/hwui/renderthread/DrawFrameTask.cpp index 797566f29ae3..48abbf211b95 100644 --- a/libs/hwui/renderthread/DrawFrameTask.cpp +++ b/libs/hwui/renderthread/DrawFrameTask.cpp @@ -138,7 +138,7 @@ bool DrawFrameTask::syncFrameState(TreeInfo& info) { } } // If prepareTextures is false, we ran out of texture cache space - return !info.out.hasFunctors && info.prepareTextures; + return info.prepareTextures; } void DrawFrameTask::unblockUiThread() { |