blob: 56f6d8881145f8ecd008dedf79f4fbf70c2b8d68 [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>
18
Lloyd Pique441d5042018-10-18 16:49:51 -070019#include "DisplayHardware/HWComposer.h"
20
Lloyd Pique70d91362018-10-18 16:02:55 -070021namespace android::compositionengine {
22
23CompositionEngine::~CompositionEngine() = default;
24
25namespace impl {
26
27std::unique_ptr<compositionengine::CompositionEngine> createCompositionEngine() {
28 return std::make_unique<CompositionEngine>();
29}
30
31CompositionEngine::CompositionEngine() = default;
32CompositionEngine::~CompositionEngine() = default;
33
Lloyd Pique441d5042018-10-18 16:49:51 -070034HWComposer& CompositionEngine::getHwComposer() const {
35 return *mHwComposer.get();
36}
37
38void CompositionEngine::setHwComposer(std::unique_ptr<HWComposer> hwComposer) {
39 mHwComposer = std::move(hwComposer);
40}
41
Lloyd Pique70d91362018-10-18 16:02:55 -070042} // namespace impl
43} // namespace android::compositionengine