diff options
author | 2016-07-21 17:06:58 -0700 | |
---|---|---|
committer | 2016-07-22 12:27:04 -0700 | |
commit | bc2df65a3f3f4b8abaaaa2a4e576a3a42c2d30f3 (patch) | |
tree | 1d161800a08d5ea3ed3088a5c224173665267769 /libs/gui/BufferQueueConsumer.cpp | |
parent | d16f6ae2bd1083ee29717829a39e93908bba2bf5 (diff) |
BufferQueue consumers: Add discardFreeBuffer method
This method releases all free buffers owned by the buffer queue,
in order to save memory (at the cost of potential future
reallocation of buffers).
Bug: 28695173
Change-Id: I458d10373e639e3144faf673af2ba01aca36e65a
Diffstat (limited to 'libs/gui/BufferQueueConsumer.cpp')
-rw-r--r-- | libs/gui/BufferQueueConsumer.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libs/gui/BufferQueueConsumer.cpp b/libs/gui/BufferQueueConsumer.cpp index e8860d12fe..ca2a374e16 100644 --- a/libs/gui/BufferQueueConsumer.cpp +++ b/libs/gui/BufferQueueConsumer.cpp @@ -725,6 +725,12 @@ status_t BufferQueueConsumer::getOccupancyHistory(bool forceFlush, return NO_ERROR; } +status_t BufferQueueConsumer::discardFreeBuffers() { + Mutex::Autolock lock(mCore->mMutex); + mCore->discardFreeBuffersLocked(); + return NO_ERROR; +} + void BufferQueueConsumer::dump(String8& result, const char* prefix) const { const IPCThreadState* ipc = IPCThreadState::self(); const pid_t pid = ipc->getCallingPid(); |