7476f94c75e3b8599dcb061c77b1d6593f11cd90
[platform/core/uifw/dali-adaptor.git] / dali / internal / graphics / gles / egl-graphics.h
1 #ifndef DALI_INTERNAL_BASE_GRAPHICS_IMPLEMENTATION_H
2 #define DALI_INTERNAL_BASE_GRAPHICS_IMPLEMENTATION_H
3
4 /*
5  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/integration-api/adaptor-framework/egl-interface.h>
23 #include <dali/internal/graphics/common/egl-image-extensions.h>
24 #include <dali/internal/graphics/common/graphics-interface.h>
25 #include <dali/internal/graphics/gles/gl-implementation.h>
26 #include <dali/internal/graphics/gles/gl-proxy-implementation.h>
27 #include <dali/internal/graphics/gles/egl-context-helper-implementation.h>
28 #include <dali/internal/graphics/gles/egl-implementation.h>
29 #include <dali/internal/graphics/gles/egl-sync-implementation.h>
30
31 namespace Dali
32 {
33
34 namespace Internal
35 {
36
37 namespace Adaptor
38 {
39
40 class EglGraphics : public GraphicsInterface
41 {
42 public:
43
44   /**
45    * Constructor
46    */
47   EglGraphics();
48
49   /**
50    * Destructor
51    */
52   virtual ~EglGraphics();
53
54   /**
55    * @copydoc Dali::Internal::Adaptor::GraphicsInterface::Initialize()
56    */
57   void Initialize( EnvironmentOptions* environmentOptions ) override;
58
59   /**
60    * Initialize the graphics interface with specific input parameters
61    * @param[in]  depth  The flag to enable depth buffer
62    * @param[in]  stencil  The flag to enable stencil buffer
63    * @param[in]  msaa  The value of multi sampleing bit
64    */
65   void Initialize( bool depth, bool stencil, int msaa );
66
67   /**
68    * Creates the graphics interface for EGL
69    * @return The graphics interface for EGL
70    */
71   EglInterface* Create();
72
73   /**
74    * Set gles version
75    * Default version is gles 3.0
76    */
77   void SetGlesVersion( const int32_t glesVersion );
78
79   /**
80    * Set whether the surfaceless context is supported
81    * @param[in] isSupported Whether the surfaceless context is supported
82    */
83   void SetIsSurfacelessContextSupported( const bool isSupported );
84
85   /**
86    * Gets the GL abstraction
87    * @return The GL abstraction
88    */
89   Integration::GlAbstraction& GetGlAbstraction() const;
90
91   /**
92    * Gets the implementation of EGL
93    * @return The implementation of EGL
94    */
95   EglImplementation& GetEglImplementation() const;
96
97   /**
98    * Gets the graphics interface for EGL
99    * @return The graphics interface for EGL
100    */
101   EglInterface& GetEglInterface() const;
102
103   /**
104    * @copydoc Dali::Integration::GlAbstraction& GetGlesInterface()
105    */
106   GlImplementation& GetGlesInterface();
107
108   /**
109    * Gets the implementation of GlSyncAbstraction for EGL.
110    * @return The implementation of GlSyncAbstraction for EGL.
111    */
112   EglSyncImplementation& GetSyncImplementation();
113
114   /**
115    * Gets the implementation of GlContextHelperAbstraction for EGL.
116    * @return The implementation of GlContextHelperAbstraction for EGL.
117    */
118   EglContextHelperImplementation& GetContextHelperImplementation();
119
120   /**
121    * @copydoc Dali::Internal::Adaptor::GraphicsInterface::GetDepthBufferRequired()
122    */
123   Integration::DepthBufferAvailable& GetDepthBufferRequired();
124
125   /**
126    * @copydoc Dali::Internal::Adaptor::GraphicsInterface::GetStencilBufferRequired()
127    */
128   Integration::StencilBufferAvailable GetStencilBufferRequired();
129
130   /**
131    * Gets the EGL image extension
132    * @return The EGL image extension
133    */
134   EglImageExtensions* GetImageExtensions();
135
136   /**
137    * @copydoc Dali::Internal::Adaptor::GraphicsInterface::Destroy()
138    */
139   void Destroy() override;
140
141 private:
142   // Eliminate copy and assigned operations
143   EglGraphics(const EglGraphics& rhs) = delete;
144   EglGraphics& operator=(const EglGraphics& rhs) = delete;
145
146
147 private:
148   std::unique_ptr< GlImplementation > mGLES;                    ///< GL implementation
149   std::unique_ptr< EglImplementation > mEglImplementation;      ///< EGL implementation
150   std::unique_ptr< EglImageExtensions > mEglImageExtensions;    ///< EGL image extension
151   std::unique_ptr< EglSyncImplementation > mEglSync;            ///< GlSyncAbstraction implementation for EGL
152   std::unique_ptr< EglContextHelperImplementation > mEglContextHelper; ///< GlContextHelperAbstraction implementation for EGL
153
154   int mMultiSamplingLevel;                                      ///< The multiple sampling level
155 };
156
157 } // namespace Adaptor
158
159 } // namespace Internal
160
161 } // namespace Dali
162
163 #endif // DALI_INTERNAL_BASE_GRAPHICS_IMPLEMENTATION_H