blob: 165e3201c514eddad2c8daeec86b4202d9689088 [file] [log] [blame]
Lloyd Pique37c2c9b2018-12-04 17:25:10 -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 Pique3b5a69e2020-01-16 17:51:01 -080017#include <compositionengine/impl/DumpHelpers.h>
18#include <compositionengine/impl/OutputLayerCompositionState.h>
19
Ady Abrahamb0dbdaa2020-01-06 16:19:42 -080020// TODO(b/129481165): remove the #pragma below and fix conversion issues
21#pragma clang diagnostic push
22#pragma clang diagnostic ignored "-Wconversion"
23
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080024#include "DisplayHardware/HWC2.h"
25
Lloyd Pique3b5a69e2020-01-16 17:51:01 -080026// TODO(b/129481165): remove the #pragma below and fix conversion issues
27#pragma clang diagnostic pop // ignored "-Wconversion"
28
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080029namespace android::compositionengine::impl {
30
31namespace {
32
33void dumpHwc(const OutputLayerCompositionState::Hwc& hwc, std::string& out) {
34 out.append("\n hwc: ");
35
36 if (hwc.hwcLayer == nullptr) {
37 out.append("No layer ");
38 } else {
39 dumpHex(out, "layer", hwc.hwcLayer->getId());
40 }
41
42 dumpVal(out, "composition", toString(hwc.hwcCompositionType), hwc.hwcCompositionType);
43}
44
45} // namespace
46
47void OutputLayerCompositionState::dump(std::string& out) const {
48 out.append(" ");
49 dumpVal(out, "visibleRegion", visibleRegion);
50
51 out.append(" ");
Lloyd Piquea2468662019-03-07 21:31:06 -080052 dumpVal(out, "visibleNonTransparentRegion", visibleNonTransparentRegion);
53
54 out.append(" ");
55 dumpVal(out, "coveredRegion", coveredRegion);
56
57 out.append(" ");
58 dumpVal(out, "output visibleRegion", outputSpaceVisibleRegion);
59
60 out.append(" ");
Vishnu Naira483b4a2019-12-12 15:07:52 -080061 dumpVal(out, "shadowRegion", shadowRegion);
62
63 out.append(" ");
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080064 dumpVal(out, "forceClientComposition", forceClientComposition);
65 dumpVal(out, "clearClientTarget", clearClientTarget);
66 dumpVal(out, "displayFrame", displayFrame);
67 dumpVal(out, "sourceCrop", sourceCrop);
Lloyd Pique207def92019-02-28 16:09:52 -080068 dumpVal(out, "bufferTransform", toString(bufferTransform), bufferTransform);
Lloyd Piquef5275482019-01-29 18:42:42 -080069 dumpVal(out, "dataspace", toString(dataspace), dataspace);
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080070 dumpVal(out, "z-index", z);
71
72 if (hwc) {
73 dumpHwc(*hwc, out);
74 }
75
76 out.append("\n");
77}
78
79} // namespace android::compositionengine::impl