3885134d5cd7d3ab3db00fc7881113a2bc06b39b
[platform/core/uifw/dali-adaptor.git] / dali / internal / graphics / gles / egl-implementation.cpp
1 /*
2  * Copyright (c) 2019 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
19 // CLASS HEADER
20 #include <dali/internal/graphics/gles/egl-implementation.h>
21
22 // EXTERNAL INCLUDES
23 #include <sstream>
24 #include <dali/integration-api/debug.h>
25 #include <dali/public-api/common/dali-vector.h>
26
27 // INTERNAL INCLUDES
28 #include <dali/public-api/dali-adaptor-common.h>
29 #include <dali/internal/graphics/gles/gl-implementation.h>
30 #include <dali/internal/graphics/gles/egl-debug.h>
31
32 // EGL constants use C style casts
33 #pragma GCC diagnostic push
34 #pragma GCC diagnostic ignored "-Wold-style-cast"
35
36 namespace
37 {
38   const uint32_t CHECK_EXTENSION_NUMBER = 2;
39   const std::string EGL_KHR_SURFACELESS_CONTEXT = "EGL_KHR_surfaceless_context";
40   const std::string EGL_KHR_CREATE_CONTEXT = "EGL_KHR_create_context";
41 }
42
43 namespace Dali
44 {
45
46 namespace Internal
47 {
48
49 namespace Adaptor
50 {
51
52 #define TEST_EGL_ERROR(lastCommand) \
53 { \
54   EGLint err = eglGetError(); \
55   if (err != EGL_SUCCESS) \
56   { \
57     DALI_LOG_ERROR("EGL error after %s\n", lastCommand); \
58     Egl::PrintError(err); \
59     DALI_ASSERT_ALWAYS(0 && "EGL error"); \
60   } \
61 }
62
63 EglImplementation::EglImplementation( int multiSamplingLevel,
64                                       Integration::DepthBufferAvailable depthBufferRequired,
65                                       Integration::StencilBufferAvailable stencilBufferRequired )
66 : mContextAttribs(),
67   mEglNativeDisplay( 0 ),
68   mEglNativeWindow( 0 ),
69   mCurrentEglNativePixmap( 0 ),
70   mEglDisplay( 0 ),
71   mEglConfig( 0 ),
72   mEglContext( 0 ),
73   mCurrentEglSurface( 0 ),
74   mCurrentEglContext( EGL_NO_CONTEXT ),
75   mMultiSamplingLevel( multiSamplingLevel ),
76   mGlesVersion( 30 ),
77   mColorDepth( COLOR_DEPTH_24 ),
78   mGlesInitialized( false ),
79   mIsOwnSurface( true ),
80   mIsWindow( true ),
81   mDepthBufferRequired( depthBufferRequired == Integration::DepthBufferAvailable::TRUE ),
82   mStencilBufferRequired( stencilBufferRequired == Integration::StencilBufferAvailable::TRUE ),
83   mIsSurfacelessContextSupported( false ),
84   mIsKhrCreateContextSupported( false )
85 {
86 }
87
88 EglImplementation::~EglImplementation()
89 {
90   TerminateGles();
91 }
92
93 bool EglImplementation::InitializeGles( EGLNativeDisplayType display, bool isOwnSurface )
94 {
95   if ( !mGlesInitialized )
96   {
97     mEglNativeDisplay = display;
98
99     //@todo see if we can just EGL_DEFAULT_DISPLAY instead
100     mEglDisplay = eglGetDisplay(mEglNativeDisplay);
101     EGLint error = eglGetError();
102
103     if( mEglDisplay == NULL && error != EGL_SUCCESS )
104     {
105       throw Dali::DaliException( "", "OpenGL ES is not supported");
106     }
107
108     EGLint majorVersion = 0;
109     EGLint minorVersion = 0;
110     if ( !eglInitialize( mEglDisplay, &majorVersion, &minorVersion ) )
111     {
112       return false;
113     }
114     eglBindAPI(EGL_OPENGL_ES_API);
115
116     mGlesInitialized = true;
117     mIsOwnSurface = isOwnSurface;
118   }
119
120   // Query EGL extensions to check whether surfaceless context is supported
121   const char* const extensionStr = eglQueryString( mEglDisplay, EGL_EXTENSIONS );
122   std::istringstream stream( extensionStr );
123   std::string currentExtension;
124   uint32_t extensionCheckCount = 0;
125   while( std::getline( stream, currentExtension, ' ' ) && extensionCheckCount < CHECK_EXTENSION_NUMBER )
126   {
127     if( currentExtension == EGL_KHR_SURFACELESS_CONTEXT )
128     {
129       mIsSurfacelessContextSupported = true;
130       extensionCheckCount++;
131     }
132     if( currentExtension == EGL_KHR_CREATE_CONTEXT )
133     {
134       mIsKhrCreateContextSupported = true;
135       extensionCheckCount++;
136     }
137   }
138
139   // We want to display this information all the time, so use the LogMessage directly
140   Integration::Log::LogMessage(Integration::Log::DebugInfo, "EGL Information\n"
141       "            Vendor:        %s\n"
142       "            Version:       %s\n"
143       "            Client APIs:   %s\n"
144       "            Extensions:    %s\n",
145       eglQueryString( mEglDisplay, EGL_VENDOR ),
146       eglQueryString( mEglDisplay, EGL_VERSION ),
147       eglQueryString( mEglDisplay, EGL_CLIENT_APIS ),
148       extensionStr);
149
150   return mGlesInitialized;
151 }
152
153 bool EglImplementation::CreateContext()
154 {
155   // make sure a context isn't created twice
156   DALI_ASSERT_ALWAYS( (mEglContext == 0) && "EGL context recreated" );
157
158   mEglContext = eglCreateContext(mEglDisplay, mEglConfig, NULL, &(mContextAttribs[0]));
159   TEST_EGL_ERROR("eglCreateContext render thread");
160
161   DALI_ASSERT_ALWAYS( EGL_NO_CONTEXT != mEglContext && "EGL context not created" );
162
163   DALI_LOG_INFO(Debug::Filter::gShader, Debug::General, "*** GL_VENDOR : %s ***\n", glGetString(GL_VENDOR));
164   DALI_LOG_INFO(Debug::Filter::gShader, Debug::General, "*** GL_RENDERER : %s ***\n", glGetString(GL_RENDERER));
165   DALI_LOG_INFO(Debug::Filter::gShader, Debug::General, "*** GL_VERSION : %s ***\n", glGetString(GL_VERSION));
166   DALI_LOG_INFO(Debug::Filter::gShader, Debug::General, "*** GL_SHADING_LANGUAGE_VERSION : %s***\n", glGetString(GL_SHADING_LANGUAGE_VERSION));
167   DALI_LOG_INFO(Debug::Filter::gShader, Debug::General, "*** Supported Extensions ***\n%s\n\n", glGetString(GL_EXTENSIONS));
168
169   return true;
170 }
171
172 bool EglImplementation::CreateWindowContext( EGLContext& eglContext )
173 {
174   // make sure a context isn't created twice
175   DALI_ASSERT_ALWAYS( (eglContext == 0) && "EGL context recreated" );
176
177   eglContext = eglCreateContext(mEglDisplay, mEglConfig, mEglContext, &(mContextAttribs[0]));
178   TEST_EGL_ERROR("eglCreateContext render thread");
179
180   DALI_ASSERT_ALWAYS( EGL_NO_CONTEXT != eglContext && "EGL context not created" );
181
182   DALI_LOG_INFO(Debug::Filter::gShader, Debug::General, "*** GL_VENDOR : %s ***\n", glGetString(GL_VENDOR));
183   DALI_LOG_INFO(Debug::Filter::gShader, Debug::General, "*** GL_RENDERER : %s ***\n", glGetString(GL_RENDERER));
184   DALI_LOG_INFO(Debug::Filter::gShader, Debug::General, "*** GL_VERSION : %s ***\n", glGetString(GL_VERSION));
185   DALI_LOG_INFO(Debug::Filter::gShader, Debug::General, "*** GL_SHADING_LANGUAGE_VERSION : %s***\n", glGetString(GL_SHADING_LANGUAGE_VERSION));
186   DALI_LOG_INFO(Debug::Filter::gShader, Debug::General, "*** Supported Extensions ***\n%s\n\n", glGetString(GL_EXTENSIONS));
187
188   mEglWindowContexts.push_back( eglContext );
189
190   return true;
191 }
192
193 void EglImplementation::DestroyContext( EGLContext& eglContext )
194 {
195   DALI_ASSERT_ALWAYS( mEglContext && "no EGL context" );
196
197   eglDestroyContext( mEglDisplay, eglContext );
198   eglContext = 0;
199 }
200
201 void EglImplementation::DestroySurface( EGLSurface& eglSurface )
202 {
203   if(mIsOwnSurface && eglSurface)
204   {
205     // Make context null to prevent crash in driver side
206     MakeContextNull();
207     eglDestroySurface( mEglDisplay, eglSurface );
208     eglSurface = 0;
209   }
210 }
211
212 void EglImplementation::MakeContextCurrent( EGLSurface eglSurface, EGLContext eglContext )
213 {
214   if (mCurrentEglContext == eglContext)
215   {
216     return;
217   }
218
219   mCurrentEglSurface = eglSurface;
220
221   if(mIsOwnSurface)
222   {
223     eglMakeCurrent( mEglDisplay, eglSurface, eglSurface, eglContext );
224
225     mCurrentEglContext = eglContext;
226   }
227
228   EGLint error = eglGetError();
229
230   if ( error != EGL_SUCCESS )
231   {
232     Egl::PrintError(error);
233
234     DALI_ASSERT_ALWAYS(false && "MakeContextCurrent failed!");
235   }
236 }
237
238 void EglImplementation::MakeCurrent( EGLNativePixmapType pixmap, EGLSurface eglSurface )
239 {
240   if (mCurrentEglContext == mEglContext)
241   {
242     return;
243   }
244
245   mCurrentEglNativePixmap = pixmap;
246   mCurrentEglSurface = eglSurface;
247
248   if(mIsOwnSurface)
249   {
250     eglMakeCurrent( mEglDisplay, eglSurface, eglSurface, mEglContext );
251
252     mCurrentEglContext = mEglContext;
253   }
254
255   EGLint error = eglGetError();
256
257   if ( error != EGL_SUCCESS )
258   {
259     Egl::PrintError(error);
260
261     DALI_ASSERT_ALWAYS(false && "MakeCurrent failed!");
262   }
263 }
264
265 void EglImplementation::MakeContextNull()
266 {
267   // clear the current context
268   eglMakeCurrent( mEglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT );
269   mCurrentEglContext = EGL_NO_CONTEXT;
270 }
271
272 void EglImplementation::TerminateGles()
273 {
274   if ( mGlesInitialized )
275   {
276     // Make context null to prevent crash in driver side
277     MakeContextNull();
278
279     for ( auto eglSurface : mEglWindowSurfaces )
280     {
281       if(mIsOwnSurface && eglSurface)
282       {
283         eglDestroySurface(mEglDisplay, eglSurface);
284       }
285     }
286     eglDestroyContext(mEglDisplay, mEglContext);
287     for ( auto eglContext : mEglWindowContexts )
288     {
289       eglDestroyContext(mEglDisplay, eglContext);
290     }
291
292     eglTerminate(mEglDisplay);
293
294     mEglDisplay = NULL;
295     mEglConfig  = NULL;
296     mEglContext = NULL;
297     mCurrentEglSurface = NULL;
298     mCurrentEglContext = EGL_NO_CONTEXT;
299
300     mGlesInitialized = false;
301   }
302 }
303
304 bool EglImplementation::IsGlesInitialized() const
305 {
306   return mGlesInitialized;
307 }
308
309 void EglImplementation::SwapBuffers( EGLSurface& eglSurface )
310 {
311   if ( eglSurface != EGL_NO_SURFACE ) // skip if using surfaceless context
312   {
313     eglSwapBuffers( mEglDisplay, eglSurface );
314   }
315 }
316
317 void EglImplementation::CopyBuffers( EGLSurface& eglSurface )
318 {
319   eglCopyBuffers( mEglDisplay, eglSurface, mCurrentEglNativePixmap );
320 }
321
322 void EglImplementation::WaitGL()
323 {
324   eglWaitGL();
325 }
326
327 bool EglImplementation::ChooseConfig( bool isWindowType, ColorDepth depth )
328 {
329   if(mEglConfig && isWindowType == mIsWindow && mColorDepth == depth)
330   {
331     return true;
332   }
333
334   mColorDepth = depth;
335   mIsWindow = isWindowType;
336
337   EGLint numConfigs;
338   Vector<EGLint> configAttribs;
339   configAttribs.Reserve(31);
340
341   if(isWindowType)
342   {
343     configAttribs.PushBack( EGL_SURFACE_TYPE );
344     configAttribs.PushBack( EGL_WINDOW_BIT );
345   }
346   else
347   {
348     configAttribs.PushBack( EGL_SURFACE_TYPE );
349     configAttribs.PushBack( EGL_PIXMAP_BIT );
350   }
351
352   configAttribs.PushBack( EGL_RENDERABLE_TYPE );
353
354   if( mGlesVersion >= 30 )
355   {
356     configAttribs.PushBack( EGL_OPENGL_ES3_BIT_KHR );
357   }
358   else
359   {
360     configAttribs.PushBack( EGL_OPENGL_ES2_BIT );
361   }
362
363 // TODO: enable this flag when it becomes supported
364 //  configAttribs.PushBack( EGL_CONTEXT_FLAGS_KHR );
365 //  configAttribs.PushBack( EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE_BIT_KHR );
366
367   configAttribs.PushBack( EGL_RED_SIZE );
368   configAttribs.PushBack( 8 );
369   configAttribs.PushBack( EGL_GREEN_SIZE );
370   configAttribs.PushBack( 8 );
371   configAttribs.PushBack( EGL_BLUE_SIZE );
372   configAttribs.PushBack( 8 );
373
374 //  For underlay video playback, we also need to set the alpha value of the 24/32bit window.
375   configAttribs.PushBack( EGL_ALPHA_SIZE );
376   configAttribs.PushBack( 8 );
377
378   configAttribs.PushBack( EGL_DEPTH_SIZE );
379   configAttribs.PushBack( mDepthBufferRequired ? 24 : 0 );
380   configAttribs.PushBack( EGL_STENCIL_SIZE );
381   configAttribs.PushBack( mStencilBufferRequired ? 8 : 0 );
382
383 #ifndef DALI_PROFILE_UBUNTU
384   if( mMultiSamplingLevel != EGL_DONT_CARE )
385   {
386     configAttribs.PushBack( EGL_SAMPLES );
387     configAttribs.PushBack( mMultiSamplingLevel );
388     configAttribs.PushBack( EGL_SAMPLE_BUFFERS );
389     configAttribs.PushBack( 1 );
390   }
391 #endif // DALI_PROFILE_UBUNTU
392   configAttribs.PushBack( EGL_NONE );
393
394   // Ensure number of configs is set to 1 as on some drivers,
395   // eglChooseConfig succeeds but does not actually create a proper configuration.
396   if ( ( eglChooseConfig( mEglDisplay, &(configAttribs[0]), &mEglConfig, 1, &numConfigs ) != EGL_TRUE ) ||
397        ( numConfigs != 1 ) )
398   {
399     if( mGlesVersion >= 30 )
400     {
401       mEglConfig = NULL;
402       DALI_LOG_ERROR("Fail to use OpenGL es 3.0. Retrying to use OpenGL es 2.0.");
403       return false;
404     }
405
406     if ( numConfigs != 1 )
407     {
408       DALI_LOG_ERROR("No configurations found.\n");
409
410       TEST_EGL_ERROR("eglChooseConfig");
411     }
412
413     EGLint error = eglGetError();
414     switch (error)
415     {
416       case EGL_BAD_DISPLAY:
417       {
418         DALI_LOG_ERROR("Display is not an EGL display connection\n");
419         break;
420       }
421       case EGL_BAD_ATTRIBUTE:
422       {
423         DALI_LOG_ERROR("The parameter configAttribs contains an invalid frame buffer configuration attribute or an attribute value that is unrecognized or out of range\n");
424         break;
425       }
426       case EGL_NOT_INITIALIZED:
427       {
428         DALI_LOG_ERROR("Display has not been initialized\n");
429         break;
430       }
431       case EGL_BAD_PARAMETER:
432       {
433         DALI_LOG_ERROR("The parameter numConfig is NULL\n");
434         break;
435       }
436       default:
437       {
438         DALI_LOG_ERROR("Unknown error.\n");
439       }
440     }
441     DALI_ASSERT_ALWAYS(false && "eglChooseConfig failed!");
442     return false;
443   }
444   Integration::Log::LogMessage(Integration::Log::DebugInfo, "Using OpenGL es %d.%d.\n", mGlesVersion / 10, mGlesVersion % 10 );
445
446   mContextAttribs.Clear();
447   if( mIsKhrCreateContextSupported )
448   {
449     mContextAttribs.Reserve(5);
450     mContextAttribs.PushBack( EGL_CONTEXT_MAJOR_VERSION_KHR );
451     mContextAttribs.PushBack( mGlesVersion / 10 );
452     mContextAttribs.PushBack( EGL_CONTEXT_MINOR_VERSION_KHR );
453     mContextAttribs.PushBack( mGlesVersion % 10 );
454   }
455   else
456   {
457     mContextAttribs.Reserve(3);
458     mContextAttribs.PushBack( EGL_CONTEXT_CLIENT_VERSION );
459     mContextAttribs.PushBack( mGlesVersion / 10 );
460   }
461   mContextAttribs.PushBack( EGL_NONE );
462
463   return true;
464 }
465
466 EGLSurface EglImplementation::CreateSurfaceWindow( EGLNativeWindowType window, ColorDepth depth )
467 {
468   mEglNativeWindow = window;
469   mColorDepth = depth;
470   mIsWindow = true;
471
472   // egl choose config
473   ChooseConfig(mIsWindow, mColorDepth);
474
475   mCurrentEglSurface = eglCreateWindowSurface( mEglDisplay, mEglConfig, mEglNativeWindow, NULL );
476   TEST_EGL_ERROR("eglCreateWindowSurface");
477
478   DALI_ASSERT_ALWAYS( mCurrentEglSurface && "Create window surface failed" );
479
480   return mCurrentEglSurface;
481 }
482
483 EGLSurface EglImplementation::CreateSurfacePixmap( EGLNativePixmapType pixmap, ColorDepth depth )
484 {
485   mCurrentEglNativePixmap = pixmap;
486   mColorDepth = depth;
487   mIsWindow = false;
488
489   // egl choose config
490   ChooseConfig(mIsWindow, mColorDepth);
491
492   mCurrentEglSurface = eglCreatePixmapSurface( mEglDisplay, mEglConfig, mCurrentEglNativePixmap, NULL );
493   TEST_EGL_ERROR("eglCreatePixmapSurface");
494
495   DALI_ASSERT_ALWAYS( mCurrentEglSurface && "Create pixmap surface failed" );
496
497   return mCurrentEglSurface;
498 }
499
500 bool EglImplementation::ReplaceSurfaceWindow( EGLNativeWindowType window, EGLSurface& eglSurface, EGLContext& eglContext )
501 {
502   bool contextLost = false;
503
504   // display connection has not changed, then we can just create a new surface
505   //  the surface is bound to the context, so set the context to null
506   MakeContextNull();
507
508   // destroy the surface
509   DestroySurface( eglSurface );
510
511   // create the EGL surface
512   EGLSurface newEglSurface = CreateSurfaceWindow( window, mColorDepth );
513
514   // set the context to be current with the new surface
515   MakeContextCurrent( newEglSurface, eglContext );
516
517   return contextLost;
518 }
519
520 bool EglImplementation::ReplaceSurfacePixmap( EGLNativePixmapType pixmap, EGLSurface& eglSurface )
521 {
522   bool contextLost = false;
523
524   // display connection has not changed, then we can just create a new surface
525   // create the EGL surface
526   eglSurface = CreateSurfacePixmap( pixmap, mColorDepth );
527
528   // set the eglSurface to be current
529   MakeCurrent( pixmap, eglSurface );
530
531   return contextLost;
532 }
533
534 void EglImplementation::SetGlesVersion( const int32_t glesVersion )
535 {
536   mGlesVersion = glesVersion;
537 }
538
539 EGLDisplay EglImplementation::GetDisplay() const
540 {
541   return mEglDisplay;
542 }
543
544 EGLContext EglImplementation::GetContext() const
545 {
546   return mEglContext;
547 }
548
549 int32_t EglImplementation::GetGlesVersion() const
550 {
551   return mGlesVersion;
552 }
553
554 bool EglImplementation::IsSurfacelessContextSupported() const
555 {
556   return mIsSurfacelessContextSupported;
557 }
558
559 void EglImplementation::WaitClient()
560 {
561   // Wait for EGL to finish executing all rendering calls for the current context
562   if ( eglWaitClient() != EGL_TRUE )
563   {
564     TEST_EGL_ERROR("eglWaitClient");
565   }
566 }
567
568 } // namespace Adaptor
569
570 } // namespace Internal
571
572 } // namespace Dali
573
574 #pragma GCC diagnostic pop