blob: 09fb9217b88d8cfaa06a6c4b028fb20f301181ae [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)
22 : mComposition(coverage) { }
23
24std::string Hwc2TestLayer::dump() const
25{
26 std::stringstream dmp;
27
28 dmp << "layer: \n";
29 dmp << mComposition.dump();
30
31 return dmp.str();
32}
33
34void Hwc2TestLayer::reset()
35{
36 mComposition.reset();
37}
38
39hwc2_composition_t Hwc2TestLayer::getComposition() const
40{
41 return mComposition.get();
42}
43
44bool Hwc2TestLayer::advanceComposition()
45{
46 return mComposition.advance();
47}