am caa81f0e
: Merge "make sure to unlock the screenshot\'s buffer on destruction" into jb-mr2-dev
* commit 'caa81f0ed8a4471c210956d0343458b3bca922de': make sure to unlock the screenshot's buffer on destruction
This commit is contained in:
commit
4fbb8191d8
@ -170,6 +170,7 @@ private:
|
||||
|
||||
public:
|
||||
ScreenshotClient();
|
||||
~ScreenshotClient();
|
||||
|
||||
// frees the previous screenshot and capture a new one
|
||||
status_t update(const sp<IBinder>& display);
|
||||
|
@ -627,6 +627,10 @@ ScreenshotClient::ScreenshotClient()
|
||||
memset(&mBuffer, 0, sizeof(mBuffer));
|
||||
}
|
||||
|
||||
ScreenshotClient::~ScreenshotClient() {
|
||||
ScreenshotClient::release();
|
||||
}
|
||||
|
||||
sp<CpuConsumer> ScreenshotClient::getCpuConsumer() const {
|
||||
if (mCpuConsumer == NULL) {
|
||||
mCpuConsumer = new CpuConsumer(1);
|
||||
|
Loading…
Reference in New Issue
Block a user