blob: 71882819746e5cd0cb8ab1164277cf2e94038ba3 [file] [log] [blame]
Lloyd Pique32cbe282018-10-19 13:09:22 -07001/*
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
17#include <compositionengine/impl/DumpHelpers.h>
18#include <compositionengine/impl/OutputCompositionState.h>
19
20namespace android::compositionengine::impl {
Vishnu Nair47183ae2022-02-26 09:17:49 -080021using CompositionStrategyPredictionState =
22 OutputCompositionState::CompositionStrategyPredictionState;
23
24std::string toString(CompositionStrategyPredictionState state) {
25 switch (state) {
26 case CompositionStrategyPredictionState::DISABLED:
27 return "Disabled";
28 case CompositionStrategyPredictionState::SUCCESS:
29 return "Success";
30 case CompositionStrategyPredictionState::FAIL:
31 return "Fail";
32 }
33}
Lloyd Pique32cbe282018-10-19 13:09:22 -070034
35void OutputCompositionState::dump(std::string& out) const {
Lloyd Pique207def92019-02-28 16:09:52 -080036 out.append(" ");
Lloyd Pique32cbe282018-10-19 13:09:22 -070037 dumpVal(out, "isEnabled", isEnabled);
38 dumpVal(out, "isSecure", isSecure);
Lloyd Piqueef36b002019-01-23 17:52:04 -080039
Lloyd Pique66d68602019-02-13 14:23:31 -080040 dumpVal(out, "usesClientComposition", usesClientComposition);
41 dumpVal(out, "usesDeviceComposition", usesDeviceComposition);
42 dumpVal(out, "flipClientTarget", flipClientTarget);
Vishnu Nair9b079a22020-01-21 14:36:08 -080043 dumpVal(out, "reusedClientComposition", reusedClientComposition);
Dominik Laskowski29fa1462021-04-27 15:51:50 -070044 dumpVal(out, "layerFilter", layerFilter);
Lloyd Pique32cbe282018-10-19 13:09:22 -070045
46 out.append("\n ");
47
48 dumpVal(out, "transform", transform);
49
50 out.append("\n ");
Marin Shalamanov6ad317c2020-07-29 23:34:07 +020051 dumpVal(out, "layerStackSpace", to_string(layerStackSpace));
52 out.append("\n ");
Marin Shalamanovb15d2272020-09-17 21:41:52 +020053 dumpVal(out, "framebufferSpace", to_string(framebufferSpace));
54 out.append("\n ");
Marin Shalamanov6ad317c2020-07-29 23:34:07 +020055 dumpVal(out, "orientedDisplaySpace", to_string(orientedDisplaySpace));
56 out.append("\n ");
57 dumpVal(out, "displaySpace", to_string(displaySpace));
58 out.append("\n ");
Lloyd Pique32cbe282018-10-19 13:09:22 -070059 dumpVal(out, "needsFiltering", needsFiltering);
60
Lloyd Pique207def92019-02-28 16:09:52 -080061 out.append("\n ");
Lloyd Pique32cbe282018-10-19 13:09:22 -070062
63 dumpVal(out, "colorMode", toString(colorMode), colorMode);
64 dumpVal(out, "renderIntent", toString(renderIntent), renderIntent);
65 dumpVal(out, "dataspace", toString(dataspace), dataspace);
Lloyd Pique3eb1b212019-03-07 21:15:40 -080066 dumpVal(out, "colorTransformMatrix", colorTransformMatrix);
Lloyd Piquef5275482019-01-29 18:42:42 -080067 dumpVal(out, "target dataspace", toString(targetDataspace), targetDataspace);
Alec Mouric6f31012022-02-11 12:24:52 -080068 dumpVal(out, "displayBrightnessNits", displayBrightnessNits);
69 dumpVal(out, "sdrWhitePointNits", sdrWhitePointNits);
70 dumpVal(out, "clientTargetBrightness", clientTargetBrightness);
71 dumpVal(out, "displayBrightness", displayBrightness);
Vishnu Nair47183ae2022-02-26 09:17:49 -080072 dumpVal(out, "compositionStrategyPredictionState", toString(strategyPrediction));
Lloyd Pique32cbe282018-10-19 13:09:22 -070073
74 out.append("\n");
75}
76
77} // namespace android::compositionengine::impl