blob: 482250a16570b6cde82f7c17d3de1afdd356d554 [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 {
21
22void OutputCompositionState::dump(std::string& out) const {
Lloyd Pique207def92019-02-28 16:09:52 -080023 out.append(" ");
Lloyd Pique32cbe282018-10-19 13:09:22 -070024 dumpVal(out, "isEnabled", isEnabled);
25 dumpVal(out, "isSecure", isSecure);
Lloyd Piqueef36b002019-01-23 17:52:04 -080026
Lloyd Pique66d68602019-02-13 14:23:31 -080027 dumpVal(out, "usesClientComposition", usesClientComposition);
28 dumpVal(out, "usesDeviceComposition", usesDeviceComposition);
29 dumpVal(out, "flipClientTarget", flipClientTarget);
Vishnu Nair9b079a22020-01-21 14:36:08 -080030 dumpVal(out, "reusedClientComposition", reusedClientComposition);
Dominik Laskowski29fa1462021-04-27 15:51:50 -070031 dumpVal(out, "layerFilter", layerFilter);
Lloyd Pique32cbe282018-10-19 13:09:22 -070032
33 out.append("\n ");
34
35 dumpVal(out, "transform", transform);
36
37 out.append("\n ");
Marin Shalamanov6ad317c2020-07-29 23:34:07 +020038 dumpVal(out, "layerStackSpace", to_string(layerStackSpace));
39 out.append("\n ");
Marin Shalamanovb15d2272020-09-17 21:41:52 +020040 dumpVal(out, "framebufferSpace", to_string(framebufferSpace));
41 out.append("\n ");
Marin Shalamanov6ad317c2020-07-29 23:34:07 +020042 dumpVal(out, "orientedDisplaySpace", to_string(orientedDisplaySpace));
43 out.append("\n ");
44 dumpVal(out, "displaySpace", to_string(displaySpace));
45 out.append("\n ");
Lloyd Pique32cbe282018-10-19 13:09:22 -070046 dumpVal(out, "needsFiltering", needsFiltering);
47
Lloyd Pique207def92019-02-28 16:09:52 -080048 out.append("\n ");
Lloyd Pique32cbe282018-10-19 13:09:22 -070049
50 dumpVal(out, "colorMode", toString(colorMode), colorMode);
51 dumpVal(out, "renderIntent", toString(renderIntent), renderIntent);
52 dumpVal(out, "dataspace", toString(dataspace), dataspace);
Lloyd Pique3eb1b212019-03-07 21:15:40 -080053 dumpVal(out, "colorTransformMatrix", colorTransformMatrix);
Lloyd Piquef5275482019-01-29 18:42:42 -080054 dumpVal(out, "target dataspace", toString(targetDataspace), targetDataspace);
Alec Mouric6f31012022-02-11 12:24:52 -080055 dumpVal(out, "displayBrightnessNits", displayBrightnessNits);
56 dumpVal(out, "sdrWhitePointNits", sdrWhitePointNits);
57 dumpVal(out, "clientTargetBrightness", clientTargetBrightness);
58 dumpVal(out, "displayBrightness", displayBrightness);
Lloyd Pique32cbe282018-10-19 13:09:22 -070059
60 out.append("\n");
61}
62
63} // namespace android::compositionengine::impl