blob: abf73adcbd3cfcb57976720e50cd7bf1b847e796 [file] [log] [blame]
Lloyd Pique70d91362018-10-18 16:02:55 -07001/*
2 * Copyright 2018 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 Piqueab039b52019-02-13 14:22:42 -080017#include <compositionengine/CompositionRefreshArgs.h>
18#include <compositionengine/LayerFE.h>
Lloyd Piquec7b0c752019-03-07 20:59:59 -080019#include <compositionengine/OutputLayer.h>
Lloyd Pique70d91362018-10-18 16:02:55 -070020#include <compositionengine/impl/CompositionEngine.h>
Lloyd Pique45a165a2018-10-19 11:54:47 -070021#include <compositionengine/impl/Display.h>
Lloyd Piquefeb73d72018-12-04 17:23:44 -080022#include <compositionengine/impl/Layer.h>
Lloyd Piqueb97e04f2018-10-18 17:07:05 -070023#include <renderengine/RenderEngine.h>
Lloyd Piqueab039b52019-02-13 14:22:42 -080024#include <utils/Trace.h>
Lloyd Pique70d91362018-10-18 16:02:55 -070025
Lloyd Pique441d5042018-10-18 16:49:51 -070026#include "DisplayHardware/HWComposer.h"
27
Lloyd Pique70d91362018-10-18 16:02:55 -070028namespace android::compositionengine {
29
30CompositionEngine::~CompositionEngine() = default;
31
32namespace impl {
33
34std::unique_ptr<compositionengine::CompositionEngine> createCompositionEngine() {
35 return std::make_unique<CompositionEngine>();
36}
37
38CompositionEngine::CompositionEngine() = default;
39CompositionEngine::~CompositionEngine() = default;
40
Lloyd Pique45a165a2018-10-19 11:54:47 -070041std::shared_ptr<compositionengine::Display> CompositionEngine::createDisplay(
Lloyd Piquea38ea7e2019-04-16 18:10:26 -070042 const DisplayCreationArgs& args) {
43 return compositionengine::impl::createDisplay(*this, args);
Lloyd Pique45a165a2018-10-19 11:54:47 -070044}
45
Lloyd Piquea38ea7e2019-04-16 18:10:26 -070046std::shared_ptr<compositionengine::Layer> CompositionEngine::createLayer(
47 const LayerCreationArgs& args) {
48 return compositionengine::impl::createLayer(args);
Lloyd Piquefeb73d72018-12-04 17:23:44 -080049}
50
Lloyd Pique441d5042018-10-18 16:49:51 -070051HWComposer& CompositionEngine::getHwComposer() const {
52 return *mHwComposer.get();
53}
54
55void CompositionEngine::setHwComposer(std::unique_ptr<HWComposer> hwComposer) {
56 mHwComposer = std::move(hwComposer);
57}
58
Lloyd Piqueb97e04f2018-10-18 17:07:05 -070059renderengine::RenderEngine& CompositionEngine::getRenderEngine() const {
60 return *mRenderEngine.get();
61}
62
63void CompositionEngine::setRenderEngine(std::unique_ptr<renderengine::RenderEngine> renderEngine) {
64 mRenderEngine = std::move(renderEngine);
65}
66
Lloyd Piqueab039b52019-02-13 14:22:42 -080067bool CompositionEngine::needsAnotherUpdate() const {
68 return mNeedsAnotherUpdate;
69}
70
71nsecs_t CompositionEngine::getLastFrameRefreshTimestamp() const {
72 return mRefreshStartTime;
73}
74
Lloyd Piqued7b429f2019-03-07 21:11:02 -080075void CompositionEngine::present(CompositionRefreshArgs& args) {
Lloyd Piquec29e4c62019-03-07 21:48:19 -080076 ATRACE_CALL();
77 ALOGV(__FUNCTION__);
78
79 preComposition(args);
80
81 {
82 // latchedLayers is used to track the set of front-end layer state that
83 // has been latched across all outputs for the prepare step, and is not
84 // needed for anything else.
85 LayerFESet latchedLayers;
86
87 for (const auto& output : args.outputs) {
88 output->prepare(args, latchedLayers);
89 }
Lloyd Pique3eb1b212019-03-07 21:15:40 -080090 }
91
92 updateLayerStateFromFE(args);
93
94 for (const auto& output : args.outputs) {
Lloyd Piqued7b429f2019-03-07 21:11:02 -080095 output->present(args);
96 }
97}
98
Lloyd Piquec7b0c752019-03-07 20:59:59 -080099void CompositionEngine::updateCursorAsync(CompositionRefreshArgs& args) {
100 std::unordered_map<compositionengine::LayerFE*, compositionengine::LayerFECompositionState*>
101 uniqueVisibleLayers;
102
103 for (const auto& output : args.outputs) {
104 for (auto& layer : output->getOutputLayersOrderedByZ()) {
105 if (layer->isHardwareCursor()) {
106 // Latch the cursor composition state from each front-end layer.
Lloyd Pique9755fb72019-03-26 14:44:40 -0700107 layer->getLayerFE().latchCursorCompositionState(layer->getLayer().editFEState());
108
Lloyd Piquec7b0c752019-03-07 20:59:59 -0800109 layer->writeCursorPositionToHWC();
110 }
111 }
112 }
113}
114
Lloyd Piqueab039b52019-02-13 14:22:42 -0800115void CompositionEngine::preComposition(CompositionRefreshArgs& args) {
116 ATRACE_CALL();
117 ALOGV(__FUNCTION__);
118
119 bool needsAnotherUpdate = false;
120
121 mRefreshStartTime = systemTime(SYSTEM_TIME_MONOTONIC);
122
123 for (auto& layer : args.layers) {
124 sp<compositionengine::LayerFE> layerFE = layer->getLayerFE();
125 if (layerFE && layerFE->onPreComposition(mRefreshStartTime)) {
126 needsAnotherUpdate = true;
127 }
128 }
129
130 mNeedsAnotherUpdate = needsAnotherUpdate;
131}
132
133void CompositionEngine::setNeedsAnotherUpdateForTest(bool value) {
134 mNeedsAnotherUpdate = value;
135}
136
Lloyd Pique3eb1b212019-03-07 21:15:40 -0800137void CompositionEngine::updateLayerStateFromFE(CompositionRefreshArgs& args) {
138 // Update the composition state from each front-end layer
139 for (const auto& output : args.outputs) {
140 output->updateLayerStateFromFE(args);
141 }
142}
143
Lloyd Pique70d91362018-10-18 16:02:55 -0700144} // namespace impl
145} // namespace android::compositionengine