blob: 3470d6708836d5d7e81d6f8ffcedcdd551783b80 [file] [log] [blame]
Mathias Agopian118d0242011-10-13 16:02:48 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <stdlib.h>
18#include <stdint.h>
19#include <sys/types.h>
20
Mathias Agopian118d0242011-10-13 16:02:48 -070021#include "LayerScreenshot.h"
22#include "SurfaceFlinger.h"
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070023#include "DisplayDevice.h"
Mathias Agopian118d0242011-10-13 16:02:48 -070024
25namespace android {
26// ---------------------------------------------------------------------------
27
Mathias Agopian3ee454a2012-08-27 16:28:24 -070028LayerScreenshot::LayerScreenshot(SurfaceFlinger* flinger,
Mathias Agopian118d0242011-10-13 16:02:48 -070029 const sp<Client>& client)
Mathias Agopian2a9fc492013-03-01 13:42:57 -080030 : Layer(flinger, client)
Mathias Agopian118d0242011-10-13 16:02:48 -070031{
32}
33
Mathias Agopian2a9fc492013-03-01 13:42:57 -080034void LayerScreenshot::onFirstRef()
Mathias Agopian118d0242011-10-13 16:02:48 -070035{
Mathias Agopian2a9fc492013-03-01 13:42:57 -080036 Layer::onFirstRef();
Mathias Agopian118d0242011-10-13 16:02:48 -070037
Mathias Agopian2a9fc492013-03-01 13:42:57 -080038 // FIXME: we currently hardcode the default display
39 // it's unclear what should we do instead.
40 sp<const DisplayDevice> hw(mFlinger->getDefaultDisplayDevice());
41 mFlinger->captureScreenImplLocked(hw, getConsumer()->getBufferQueue(),
42 0, 0, 0, 0x7FFFFFFF);
Mathias Agopian118d0242011-10-13 16:02:48 -070043}
44
45// ---------------------------------------------------------------------------
46
47}; // namespace android