diff options
author | John Reck <jreck@google.com> | 2016-08-10 17:44:40 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-08-10 17:44:40 +0000 |
commit | 1d7ee6b5a363eaffb3d478fa4bbd23f5a4a4009c (patch) | |
tree | 6a20e544b4fb4b75ea755c590880e8a826512a67 /libs/hwui/renderthread/RenderProxy.cpp | |
parent | add5fd286ccfe7d5661876e10261f73da58a6947 (diff) | |
parent | 9dd91dec3f9ff315e6c849817960656b5bcbe051 (diff) |
Make updateSurface non-blocking am: cd68212f08
am: 9dd91dec3f
Change-Id: I8a27b5bcff0781e90c9d061da0c1fe03eb6d8176
Diffstat (limited to 'libs/hwui/renderthread/RenderProxy.cpp')
-rw-r--r-- | libs/hwui/renderthread/RenderProxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/renderthread/RenderProxy.cpp b/libs/hwui/renderthread/RenderProxy.cpp index fb1c8962328b..a734401a2be6 100644 --- a/libs/hwui/renderthread/RenderProxy.cpp +++ b/libs/hwui/renderthread/RenderProxy.cpp @@ -158,7 +158,7 @@ void RenderProxy::updateSurface(const sp<Surface>& surface) { SETUP_TASK(updateSurface); args->context = mContext; args->surface = surface.get(); - postAndWait(task); + post(task); } CREATE_BRIDGE2(pauseSurface, CanvasContext* context, Surface* surface) { |