diff options
| author | 2013-08-30 21:14:55 +0000 | |
|---|---|---|
| committer | 2013-08-30 21:14:55 +0000 | |
| commit | 87967c186995d1500875c495cba8f04f7cff76cc (patch) | |
| tree | 6d05c2e4be9321738430efe77cbaf2efd0b9c72e /libs/gui/BufferQueue.cpp | |
| parent | 19733a32799f792125913e746e8644d16f8dc223 (diff) | |
| parent | 8db92553e9e6263cd41eaf1a1ebc9e3f88f92b5f (diff) | |
Merge "Force async behavior for the virtual display output BufferQueue" into klp-dev
Diffstat (limited to 'libs/gui/BufferQueue.cpp')
| -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 65007fa24a..57a41f25c4 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) { |