blob: da1f7e49f8f1cc93dbccfba589bc5981c264b3f0 [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(" ");
Leon Scroggins III7f7ad2c2022-03-17 17:06:20 -040064 dumpVal(out, "outputSpaceBlockingRegionHint", outputSpaceBlockingRegionHint);
65
66 out.append(" ");
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080067 dumpVal(out, "forceClientComposition", forceClientComposition);
68 dumpVal(out, "clearClientTarget", clearClientTarget);
69 dumpVal(out, "displayFrame", displayFrame);
70 dumpVal(out, "sourceCrop", sourceCrop);
Lloyd Pique207def92019-02-28 16:09:52 -080071 dumpVal(out, "bufferTransform", toString(bufferTransform), bufferTransform);
Lloyd Piquef5275482019-01-29 18:42:42 -080072 dumpVal(out, "dataspace", toString(dataspace), dataspace);
Alec Mouric6f31012022-02-11 12:24:52 -080073 dumpVal(out, "whitePointNits", whitePointNits);
74 dumpVal(out, "dimmingRatio", dimmingRatio);
Alec Mouri96b96452021-03-16 17:03:43 -070075 dumpVal(out, "override buffer", overrideInfo.buffer.get());
76 dumpVal(out, "override acquire fence", overrideInfo.acquireFence.get());
77 dumpVal(out, "override display frame", overrideInfo.displayFrame);
78 dumpVal(out, "override dataspace", toString(overrideInfo.dataspace), overrideInfo.dataspace);
Alec Mouri7be6c0a2021-03-19 15:22:01 -070079 dumpVal(out, "override display space", to_string(overrideInfo.displaySpace));
Alec Mouri464352b2021-03-24 16:33:21 -070080 std::string damageRegionString;
81 overrideInfo.damageRegion.dump(damageRegionString, "");
82 dumpVal(out, "override damage region", damageRegionString);
83 std::string visibleRegionString;
84 overrideInfo.visibleRegion.dump(visibleRegionString, "");
85 dumpVal(out, "override visible region", visibleRegionString);
Alec Mourif54453c2021-05-13 16:28:28 -070086 dumpVal(out, "override peekThroughLayer", overrideInfo.peekThroughLayer);
87 dumpVal(out, "override disableBackgroundBlur", overrideInfo.disableBackgroundBlur);
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080088
89 if (hwc) {
90 dumpHwc(*hwc, out);
91 }
92
93 out.append("\n");
94}
95
96} // namespace android::compositionengine::impl