commit | 0eac63ff4b156a3f48ef6a8c7e9aed7d8049ba12 | [log] [tgz] |
---|---|---|
author | Vishnu Nair <vishnun@google.com> | Mon May 17 16:52:09 2021 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Mon May 17 16:52:09 2021 +0000 |
tree | 6523a0af77a6223dcb4ae4a1f3750426b4a637fb | |
parent | f2b9e683359392185097e105ceefcebb1efe6e97 [diff] | |
parent | f9cb20ab207fd65c1b833e9dfb670eaa9cdf64a1 [diff] |
Merge "Fix java SurfaceControl BBQ wrapper update path" into sc-dev
diff --git a/libs/gui/SurfaceControl.cpp b/libs/gui/SurfaceControl.cpp index 37750fa..d7c07b9 100644 --- a/libs/gui/SurfaceControl.cpp +++ b/libs/gui/SurfaceControl.cpp
@@ -166,7 +166,7 @@ Mutex::Autolock _l(mLock); mWidth = width; mHeight = height; if (mBbq) { - mBbq->update(this, width, height, mFormat); + mBbq->update(mBbqChild, width, height, mFormat); } }