Support surfaceless context for OpenGL ES 2
[platform/core/uifw/dali-adaptor.git] / dali / internal / graphics / gles / egl-graphics.cpp
1 /*
2  * Copyright (c) 2018 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-graphics.h>
21
22 // INTERNAL INCLUDES
23 #include <dali/internal/window-system/common/display-utils.h> // For Utils::MakeUnique
24
25 namespace Dali
26 {
27 namespace Internal
28 {
29 namespace Adaptor
30 {
31
32 EglGraphics::EglGraphics( )
33 : mMultiSamplingLevel( 0 )
34 {
35 }
36
37 EglGraphics::~EglGraphics()
38 {
39 }
40
41 void EglGraphics::SetGlesVersion( const int32_t glesVersion )
42 {
43   mEglImplementation->SetGlesVersion( glesVersion );
44   mGLES->SetGlesVersion( glesVersion );
45 }
46
47 void EglGraphics::SetIsSurfacelessContextSupported( const bool isSupported )
48 {
49   mGLES->SetIsSurfacelessContextSupported( isSupported );
50 }
51
52 void EglGraphics::Initialize( EnvironmentOptions* environmentOptions )
53 {
54   if( environmentOptions->GetGlesCallTime() > 0 )
55   {
56     mGLES = Utils::MakeUnique< GlProxyImplementation >( *environmentOptions );
57   }
58   else
59   {
60     mGLES.reset ( new GlImplementation() );
61   }
62
63   mDepthBufferRequired = static_cast< Integration::DepthBufferAvailable >( environmentOptions->DepthBufferRequired() );
64   mStencilBufferRequired = static_cast< Integration::StencilBufferAvailable >( environmentOptions->StencilBufferRequired() );
65
66   mMultiSamplingLevel = environmentOptions->GetMultiSamplingLevel();
67
68   mEglSync = Utils::MakeUnique< EglSyncImplementation >();
69 }
70
71 EglInterface* EglGraphics::Create()
72 {
73   mEglImplementation = Utils::MakeUnique< EglImplementation >( mMultiSamplingLevel, mDepthBufferRequired, mStencilBufferRequired );
74   mEglImageExtensions = Utils::MakeUnique< EglImageExtensions >( mEglImplementation.get() );
75
76   mEglSync->Initialize( mEglImplementation.get() ); // The sync impl needs the EglDisplay
77
78   return mEglImplementation.get();
79 }
80
81 void EglGraphics::Destroy()
82 {
83 }
84
85 GlImplementation& EglGraphics::GetGlesInterface()
86 {
87   return *mGLES;
88 }
89
90 Integration::GlAbstraction& EglGraphics::GetGlAbstraction() const
91 {
92   DALI_ASSERT_DEBUG( mGLES && "GLImplementation not created" );
93   return *mGLES;
94 }
95
96 EglImplementation& EglGraphics::GetEglImplementation() const
97 {
98   DALI_ASSERT_DEBUG( mEglImplementation && "EGLImplementation not created" );
99   return *mEglImplementation;
100 }
101
102 EglInterface& EglGraphics::GetEglInterface() const
103 {
104   DALI_ASSERT_DEBUG( mEglImplementation && "EGLImplementation not created" );
105   EglInterface* eglInterface = mEglImplementation.get();
106   return *eglInterface;
107 }
108
109 EglSyncImplementation& EglGraphics::GetSyncImplementation()
110 {
111   DALI_ASSERT_DEBUG( mEglSync && "EglSyncImplementation not created" );
112   return *mEglSync;
113 }
114
115 EglImageExtensions* EglGraphics::GetImageExtensions()
116 {
117   DALI_ASSERT_DEBUG( mEglImageExtensions && "EglImageExtensions not created" );
118   return mEglImageExtensions.get();
119 }
120
121 } // Adaptor
122 } // Internal
123 } // Dali