am e60a0b1e
: Merge "gui: CpuConsumer::lockNextBuffer change return code when too many bufs acquired" into klp-dev
* commit 'e60a0b1e6a29d79b4d0ec0374446cb829bcadee4': gui: CpuConsumer::lockNextBuffer change return code when too many bufs acquired
This commit is contained in:
commit
0ba1a16bbb
@ -90,7 +90,7 @@ class CpuConsumer : public ConsumerBase
|
||||
// Gets the next graphics buffer from the producer and locks it for CPU use,
|
||||
// filling out the passed-in locked buffer structure with the native pointer
|
||||
// and metadata. Returns BAD_VALUE if no new buffer is available, and
|
||||
// INVALID_OPERATION if the maximum number of buffers is already locked.
|
||||
// NOT_ENOUGH_DATA if the maximum number of buffers is already locked.
|
||||
//
|
||||
// Only a fixed number of buffers can be locked at a time, determined by the
|
||||
// construction-time maxLockedBuffers parameter. If INVALID_OPERATION is
|
||||
|
@ -72,7 +72,9 @@ status_t CpuConsumer::lockNextBuffer(LockedBuffer *nativeBuffer) {
|
||||
|
||||
if (!nativeBuffer) return BAD_VALUE;
|
||||
if (mCurrentLockedBuffers == mMaxLockedBuffers) {
|
||||
return INVALID_OPERATION;
|
||||
CC_LOGW("Max buffers have been locked (%d), cannot lock anymore.",
|
||||
mMaxLockedBuffers);
|
||||
return NOT_ENOUGH_DATA;
|
||||
}
|
||||
|
||||
BufferQueue::BufferItem b;
|
||||
|
Loading…
Reference in New Issue
Block a user