Marissa Wall | 6bd8bfd | 2016-12-15 12:25:31 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
| 21 | Hwc2TestLayer::Hwc2TestLayer(Hwc2TestCoverage coverage) |
Marissa Wall | ffc67da | 2016-12-15 12:26:09 -0800 | [diff] [blame^] | 22 | : mBlendMode(coverage), |
| 23 | mComposition(coverage) { } |
Marissa Wall | 6bd8bfd | 2016-12-15 12:25:31 -0800 | [diff] [blame] | 24 | |
| 25 | std::string Hwc2TestLayer::dump() const |
| 26 | { |
| 27 | std::stringstream dmp; |
| 28 | |
| 29 | dmp << "layer: \n"; |
Marissa Wall | ffc67da | 2016-12-15 12:26:09 -0800 | [diff] [blame^] | 30 | |
| 31 | for (auto property : mProperties) { |
| 32 | dmp << property->dump(); |
| 33 | } |
Marissa Wall | 6bd8bfd | 2016-12-15 12:25:31 -0800 | [diff] [blame] | 34 | |
| 35 | return dmp.str(); |
| 36 | } |
| 37 | |
| 38 | void Hwc2TestLayer::reset() |
| 39 | { |
Marissa Wall | ffc67da | 2016-12-15 12:26:09 -0800 | [diff] [blame^] | 40 | for (auto property : mProperties) { |
| 41 | property->reset(); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | hwc2_blend_mode_t Hwc2TestLayer::getBlendMode() const |
| 46 | { |
| 47 | return mBlendMode.get(); |
Marissa Wall | 6bd8bfd | 2016-12-15 12:25:31 -0800 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | hwc2_composition_t Hwc2TestLayer::getComposition() const |
| 51 | { |
| 52 | return mComposition.get(); |
| 53 | } |
| 54 | |
Marissa Wall | ffc67da | 2016-12-15 12:26:09 -0800 | [diff] [blame^] | 55 | bool Hwc2TestLayer::advanceBlendMode() |
| 56 | { |
| 57 | return mBlendMode.advance(); |
| 58 | } |
| 59 | |
Marissa Wall | 6bd8bfd | 2016-12-15 12:25:31 -0800 | [diff] [blame] | 60 | bool Hwc2TestLayer::advanceComposition() |
| 61 | { |
| 62 | return mComposition.advance(); |
| 63 | } |