| Lloyd Pique | 70d9136 | 2018-10-18 16:02:55 -0700 | [diff] [blame] | 1 | /* | 
|  | 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 Pique | 70d9136 | 2018-10-18 16:02:55 -0700 | [diff] [blame] | 17 | #include <compositionengine/impl/CompositionEngine.h> | 
| Lloyd Pique | 45a165a | 2018-10-19 11:54:47 -0700 | [diff] [blame] | 18 | #include <compositionengine/impl/Display.h> | 
| Lloyd Pique | feb73d7 | 2018-12-04 17:23:44 -0800 | [diff] [blame] | 19 | #include <compositionengine/impl/Layer.h> | 
| Lloyd Pique | b97e04f | 2018-10-18 17:07:05 -0700 | [diff] [blame] | 20 | #include <renderengine/RenderEngine.h> | 
| Lloyd Pique | 70d9136 | 2018-10-18 16:02:55 -0700 | [diff] [blame] | 21 |  | 
| Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 22 | #include "DisplayHardware/HWComposer.h" | 
|  | 23 |  | 
| Lloyd Pique | 70d9136 | 2018-10-18 16:02:55 -0700 | [diff] [blame] | 24 | namespace android::compositionengine { | 
|  | 25 |  | 
|  | 26 | CompositionEngine::~CompositionEngine() = default; | 
|  | 27 |  | 
|  | 28 | namespace impl { | 
|  | 29 |  | 
|  | 30 | std::unique_ptr<compositionengine::CompositionEngine> createCompositionEngine() { | 
|  | 31 | return std::make_unique<CompositionEngine>(); | 
|  | 32 | } | 
|  | 33 |  | 
|  | 34 | CompositionEngine::CompositionEngine() = default; | 
|  | 35 | CompositionEngine::~CompositionEngine() = default; | 
|  | 36 |  | 
| Lloyd Pique | 45a165a | 2018-10-19 11:54:47 -0700 | [diff] [blame] | 37 | std::shared_ptr<compositionengine::Display> CompositionEngine::createDisplay( | 
|  | 38 | DisplayCreationArgs&& args) { | 
|  | 39 | return compositionengine::impl::createDisplay(*this, std::move(args)); | 
|  | 40 | } | 
|  | 41 |  | 
| Lloyd Pique | feb73d7 | 2018-12-04 17:23:44 -0800 | [diff] [blame] | 42 | std::shared_ptr<compositionengine::Layer> CompositionEngine::createLayer(LayerCreationArgs&& args) { | 
|  | 43 | return compositionengine::impl::createLayer(*this, std::move(args)); | 
|  | 44 | } | 
|  | 45 |  | 
| Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 46 | HWComposer& CompositionEngine::getHwComposer() const { | 
|  | 47 | return *mHwComposer.get(); | 
|  | 48 | } | 
|  | 49 |  | 
|  | 50 | void CompositionEngine::setHwComposer(std::unique_ptr<HWComposer> hwComposer) { | 
|  | 51 | mHwComposer = std::move(hwComposer); | 
|  | 52 | } | 
|  | 53 |  | 
| Lloyd Pique | b97e04f | 2018-10-18 17:07:05 -0700 | [diff] [blame] | 54 | renderengine::RenderEngine& CompositionEngine::getRenderEngine() const { | 
|  | 55 | return *mRenderEngine.get(); | 
|  | 56 | } | 
|  | 57 |  | 
|  | 58 | void CompositionEngine::setRenderEngine(std::unique_ptr<renderengine::RenderEngine> renderEngine) { | 
|  | 59 | mRenderEngine = std::move(renderEngine); | 
|  | 60 | } | 
|  | 61 |  | 
| Lloyd Pique | 70d9136 | 2018-10-18 16:02:55 -0700 | [diff] [blame] | 62 | } // namespace impl | 
|  | 63 | } // namespace android::compositionengine |