blob: 8bc3a349ca709703e06c1d0739ed3e32c11bcf52 [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 Piquec7b0c752019-03-07 20:59:59 -080074void CompositionEngine::updateCursorAsync(CompositionRefreshArgs& args) {
75 std::unordered_map<compositionengine::LayerFE*, compositionengine::LayerFECompositionState*>
76 uniqueVisibleLayers;
77
78 for (const auto& output : args.outputs) {
79 for (auto& layer : output->getOutputLayersOrderedByZ()) {
80 if (layer->isHardwareCursor()) {
81 // Latch the cursor composition state from each front-end layer.
82 layer->getLayerFE().latchCursorCompositionState(
83 layer->getLayer().editState().frontEnd);
84 layer->writeCursorPositionToHWC();
85 }
86 }
87 }
88}
89
Lloyd Piqueab039b52019-02-13 14:22:42 -080090void CompositionEngine::preComposition(CompositionRefreshArgs& args) {
91 ATRACE_CALL();
92 ALOGV(__FUNCTION__);
93
94 bool needsAnotherUpdate = false;
95
96 mRefreshStartTime = systemTime(SYSTEM_TIME_MONOTONIC);
97
98 for (auto& layer : args.layers) {
99 sp<compositionengine::LayerFE> layerFE = layer->getLayerFE();
100 if (layerFE && layerFE->onPreComposition(mRefreshStartTime)) {
101 needsAnotherUpdate = true;
102 }
103 }
104
105 mNeedsAnotherUpdate = needsAnotherUpdate;
106}
107
108void CompositionEngine::setNeedsAnotherUpdateForTest(bool value) {
109 mNeedsAnotherUpdate = value;
110}
111
Lloyd Pique70d91362018-10-18 16:02:55 -0700112} // namespace impl
113} // namespace android::compositionengine