blob: 7fd6541a62c03da744f7725e1fb0534fcc84a52f [file] [log] [blame]
Lloyd Pique35d58242018-12-18 16:33:25 -08001/*
2 * Copyright 2019 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 <gmock/gmock.h>
20#include <ui/Fence.h>
21#include <ui/FloatRect.h>
22#include <ui/GraphicBuffer.h>
23#include <ui/GraphicTypes.h>
24#include <ui/Rect.h>
25#include <ui/Region.h>
26#include <ui/Transform.h>
27
28#include "DisplayHardware/HWC2.h"
29
30namespace HWC2 {
31namespace mock {
32
33class Layer : public HWC2::Layer {
34public:
35 Layer();
36 ~Layer() override;
37
38 MOCK_CONST_METHOD0(getId, hwc2_layer_t());
39
40 MOCK_METHOD2(setCursorPosition, Error(int32_t, int32_t));
41 MOCK_METHOD3(setBuffer,
42 Error(uint32_t, const android::sp<android::GraphicBuffer>&,
43 const android::sp<android::Fence>&));
44 MOCK_METHOD1(setSurfaceDamage, Error(const android::Region&));
45 MOCK_METHOD1(setBlendMode, Error(BlendMode));
46 MOCK_METHOD1(setColor, Error(hwc_color_t));
47 MOCK_METHOD1(setCompositionType, Error(Composition));
48 MOCK_METHOD1(setDataspace, Error(android::ui::Dataspace));
49 MOCK_METHOD2(setPerFrameMetadata, Error(const int32_t, const android::HdrMetadata&));
50 MOCK_METHOD1(setDisplayFrame, Error(const android::Rect&));
51 MOCK_METHOD1(setPlaneAlpha, Error(float));
52 MOCK_METHOD1(setSidebandStream, Error(const native_handle_t*));
53 MOCK_METHOD1(setSourceCrop, Error(const android::FloatRect&));
54 MOCK_METHOD1(setTransform, Error(Transform));
55 MOCK_METHOD1(setVisibleRegion, Error(const android::Region&));
56 MOCK_METHOD1(setZOrder, Error(uint32_t));
57 MOCK_METHOD2(setInfo, Error(uint32_t, uint32_t));
58
59 MOCK_METHOD1(setColorTransform, Error(const android::mat4&));
60};
61
62} // namespace mock
63} // namespace HWC2