diff options
author | Jesse Hall <jessehall@google.com> | 2013-08-30 14:19:13 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-08-30 14:19:13 -0700 |
commit | 2d28c37269ca55b2be896ca67271994ebbc2bc84 (patch) | |
tree | d262cafd583c4964c93ef5632643bedb4e366e06 /libs/gui | |
parent | bf5e8b631db3dbd9cee5cf8805c5379f013b54db (diff) | |
parent | 87967c186995d1500875c495cba8f04f7cff76cc (diff) | |
download | frameworks_native-2d28c37269ca55b2be896ca67271994ebbc2bc84.zip frameworks_native-2d28c37269ca55b2be896ca67271994ebbc2bc84.tar.gz frameworks_native-2d28c37269ca55b2be896ca67271994ebbc2bc84.tar.bz2 |
am 87967c18: Merge "Force async behavior for the virtual display output BufferQueue" into klp-dev
* commit '87967c186995d1500875c495cba8f04f7cff76cc':
Force async behavior for the virtual display output BufferQueue
Diffstat (limited to 'libs/gui')
-rw-r--r-- | libs/gui/BufferQueue.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libs/gui/BufferQueue.cpp b/libs/gui/BufferQueue.cpp index 65007fa..57a41f2 100644 --- a/libs/gui/BufferQueue.cpp +++ b/libs/gui/BufferQueue.cpp @@ -637,7 +637,8 @@ void BufferQueue::cancelBuffer(int buf, const sp<Fence>& fence) { status_t BufferQueue::connect(int api, bool producerControlledByApp, QueueBufferOutput* output) { ATRACE_CALL(); - ST_LOGV("connect: api=%d", api); + ST_LOGV("connect: api=%d producerControlledByApp=%s", api, + producerControlledByApp ? "true" : "false"); Mutex::Autolock lock(mMutex); if (mAbandoned) { @@ -1001,7 +1002,8 @@ status_t BufferQueue::releaseBuffer( status_t BufferQueue::consumerConnect(const sp<IConsumerListener>& consumerListener, bool controlledByApp) { - ST_LOGV("consumerConnect"); + ST_LOGV("consumerConnect controlledByApp=%s", + controlledByApp ? "true" : "false"); Mutex::Autolock lock(mMutex); if (mAbandoned) { |