diff options
author | John Reck <jreck@google.com> | 2014-06-24 08:44:29 -0700 |
---|---|---|
committer | John Reck <jreck@google.com> | 2014-06-24 08:44:29 -0700 |
commit | cd028f336e36b22dbe8cf623eb5bd2361314495c (patch) | |
tree | c878aab479fa4b75af024d9169aae04391569700 /libs/hwui/renderthread/DrawFrameTask.h | |
parent | 5444f3cd92ac42f72f86ba5bcd554e0d88bc265b (diff) |
Fix contants; RT-enable WebView pt2
Bug: 15838537
* Fix kSync_UIRedrawRequired constant value (woops)
* Tell CanvasContext that WebView is now rt-safe
Change-Id: Idf15cf21115c2ca24b8ccd00025e8502864cd87c
Diffstat (limited to 'libs/hwui/renderthread/DrawFrameTask.h')
-rw-r--r-- | libs/hwui/renderthread/DrawFrameTask.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/renderthread/DrawFrameTask.h b/libs/hwui/renderthread/DrawFrameTask.h index 96f0add4c08c..243cc5d1e3cc 100644 --- a/libs/hwui/renderthread/DrawFrameTask.h +++ b/libs/hwui/renderthread/DrawFrameTask.h @@ -41,7 +41,7 @@ class RenderThread; enum SyncResult { kSync_OK = 0, - kSync_UIRedrawRequired = 1 << 1, + kSync_UIRedrawRequired = 1 << 0, }; /* |