blob: 55c943c0ebee5d4e1e7cc29e84dd42e91e4c305a [file] [log] [blame]
John Reck10dd0582016-03-31 16:36:16 -07001/*
2 * Copyright (C) 2016 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#pragma once
18
19#include "renderthread/RenderThread.h"
John Reck95801462016-09-01 09:44:09 -070020#include "Rect.h"
John Reck10dd0582016-03-31 16:36:16 -070021
22#include <SkBitmap.h>
23#include <gui/Surface.h>
24
25namespace android {
26namespace uirenderer {
27
Chris Craik764045d2016-07-06 17:14:05 -070028class Layer;
29
John Recke94cbc72016-04-25 13:03:44 -070030// Keep in sync with PixelCopy.java codes
31enum class CopyResult {
32 Success = 0,
33 UnknownError = 1,
34 Timeout = 2,
35 SourceEmpty = 3,
36 SourceInvalid = 4,
37 DestinationInvalid = 5,
38};
39
John Reck10dd0582016-03-31 16:36:16 -070040class Readback {
41public:
Chris Craik764045d2016-07-06 17:14:05 -070042 /**
43 * Copies the surface's most recently queued buffer into the provided bitmap.
44 */
John Recke94cbc72016-04-25 13:03:44 -070045 static CopyResult copySurfaceInto(renderthread::RenderThread& renderThread,
John Reck95801462016-09-01 09:44:09 -070046 Surface& surface, const Rect& srcRect, SkBitmap* bitmap);
Chris Craik764045d2016-07-06 17:14:05 -070047
48 /**
49 * Copies the TextureLayer's texture content (thus, the currently rendering buffer) into the
50 * provided bitmap.
51 */
52 static CopyResult copyTextureLayerInto(renderthread::RenderThread& renderThread,
53 Layer& layer, SkBitmap* bitmap);
John Reck10dd0582016-03-31 16:36:16 -070054};
55
56} // namespace uirenderer
57} // namespace android