blob: 22ecd33a2a31a200246f261f511c0906f74555c2 [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
Ady Abrahamb0dbdaa2020-01-06 16:19:42 -080017// TODO(b/129481165): remove the #pragma below and fix conversion issues
18#pragma clang diagnostic push
19#pragma clang diagnostic ignored "-Wconversion"
20
Lloyd Pique0b785d82018-12-04 17:25:27 -080021#include <android-base/stringprintf.h>
Lloyd Piquefeb73d72018-12-04 17:23:44 -080022#include <compositionengine/LayerFE.h>
Lloyd Piquea38ea7e2019-04-16 18:10:26 -070023#include <compositionengine/LayerFECompositionState.h>
Lloyd Piquefeb73d72018-12-04 17:23:44 -080024#include <compositionengine/impl/Layer.h>
25
26namespace android::compositionengine {
27
28Layer::~Layer() = default;
29
30namespace impl {
31
Lloyd Piquea38ea7e2019-04-16 18:10:26 -070032std::shared_ptr<Layer> createLayer(const LayerCreationArgs& args) {
33 return compositionengine::impl::createLayerTemplated<Layer>(args);
Lloyd Piquefeb73d72018-12-04 17:23:44 -080034}
35
36Layer::~Layer() = default;
37
Lloyd Pique0b785d82018-12-04 17:25:27 -080038void Layer::dump(std::string& out) const {
Lloyd Pique207def92019-02-28 16:09:52 -080039 auto layerFE = getLayerFE();
40 android::base::StringAppendF(&out, "* compositionengine::Layer %p (%s)\n", this,
41 layerFE ? layerFE->getDebugName() : "<unknown>");
Lloyd Pique9755fb72019-03-26 14:44:40 -070042 out.append(" frontend:\n");
Lloyd Piquea38ea7e2019-04-16 18:10:26 -070043 dumpFEState(out);
Lloyd Pique0b785d82018-12-04 17:25:27 -080044}
45
Lloyd Piquefeb73d72018-12-04 17:23:44 -080046} // namespace impl
47} // namespace android::compositionengine
Ady Abrahamb0dbdaa2020-01-06 16:19:42 -080048
49// TODO(b/129481165): remove the #pragma below and fix conversion issues
50#pragma clang diagnostic pop // ignored "-Wconversion"