Lloyd Pique | 32cbe28 | 2018-10-19 13:09:22 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 20 | namespace android::compositionengine::impl { |
Vishnu Nair | 47183ae | 2022-02-26 09:17:49 -0800 | [diff] [blame^] | 21 | using CompositionStrategyPredictionState = |
| 22 | OutputCompositionState::CompositionStrategyPredictionState; |
| 23 | |
| 24 | std::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 Pique | 32cbe28 | 2018-10-19 13:09:22 -0700 | [diff] [blame] | 34 | |
| 35 | void OutputCompositionState::dump(std::string& out) const { |
Lloyd Pique | 207def9 | 2019-02-28 16:09:52 -0800 | [diff] [blame] | 36 | out.append(" "); |
Lloyd Pique | 32cbe28 | 2018-10-19 13:09:22 -0700 | [diff] [blame] | 37 | dumpVal(out, "isEnabled", isEnabled); |
| 38 | dumpVal(out, "isSecure", isSecure); |
Lloyd Pique | ef36b00 | 2019-01-23 17:52:04 -0800 | [diff] [blame] | 39 | |
Lloyd Pique | 66d6860 | 2019-02-13 14:23:31 -0800 | [diff] [blame] | 40 | dumpVal(out, "usesClientComposition", usesClientComposition); |
| 41 | dumpVal(out, "usesDeviceComposition", usesDeviceComposition); |
| 42 | dumpVal(out, "flipClientTarget", flipClientTarget); |
Vishnu Nair | 9b079a2 | 2020-01-21 14:36:08 -0800 | [diff] [blame] | 43 | dumpVal(out, "reusedClientComposition", reusedClientComposition); |
Dominik Laskowski | 29fa146 | 2021-04-27 15:51:50 -0700 | [diff] [blame] | 44 | dumpVal(out, "layerFilter", layerFilter); |
Lloyd Pique | 32cbe28 | 2018-10-19 13:09:22 -0700 | [diff] [blame] | 45 | |
| 46 | out.append("\n "); |
| 47 | |
| 48 | dumpVal(out, "transform", transform); |
| 49 | |
| 50 | out.append("\n "); |
Marin Shalamanov | 6ad317c | 2020-07-29 23:34:07 +0200 | [diff] [blame] | 51 | dumpVal(out, "layerStackSpace", to_string(layerStackSpace)); |
| 52 | out.append("\n "); |
Marin Shalamanov | b15d227 | 2020-09-17 21:41:52 +0200 | [diff] [blame] | 53 | dumpVal(out, "framebufferSpace", to_string(framebufferSpace)); |
| 54 | out.append("\n "); |
Marin Shalamanov | 6ad317c | 2020-07-29 23:34:07 +0200 | [diff] [blame] | 55 | dumpVal(out, "orientedDisplaySpace", to_string(orientedDisplaySpace)); |
| 56 | out.append("\n "); |
| 57 | dumpVal(out, "displaySpace", to_string(displaySpace)); |
| 58 | out.append("\n "); |
Lloyd Pique | 32cbe28 | 2018-10-19 13:09:22 -0700 | [diff] [blame] | 59 | dumpVal(out, "needsFiltering", needsFiltering); |
| 60 | |
Lloyd Pique | 207def9 | 2019-02-28 16:09:52 -0800 | [diff] [blame] | 61 | out.append("\n "); |
Lloyd Pique | 32cbe28 | 2018-10-19 13:09:22 -0700 | [diff] [blame] | 62 | |
| 63 | dumpVal(out, "colorMode", toString(colorMode), colorMode); |
| 64 | dumpVal(out, "renderIntent", toString(renderIntent), renderIntent); |
| 65 | dumpVal(out, "dataspace", toString(dataspace), dataspace); |
Lloyd Pique | 3eb1b21 | 2019-03-07 21:15:40 -0800 | [diff] [blame] | 66 | dumpVal(out, "colorTransformMatrix", colorTransformMatrix); |
Lloyd Pique | f527548 | 2019-01-29 18:42:42 -0800 | [diff] [blame] | 67 | dumpVal(out, "target dataspace", toString(targetDataspace), targetDataspace); |
Alec Mouri | c6f3101 | 2022-02-11 12:24:52 -0800 | [diff] [blame] | 68 | dumpVal(out, "displayBrightnessNits", displayBrightnessNits); |
| 69 | dumpVal(out, "sdrWhitePointNits", sdrWhitePointNits); |
| 70 | dumpVal(out, "clientTargetBrightness", clientTargetBrightness); |
| 71 | dumpVal(out, "displayBrightness", displayBrightness); |
Vishnu Nair | 47183ae | 2022-02-26 09:17:49 -0800 | [diff] [blame^] | 72 | dumpVal(out, "compositionStrategyPredictionState", toString(strategyPrediction)); |
Lloyd Pique | 32cbe28 | 2018-10-19 13:09:22 -0700 | [diff] [blame] | 73 | |
| 74 | out.append("\n"); |
| 75 | } |
| 76 | |
| 77 | } // namespace android::compositionengine::impl |