Initial refactoring of graphics interface
[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) 2021 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/egl-context-helper-implementation.h>
26 #include <dali/internal/graphics/gles/egl-graphics-controller.h>
27 #include <dali/internal/graphics/gles/egl-implementation.h>
28 #include <dali/internal/graphics/gles/egl-sync-implementation.h>
29 #include <dali/internal/graphics/gles/gl-implementation.h>
30 #include <dali/internal/graphics/gles/gl-proxy-implementation.h>
31
32 namespace Dali
33 {
34 namespace Internal
35 {
36 namespace Adaptor
37 {
38 class EnvironmentOptions;
39 class ConfigurationManager;
40
41 class EglGraphics : public GraphicsInterface
42 {
43 public:
44   /**
45    * Constructor
46    */
47   EglGraphics(EnvironmentOptions& environmentOptions);
48
49   /**
50    * Destructor
51    */
52   virtual ~EglGraphics();
53
54   /**
55    * @copydoc Dali::Internal::Adaptor::GraphicsInterface::Initialize()
56    */
57   void Initialize() override;
58
59   /**
60    * @copydoc Dali::Internal::Adaptor::GraphicsInterface::Initialize(bool,bool,bool,int)
61    */
62   void Initialize(bool depth, bool stencil, bool partialRendering, int msaa);
63
64   /**
65    * @copydoc Dali::Internal::Adaptor::GraphicsInterface::ConfigureSurface()
66    */
67   void ConfigureSurface(Dali::RenderSurfaceInterface* surface) override;
68
69   /**
70    * Set gles version
71    * Default version is gles 3.0
72    */
73   void SetGlesVersion(const int32_t glesVersion);
74
75   /**
76    * Set whether the surfaceless context is supported
77    * @param[in] isSupported Whether the surfaceless context is supported
78    */
79   void SetIsSurfacelessContextSupported(const bool isSupported);
80
81   /**
82    * Activate the resource context (shared surfaceless context)
83    */
84   void ActivateResourceContext() override;
85
86   /**
87    * Inform graphics interface that this is the first frame after a resume.
88    * (For debug only)
89    */
90   void SetFirstFrameAfterResume() override;
91
92   /**
93    * Gets the GL abstraction
94    * @return The GL abstraction
95    */
96   Integration::GlAbstraction& GetGlAbstraction() const;
97
98   /**
99    * Gets the implementation of EGL
100    * @return The implementation of EGL
101    */
102   EglImplementation& GetEglImplementation() const;
103
104   /**
105    * Gets the graphics interface for EGL
106    * @return The graphics interface for EGL
107    */
108   EglInterface& GetEglInterface() const;
109
110   /**
111    * @copydoc Dali::Integration::GlAbstraction& GetGlesInterface()
112    */
113   GlImplementation& GetGlesInterface();
114
115   /**
116    * Gets the implementation of GlSyncAbstraction for EGL.
117    * @return The implementation of GlSyncAbstraction for EGL.
118    */
119   EglSyncImplementation& GetSyncImplementation();
120
121   /**
122    * Gets the implementation of GlContextHelperAbstraction for EGL.
123    * @return The implementation of GlContextHelperAbstraction for EGL.
124    */
125   EglContextHelperImplementation& GetContextHelperImplementation();
126
127   /**
128    * @copydoc Dali::Internal::Adaptor::GraphicsInterface::GetDepthBufferRequired()
129    */
130   Integration::DepthBufferAvailable& GetDepthBufferRequired();
131
132   /**
133    * @copydoc Dali::Internal::Adaptor::GraphicsInterface::GetStencilBufferRequired()
134    */
135   Integration::StencilBufferAvailable GetStencilBufferRequired();
136
137   /**
138    * Gets the EGL image extension
139    * @return The EGL image extension
140    */
141   EglImageExtensions* GetImageExtensions();
142
143   /**
144    * @copydoc Dali::Internal::Adaptor::GraphicsInterface::Shutdown()
145    */
146   void Shutdown() override;
147
148   /**
149    * @copydoc Dali::Internal::Adaptor::GraphicsInterface::Destroy()
150    */
151   void Destroy() override;
152
153   Graphics::Controller& GetController() override;
154
155   bool IsAdvancedBlendEquationSupported() override
156   {
157     return mGLES->IsAdvancedBlendEquationSupported();
158   }
159
160   /**
161    * @return true if graphics subsystem is initialized
162    */
163   bool IsInitialized() override
164   {
165     return mEglImplementation->IsGlesInitialized();
166   }
167
168   bool IsResourceContextSupported() override
169   {
170     return mEglImplementation->IsSurfacelessContextSupported();
171   }
172
173   uint32_t GetMaxTextureSize() override
174   {
175     return mGLES->GetMaxTextureSize();
176   }
177
178   uint32_t GetShaderLanguageVersion() override
179   {
180     return mGLES->GetShadingLanguageVersion();
181   }
182
183   void CacheConfigurations(ConfigurationManager& configurationManager) override;
184
185 private:
186   // Eliminate copy and assigned operations
187   EglGraphics(const EglGraphics& rhs) = delete;
188   EglGraphics& operator=(const EglGraphics& rhs) = delete;
189
190   /**
191    * Initialize graphics subsystems
192    */
193   void EglInitialize();
194
195 private:
196   Graphics::EglGraphicsController                 mGraphicsController; ///< Graphics Controller for Dali Core
197   std::unique_ptr<GlImplementation>               mGLES;               ///< GL implementation
198   std::unique_ptr<EglImplementation>              mEglImplementation;  ///< EGL implementation
199   std::unique_ptr<EglImageExtensions>             mEglImageExtensions; ///< EGL image extension
200   std::unique_ptr<EglSyncImplementation>          mEglSync;            ///< GlSyncAbstraction implementation for EGL
201   std::unique_ptr<EglContextHelperImplementation> mEglContextHelper;   ///< GlContextHelperAbstraction implementation for EGL
202
203   int mMultiSamplingLevel; ///< The multiple sampling level
204 };
205
206 } // namespace Adaptor
207
208 } // namespace Internal
209
210 } // namespace Dali
211
212 #endif // DALI_INTERNAL_BASE_GRAPHICS_IMPLEMENTATION_H