blob: 127d729dedbd91996bcc559df13331b3f1baa151 [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 Pique70d91362018-10-18 16:02:55 -070017#include <compositionengine/impl/CompositionEngine.h>
Lloyd Pique45a165a2018-10-19 11:54:47 -070018#include <compositionengine/impl/Display.h>
Lloyd Piqueb97e04f2018-10-18 17:07:05 -070019#include <renderengine/RenderEngine.h>
Lloyd Pique70d91362018-10-18 16:02:55 -070020
Lloyd Pique441d5042018-10-18 16:49:51 -070021#include "DisplayHardware/HWComposer.h"
22
Lloyd Pique70d91362018-10-18 16:02:55 -070023namespace android::compositionengine {
24
25CompositionEngine::~CompositionEngine() = default;
26
27namespace impl {
28
29std::unique_ptr<compositionengine::CompositionEngine> createCompositionEngine() {
30 return std::make_unique<CompositionEngine>();
31}
32
33CompositionEngine::CompositionEngine() = default;
34CompositionEngine::~CompositionEngine() = default;
35
Lloyd Pique45a165a2018-10-19 11:54:47 -070036std::shared_ptr<compositionengine::Display> CompositionEngine::createDisplay(
37 DisplayCreationArgs&& args) {
38 return compositionengine::impl::createDisplay(*this, std::move(args));
39}
40
Lloyd Pique441d5042018-10-18 16:49:51 -070041HWComposer& CompositionEngine::getHwComposer() const {
42 return *mHwComposer.get();
43}
44
45void CompositionEngine::setHwComposer(std::unique_ptr<HWComposer> hwComposer) {
46 mHwComposer = std::move(hwComposer);
47}
48
Lloyd Piqueb97e04f2018-10-18 17:07:05 -070049renderengine::RenderEngine& CompositionEngine::getRenderEngine() const {
50 return *mRenderEngine.get();
51}
52
53void CompositionEngine::setRenderEngine(std::unique_ptr<renderengine::RenderEngine> renderEngine) {
54 mRenderEngine = std::move(renderEngine);
55}
56
Lloyd Pique70d91362018-10-18 16:02:55 -070057} // namespace impl
58} // namespace android::compositionengine