blob: 109e9f8438a8222b7116f7e32695f5c314847a59 [file] [log] [blame]
Lloyd Piquefeb73d72018-12-04 17:23:44 -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
Lloyd Pique0b785d82018-12-04 17:25:27 -080017#include <android-base/stringprintf.h>
Lloyd Piquefeb73d72018-12-04 17:23:44 -080018#include <compositionengine/CompositionEngine.h>
19#include <compositionengine/LayerCreationArgs.h>
20#include <compositionengine/LayerFE.h>
21#include <compositionengine/impl/Layer.h>
22
23namespace android::compositionengine {
24
25Layer::~Layer() = default;
26
27namespace impl {
28
29std::shared_ptr<compositionengine::Layer> createLayer(
30 const compositionengine::CompositionEngine& compositionEngine,
31 compositionengine::LayerCreationArgs&& args) {
32 return std::make_shared<Layer>(compositionEngine, std::move(args));
33}
34
35Layer::Layer(const CompositionEngine& compositionEngine, LayerCreationArgs&& args)
36 : mCompositionEngine(compositionEngine), mLayerFE(args.layerFE) {
37 static_cast<void>(mCompositionEngine); // Temporary use to prevent an unused warning
38}
39
40Layer::~Layer() = default;
41
42sp<LayerFE> Layer::getLayerFE() const {
43 return mLayerFE.promote();
44}
45
Lloyd Pique0b785d82018-12-04 17:25:27 -080046const LayerCompositionState& Layer::getState() const {
47 return mState;
48}
49
50LayerCompositionState& Layer::editState() {
51 return mState;
52}
53
54void Layer::dump(std::string& out) const {
55 android::base::StringAppendF(&out, " Layer %p\n", this);
56 mState.dump(out);
57}
58
Lloyd Piquefeb73d72018-12-04 17:23:44 -080059} // namespace impl
60} // namespace android::compositionengine