Merge "Added shader support to pipeline cache" into devel/master
[platform/core/uifw/dali-adaptor.git] / automated-tests / src / dali-adaptor / dali-test-suite-utils / test-graphics-application.cpp
1 /*
2  * Copyright (c) 2023 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 #include "test-graphics-application.h"
19 #include <test-graphics-sync-impl.h>
20
21 namespace Dali
22 {
23 bool TestGraphicsApplication::mLoggingEnabled = true;
24
25 TestGraphicsApplication::TestGraphicsApplication(uint32_t surfaceWidth,
26                                                  uint32_t surfaceHeight,
27                                                  uint32_t horizontalDpi,
28                                                  uint32_t verticalDpi,
29                                                  bool     initialize,
30                                                  bool     enablePartialUpdate)
31 : mCore(NULL),
32   mSurfaceWidth(surfaceWidth),
33   mSurfaceHeight(surfaceHeight),
34   mFrame(0u),
35   mDpi{horizontalDpi, verticalDpi},
36   mLastVSyncTime(0u),
37   mPartialUpdateEnabled(enablePartialUpdate)
38 {
39   if(initialize)
40   {
41     Initialize();
42   }
43 }
44
45 void TestGraphicsApplication::Initialize()
46 {
47   CreateCore();
48   CreateScene();
49   InitializeCore();
50 }
51
52 void TestGraphicsApplication::CreateCore()
53 {
54   Dali::Integration::Log::LogFunction logFunction(&TestGraphicsApplication::LogMessage);
55   Dali::Integration::Log::InstallLogFunction(logFunction);
56
57   Dali::Integration::Trace::LogContextFunction logContextFunction(&TestGraphicsApplication::LogContext);
58   Dali::Integration::Trace::InstallLogContextFunction(logContextFunction);
59
60   // We always need the first update!
61   mStatus.keepUpdating = Integration::KeepUpdating::STAGE_KEEP_RENDERING;
62
63   mGraphics.Initialize();
64   mGraphicsController.InitializeGLES(mGlAbstraction);
65   mGraphicsController.Initialize(mGraphicsSyncImplementation, mGlContextHelperAbstraction, mGraphics);
66
67   mCore = Dali::Integration::Core::New(mRenderController,
68                                        mPlatformAbstraction,
69                                        mGraphicsController,
70                                        Integration::RenderToFrameBuffer::FALSE,
71                                        Integration::DepthBufferAvailable::TRUE,
72                                        Integration::StencilBufferAvailable::TRUE,
73                                        mPartialUpdateEnabled ? Integration::PartialUpdateAvailable::TRUE : Integration::PartialUpdateAvailable::FALSE);
74
75   mCore->ContextCreated();
76
77   Dali::Integration::Trace::LogContext(true, "Test");
78 }
79
80 void TestGraphicsApplication::CreateScene()
81 {
82   mScene = Dali::Integration::Scene::New(Size(static_cast<float>(mSurfaceWidth), static_cast<float>(mSurfaceHeight)));
83   mScene.SetDpi(Vector2(static_cast<float>(mDpi.x), static_cast<float>(mDpi.y)));
84
85   Graphics::RenderTargetCreateInfo createInfo{};
86   createInfo.SetSurface({nullptr})
87     .SetExtent({mSurfaceWidth, mSurfaceHeight})
88     .SetPreTransform(0 | Graphics::RenderTargetTransformFlagBits::TRANSFORM_IDENTITY_BIT);
89   //mRenderTarget = mGraphicsController.CreateRenderTarget(createInfo, nullptr);
90   mScene.SetSurfaceRenderTarget(createInfo);
91 }
92
93 void TestGraphicsApplication::InitializeCore()
94 {
95   mCore->SceneCreated();
96   mCore->Initialize();
97 }
98
99 TestGraphicsApplication::~TestGraphicsApplication()
100 {
101   mGraphicsController.Shutdown();
102   Dali::Integration::Log::UninstallLogFunction();
103   delete mCore;
104 }
105
106 void TestGraphicsApplication::LogContext(bool start, const char* tag, const char* message)
107 {
108   if(start)
109   {
110     fprintf(stderr, "INFO: Trace Start: %s %s\n", tag, message ? message : "");
111   }
112   else
113   {
114     fprintf(stderr, "INFO: Trace End: %s %s\n", tag, message ? message : "");
115   }
116 }
117
118 void TestGraphicsApplication::LogMessage(Dali::Integration::Log::DebugPriority level, std::string& message)
119 {
120   if(mLoggingEnabled)
121   {
122     switch(level)
123     {
124       case Dali::Integration::Log::DEBUG:
125         fprintf(stderr, "DEBUG: %s", message.c_str());
126         break;
127       case Dali::Integration::Log::INFO:
128         fprintf(stderr, "INFO: %s", message.c_str());
129         break;
130       case Dali::Integration::Log::WARNING:
131         fprintf(stderr, "WARN: %s", message.c_str());
132         break;
133       case Dali::Integration::Log::ERROR:
134         fprintf(stderr, "ERROR: %s", message.c_str());
135         break;
136       default:
137         fprintf(stderr, "DEFAULT: %s", message.c_str());
138         break;
139     }
140   }
141 }
142
143 Dali::Integration::Core& TestGraphicsApplication::GetCore()
144 {
145   return *mCore;
146 }
147
148 TestPlatformAbstraction& TestGraphicsApplication::GetPlatform()
149 {
150   return mPlatformAbstraction;
151 }
152
153 TestRenderController& TestGraphicsApplication::GetRenderController()
154 {
155   return mRenderController;
156 }
157
158 Graphics::Controller& TestGraphicsApplication::GetGraphicsController()
159 {
160   return mGraphicsController;
161 }
162
163 TestGlAbstraction& TestGraphicsApplication::GetGlAbstraction()
164 {
165   return static_cast<TestGlAbstraction&>(mGraphicsController.GetGlAbstraction());
166 }
167
168 TestGlContextHelperAbstraction& TestGraphicsApplication::GetGlContextHelperAbstraction()
169 {
170   return static_cast<TestGlContextHelperAbstraction&>(mGraphicsController.GetGlContextHelperAbstraction());
171 }
172
173 void TestGraphicsApplication::ProcessEvent(const Integration::Event& event)
174 {
175   mCore->QueueEvent(event);
176   mCore->ProcessEvents();
177 }
178
179 void TestGraphicsApplication::SendNotification()
180 {
181   mCore->ProcessEvents();
182 }
183
184 void TestGraphicsApplication::DoUpdate(uint32_t intervalMilliseconds, const char* location)
185 {
186   if(GetUpdateStatus() == 0 &&
187      mRenderStatus.NeedsUpdate() == false &&
188      !GetRenderController().WasCalled(TestRenderController::RequestUpdateFunc))
189   {
190     fprintf(stderr, "WARNING - Update not required :%s\n", location == NULL ? "NULL" : location);
191   }
192
193   uint32_t nextVSyncTime  = mLastVSyncTime + intervalMilliseconds;
194   float    elapsedSeconds = static_cast<float>(intervalMilliseconds) * 0.001f;
195
196   mCore->Update(elapsedSeconds, mLastVSyncTime, nextVSyncTime, mStatus, false, false, false);
197
198   GetRenderController().Initialize();
199
200   mLastVSyncTime = nextVSyncTime;
201 }
202
203 bool TestGraphicsApplication::Render(uint32_t intervalMilliseconds, const char* location)
204 {
205   DoUpdate(intervalMilliseconds, location);
206
207   // Reset the status
208   mRenderStatus.SetNeedsUpdate(false);
209   mRenderStatus.SetNeedsPostRender(false);
210
211   mCore->PreRender(mRenderStatus, false /*do not force clear*/);
212   mCore->RenderScene(mRenderStatus, mScene, true /*render the off-screen buffers*/);
213   mCore->RenderScene(mRenderStatus, mScene, false /*render the surface*/);
214   mCore->PostRender();
215
216   mFrame++;
217
218   return mStatus.KeepUpdating() || mRenderStatus.NeedsUpdate();
219 }
220
221 bool TestGraphicsApplication::PreRenderWithPartialUpdate(uint32_t intervalMilliseconds, const char* location, std::vector<Rect<int>>& damagedRects)
222 {
223   DoUpdate(intervalMilliseconds, location);
224
225   mCore->PreRender(mRenderStatus, false /*do not force clear*/);
226   mCore->PreRender(mScene, damagedRects);
227
228   return mStatus.KeepUpdating() || mRenderStatus.NeedsUpdate();
229 }
230
231 bool TestGraphicsApplication::RenderWithPartialUpdate(std::vector<Rect<int>>& damagedRects, Rect<int>& clippingRect)
232 {
233   mCore->RenderScene(mRenderStatus, mScene, true /*render the off-screen buffers*/, clippingRect);
234   mCore->RenderScene(mRenderStatus, mScene, false /*render the surface*/, clippingRect);
235   mCore->PostRender();
236
237   mFrame++;
238
239   return mStatus.KeepUpdating() || mRenderStatus.NeedsUpdate();
240 }
241
242 uint32_t TestGraphicsApplication::GetUpdateStatus()
243 {
244   return mStatus.KeepUpdating();
245 }
246
247 bool TestGraphicsApplication::UpdateOnly(uint32_t intervalMilliseconds)
248 {
249   DoUpdate(intervalMilliseconds);
250   return mStatus.KeepUpdating();
251 }
252
253 bool TestGraphicsApplication::GetRenderNeedsUpdate()
254 {
255   return mRenderStatus.NeedsUpdate();
256 }
257
258 bool TestGraphicsApplication::GetRenderNeedsPostRender()
259 {
260   return mRenderStatus.NeedsPostRender();
261 }
262
263 bool TestGraphicsApplication::RenderOnly()
264 {
265   // Update Time values
266   mCore->PreRender(mRenderStatus, false /*do not force clear*/);
267   mCore->RenderScene(mRenderStatus, mScene, true /*render the off-screen buffers*/);
268   mCore->RenderScene(mRenderStatus, mScene, false /*render the surface*/);
269   mCore->PostRender();
270
271   mFrame++;
272
273   return mRenderStatus.NeedsUpdate();
274 }
275
276 void TestGraphicsApplication::ResetContext()
277 {
278   mCore->ContextDestroyed();
279   mGraphicsController.InitializeGLES(mGlAbstraction);
280   mGraphicsController.Initialize(mGraphicsSyncImplementation, mGlContextHelperAbstraction, mGraphics);
281   mCore->ContextCreated();
282 }
283
284 uint32_t TestGraphicsApplication::Wait(uint32_t durationToWait)
285 {
286   int time = 0;
287
288   for(uint32_t i = 0; i <= (durationToWait / RENDER_FRAME_INTERVAL); i++)
289   {
290     SendNotification();
291     Render(RENDER_FRAME_INTERVAL);
292     time += RENDER_FRAME_INTERVAL;
293   }
294   return time;
295 }
296
297 } // namespace Dali