blob: 6ed50aa22390392d07eb24b41081555e313b7c73 [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(
42 DisplayCreationArgs&& args) {
43 return compositionengine::impl::createDisplay(*this, std::move(args));
44}
45
Lloyd Piquefeb73d72018-12-04 17:23:44 -080046std::shared_ptr<compositionengine::Layer> CompositionEngine::createLayer(LayerCreationArgs&& args) {
47 return compositionengine::impl::createLayer(*this, std::move(args));
48}
49
Lloyd Pique441d5042018-10-18 16:49:51 -070050HWComposer& CompositionEngine::getHwComposer() const {
51 return *mHwComposer.get();
52}
53
54void CompositionEngine::setHwComposer(std::unique_ptr<HWComposer> hwComposer) {
55 mHwComposer = std::move(hwComposer);
56}
57
Lloyd Piqueb97e04f2018-10-18 17:07:05 -070058renderengine::RenderEngine& CompositionEngine::getRenderEngine() const {
59 return *mRenderEngine.get();
60}
61
62void CompositionEngine::setRenderEngine(std::unique_ptr<renderengine::RenderEngine> renderEngine) {
63 mRenderEngine = std::move(renderEngine);
64}
65
Lloyd Piqueab039b52019-02-13 14:22:42 -080066bool CompositionEngine::needsAnotherUpdate() const {
67 return mNeedsAnotherUpdate;
68}
69
70nsecs_t CompositionEngine::getLastFrameRefreshTimestamp() const {
71 return mRefreshStartTime;
72}
73
Lloyd Piqued7b429f2019-03-07 21:11:02 -080074void CompositionEngine::present(CompositionRefreshArgs& args) {
75 for (const auto& output : args.outputs) {
76 output->present(args);
77 }
78}
79
Lloyd Piquec7b0c752019-03-07 20:59:59 -080080void CompositionEngine::updateCursorAsync(CompositionRefreshArgs& args) {
81 std::unordered_map<compositionengine::LayerFE*, compositionengine::LayerFECompositionState*>
82 uniqueVisibleLayers;
83
84 for (const auto& output : args.outputs) {
85 for (auto& layer : output->getOutputLayersOrderedByZ()) {
86 if (layer->isHardwareCursor()) {
87 // Latch the cursor composition state from each front-end layer.
88 layer->getLayerFE().latchCursorCompositionState(
89 layer->getLayer().editState().frontEnd);
90 layer->writeCursorPositionToHWC();
91 }
92 }
93 }
94}
95
Lloyd Piqueab039b52019-02-13 14:22:42 -080096void CompositionEngine::preComposition(CompositionRefreshArgs& args) {
97 ATRACE_CALL();
98 ALOGV(__FUNCTION__);
99
100 bool needsAnotherUpdate = false;
101
102 mRefreshStartTime = systemTime(SYSTEM_TIME_MONOTONIC);
103
104 for (auto& layer : args.layers) {
105 sp<compositionengine::LayerFE> layerFE = layer->getLayerFE();
106 if (layerFE && layerFE->onPreComposition(mRefreshStartTime)) {
107 needsAnotherUpdate = true;
108 }
109 }
110
111 mNeedsAnotherUpdate = needsAnotherUpdate;
112}
113
114void CompositionEngine::setNeedsAnotherUpdateForTest(bool value) {
115 mNeedsAnotherUpdate = value;
116}
117
Lloyd Pique70d91362018-10-18 16:02:55 -0700118} // namespace impl
119} // namespace android::compositionengine