Revert "[Tizen] Implement partial update"
[platform/core/uifw/dali-adaptor.git] / dali / internal / graphics / gles / egl-graphics.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-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   mEglContextHelper = Utils::MakeUnique< EglContextHelperImplementation >();
71 }
72
73 EglInterface* EglGraphics::Create()
74 {
75   mEglImplementation = Utils::MakeUnique< EglImplementation >( mMultiSamplingLevel, mDepthBufferRequired, mStencilBufferRequired );
76   mEglImageExtensions = Utils::MakeUnique< EglImageExtensions >( mEglImplementation.get() );
77
78   mEglSync->Initialize( mEglImplementation.get() ); // The sync impl needs the EglDisplay
79
80   mEglContextHelper->Initialize( mEglImplementation.get() ); // The context helper impl needs the EglContext
81
82   return mEglImplementation.get();
83 }
84
85 void EglGraphics::Destroy()
86 {
87 }
88
89 GlImplementation& EglGraphics::GetGlesInterface()
90 {
91   return *mGLES;
92 }
93
94 Integration::GlAbstraction& EglGraphics::GetGlAbstraction() const
95 {
96   DALI_ASSERT_DEBUG( mGLES && "GLImplementation not created" );
97   return *mGLES;
98 }
99
100 EglImplementation& EglGraphics::GetEglImplementation() const
101 {
102   DALI_ASSERT_DEBUG( mEglImplementation && "EGLImplementation not created" );
103   return *mEglImplementation;
104 }
105
106 EglInterface& EglGraphics::GetEglInterface() const
107 {
108   DALI_ASSERT_DEBUG( mEglImplementation && "EGLImplementation not created" );
109   EglInterface* eglInterface = mEglImplementation.get();
110   return *eglInterface;
111 }
112
113 EglSyncImplementation& EglGraphics::GetSyncImplementation()
114 {
115   DALI_ASSERT_DEBUG( mEglSync && "EglSyncImplementation not created" );
116   return *mEglSync;
117 }
118
119 EglContextHelperImplementation& EglGraphics::GetContextHelperImplementation()
120 {
121   DALI_ASSERT_DEBUG( mEglContextHelper && "EglContextHelperImplementation not created" );
122   return *mEglContextHelper;
123 }
124
125 EglImageExtensions* EglGraphics::GetImageExtensions()
126 {
127   DALI_ASSERT_DEBUG( mEglImageExtensions && "EglImageExtensions not created" );
128   return mEglImageExtensions.get();
129 }
130
131 } // Adaptor
132 } // Internal
133 } // Dali