a54b9edfed1fbfab7cdcf0485d973f2421596124
[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::Initialize( EnvironmentOptions* environmentOptions )
48 {
49   if( environmentOptions->GetGlesCallTime() > 0 )
50   {
51     mGLES = Utils::MakeUnique< GlProxyImplementation >( *environmentOptions );
52   }
53   else
54   {
55     mGLES.reset ( new GlImplementation() );
56   }
57
58   mDepthBufferRequired = static_cast< Integration::DepthBufferAvailable >( environmentOptions->DepthBufferRequired() );
59   mStencilBufferRequired = static_cast< Integration::StencilBufferAvailable >( environmentOptions->StencilBufferRequired() );
60
61   mMultiSamplingLevel = environmentOptions->GetMultiSamplingLevel();
62
63   mEglSync = Utils::MakeUnique< EglSyncImplementation >();
64 }
65
66 EglInterface* EglGraphics::Create()
67 {
68   mEglImplementation = Utils::MakeUnique< EglImplementation >( mMultiSamplingLevel, mDepthBufferRequired, mStencilBufferRequired );
69   mEglImageExtensions = Utils::MakeUnique< EglImageExtensions >( mEglImplementation.get() );
70
71   mEglSync->Initialize( mEglImplementation.get() ); // The sync impl needs the EglDisplay
72
73   return mEglImplementation.get();
74 }
75
76 void EglGraphics::Destroy()
77 {
78 }
79
80 GlImplementation& EglGraphics::GetGlesInterface()
81 {
82   return *mGLES;
83 }
84
85 Integration::GlAbstraction& EglGraphics::GetGlAbstraction() const
86 {
87   DALI_ASSERT_DEBUG( mGLES && "GLImplementation not created" );
88   return *mGLES;
89 }
90
91 EglImplementation& EglGraphics::GetEglImplementation() const
92 {
93   DALI_ASSERT_DEBUG( mEglImplementation && "EGLImplementation not created" );
94   return *mEglImplementation;
95 }
96
97 EglInterface& EglGraphics::GetEglInterface() const
98 {
99   DALI_ASSERT_DEBUG( mEglImplementation && "EGLImplementation not created" );
100   EglInterface* eglInterface = mEglImplementation.get();
101   return *eglInterface;
102 }
103
104 EglSyncImplementation& EglGraphics::GetSyncImplementation()
105 {
106   DALI_ASSERT_DEBUG( mEglSync && "EglSyncImplementation not created" );
107   return *mEglSync;
108 }
109
110 EglImageExtensions* EglGraphics::GetImageExtensions()
111 {
112   DALI_ASSERT_DEBUG( mEglImageExtensions && "EglImageExtensions not created" );
113   return mEglImageExtensions.get();
114 }
115
116 } // Adaptor
117 } // Internal
118 } // Dali