2011-10-13 23:02:48 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include "LayerScreenshot.h"
|
|
|
|
#include "SurfaceFlinger.h"
|
2012-08-01 06:09:07 +00:00
|
|
|
#include "DisplayDevice.h"
|
2011-10-13 23:02:48 +00:00
|
|
|
|
|
|
|
namespace android {
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2012-08-27 23:28:24 +00:00
|
|
|
LayerScreenshot::LayerScreenshot(SurfaceFlinger* flinger,
|
2011-10-13 23:02:48 +00:00
|
|
|
const sp<Client>& client)
|
2013-03-01 21:42:57 +00:00
|
|
|
: Layer(flinger, client)
|
2011-10-13 23:02:48 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-01 21:42:57 +00:00
|
|
|
void LayerScreenshot::onFirstRef()
|
2011-10-13 23:02:48 +00:00
|
|
|
{
|
2013-03-01 21:42:57 +00:00
|
|
|
Layer::onFirstRef();
|
2011-10-13 23:02:48 +00:00
|
|
|
|
2013-03-01 21:42:57 +00:00
|
|
|
// FIXME: we currently hardcode the default display
|
|
|
|
// it's unclear what should we do instead.
|
|
|
|
sp<const DisplayDevice> hw(mFlinger->getDefaultDisplayDevice());
|
|
|
|
mFlinger->captureScreenImplLocked(hw, getConsumer()->getBufferQueue(),
|
|
|
|
0, 0, 0, 0x7FFFFFFF);
|
2011-10-13 23:02:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
}; // namespace android
|