Remove RenderSurface from Core
[platform/core/uifw/dali-core.git] / dali / integration-api / core.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
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  */
17
18 // CLASS HEADER
19 #include <dali/integration-api/core.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/common/dali-common.h>
23 #include <dali/public-api/actors/layer.h>
24 #include <dali/public-api/render-tasks/render-task-list.h>
25 #include <dali/integration-api/events/event.h>
26 #include <dali/integration-api/gl-sync-abstraction.h>
27 #include <dali/integration-api/gl-context-helper-abstraction.h>
28 #include <dali/integration-api/processor-interface.h>
29 #include <dali/internal/common/core-impl.h>
30
31 namespace Dali
32 {
33
34 namespace Integration
35 {
36
37 Core* Core::New( RenderController& renderController,
38                  PlatformAbstraction& platformAbstraction,
39                  GlAbstraction& glAbstraction,
40                  GlSyncAbstraction& glSyncAbstraction,
41                  GlContextHelperAbstraction& glContextHelperAbstraction,
42                  RenderToFrameBuffer renderToFboEnabled,
43                  DepthBufferAvailable depthBufferAvailable,
44                  StencilBufferAvailable stencilBufferAvailable )
45 {
46   Core* instance = new Core;
47   instance->mImpl = new Internal::Core( renderController,
48                                         platformAbstraction,
49                                         glAbstraction,
50                                         glSyncAbstraction,
51                                         glContextHelperAbstraction,
52                                         renderToFboEnabled,
53                                         depthBufferAvailable,
54                                         stencilBufferAvailable );
55
56   return instance;
57 }
58
59 Core::~Core()
60 {
61   delete mImpl;
62 }
63
64 void Core::Initialize()
65 {
66   mImpl->Initialize();
67 }
68
69 ContextNotifierInterface* Core::GetContextNotifier()
70 {
71   return mImpl->GetContextNotifier();
72 }
73
74 void Core::ContextCreated()
75 {
76   mImpl->ContextCreated();
77 }
78
79 void Core::ContextDestroyed()
80 {
81   mImpl->ContextDestroyed();
82 }
83
84 void Core::RecoverFromContextLoss()
85 {
86   mImpl->RecoverFromContextLoss();
87 }
88
89 void Core::SceneCreated()
90 {
91   mImpl->SceneCreated();
92 }
93
94 void Core::QueueEvent(const Event& event)
95 {
96   mImpl->QueueEvent(event);
97 }
98
99 void Core::ProcessEvents()
100 {
101   mImpl->ProcessEvents();
102 }
103
104 uint32_t Core::GetMaximumUpdateCount() const
105 {
106   return mImpl->GetMaximumUpdateCount();
107 }
108
109 void Core::Update( float elapsedSeconds, uint32_t lastVSyncTimeMilliseconds, uint32_t nextVSyncTimeMilliseconds, UpdateStatus& status, bool renderToFboEnabled, bool isRenderingToFbo )
110 {
111   mImpl->Update( elapsedSeconds, lastVSyncTimeMilliseconds, nextVSyncTimeMilliseconds, status, renderToFboEnabled, isRenderingToFbo );
112 }
113
114 void Core::PreRender( RenderStatus& status, bool forceClear, bool uploadOnly )
115 {
116   mImpl->PreRender( status, forceClear, uploadOnly );
117 }
118
119 void Core::RenderScene( Integration::Scene& scene, bool renderToFbo )
120 {
121   mImpl->RenderScene( scene, renderToFbo );
122 }
123
124 void Core::PostRender( bool uploadOnly )
125 {
126   mImpl->PostRender( uploadOnly );
127 }
128
129 void Core::RegisterProcessor( Processor& processor )
130 {
131   mImpl->RegisterProcessor( processor );
132 }
133
134 void Core::UnregisterProcessor( Processor& processor )
135 {
136   mImpl->UnregisterProcessor( processor );
137 }
138
139 Core::Core()
140 : mImpl( NULL )
141 {
142 }
143
144 } // namespace Integration
145
146 } // namespace Dali