blob: d99f2fd74a94ebae9cd0cf1555800e13cccf04c9 [file] [log] [blame]
Marissa Wall6bd8bfd2016-12-15 12:25:31 -08001/*
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#include <sstream>
18
19#include "Hwc2TestLayer.h"
20
21Hwc2TestLayer::Hwc2TestLayer(Hwc2TestCoverage coverage)
Marissa Wallffc67da2016-12-15 12:26:09 -080022 : mBlendMode(coverage),
Marissa Wallb72b5c92016-12-15 12:26:39 -080023 mComposition(coverage),
24 mDataspace(coverage) { }
Marissa Wall6bd8bfd2016-12-15 12:25:31 -080025
26std::string Hwc2TestLayer::dump() const
27{
28 std::stringstream dmp;
29
30 dmp << "layer: \n";
Marissa Wallffc67da2016-12-15 12:26:09 -080031
32 for (auto property : mProperties) {
33 dmp << property->dump();
34 }
Marissa Wall6bd8bfd2016-12-15 12:25:31 -080035
36 return dmp.str();
37}
38
39void Hwc2TestLayer::reset()
40{
Marissa Wallffc67da2016-12-15 12:26:09 -080041 for (auto property : mProperties) {
42 property->reset();
43 }
44}
45
46hwc2_blend_mode_t Hwc2TestLayer::getBlendMode() const
47{
48 return mBlendMode.get();
Marissa Wall6bd8bfd2016-12-15 12:25:31 -080049}
50
51hwc2_composition_t Hwc2TestLayer::getComposition() const
52{
53 return mComposition.get();
54}
55
Marissa Wallb72b5c92016-12-15 12:26:39 -080056android_dataspace_t Hwc2TestLayer::getDataspace() const
57{
58 return mDataspace.get();
59}
60
Marissa Wallffc67da2016-12-15 12:26:09 -080061bool Hwc2TestLayer::advanceBlendMode()
62{
63 return mBlendMode.advance();
64}
65
Marissa Wall6bd8bfd2016-12-15 12:25:31 -080066bool Hwc2TestLayer::advanceComposition()
67{
68 return mComposition.advance();
69}
Marissa Wallb72b5c92016-12-15 12:26:39 -080070
71bool Hwc2TestLayer::advanceDataspace()
72{
73 return mDataspace.advance();
74}