DALi Version 2.2.21
[platform/core/uifw/dali-core.git] / dali / integration-api / gl-context-helper-abstraction.h
1 #ifndef DALI_INTEGRATION_GL_CONTEXT_HELPER_ABSTRACTION_H
2 #define DALI_INTEGRATION_GL_CONTEXT_HELPER_ABSTRACTION_H
3
4 /*
5  * Copyright (c) 2020 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/public-api/common/dali-common.h>
23
24 namespace Dali
25 {
26 namespace Integration
27 {
28 /**
29  * This abstraction defines the interface for accessing GL context.
30  */
31 class GlContextHelperAbstraction
32 {
33 protected:
34   /**
35    * Virtual protected destructor, no deletion through this interface
36    */
37   virtual ~GlContextHelperAbstraction() = default;
38
39 public:
40   /**
41    * @brief Switch to the surfaceless GL context
42    */
43   virtual void MakeSurfacelessContextCurrent() = 0;
44
45   /**
46    * @brief Clear the GL context
47    */
48   virtual void MakeContextNull() = 0;
49
50   /**
51    * @brief Wait until all GL rendering calls for the current GL context are executed
52    */
53   virtual void WaitClient() = 0;
54 };
55
56 } // namespace Integration
57 } // namespace Dali
58
59 #endif // DALI_INTEGRATION_GL_CONTEXT_HELPER_ABSTRACTION_H