Revert "Separating integration-devel from devel package for 2nd party to use adaptor"
[platform/core/uifw/dali-adaptor.git] / adaptors / base / interfaces / egl-interface.h
1 #ifndef __DALI_INTERNAL_ADAPTOR_BASE_EGL_INTERFACE_H__
2 #define __DALI_INTERNAL_ADAPTOR_BASE_EGL_INTERFACE_H__
3
4 /*
5  * Copyright (c) 2014 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 namespace Dali
22 {
23 namespace Internal
24 {
25 namespace Adaptor
26 {
27
28 /**
29  * EglInterface provides an interface for managing EGL contexts
30  */
31 class EglInterface
32 {
33 public:
34   /**
35     * Create the OpenGL context.
36     * @return true if successful
37     */
38   virtual bool CreateContext() = 0;
39
40   /**
41    * Make the OpenGL context current
42    */
43   virtual void MakeContextCurrent() = 0;
44
45   /**
46    * Terminate GL
47    */
48   virtual void TerminateGles() = 0;
49
50   /**
51    * Performs an OpenGL swap buffers command
52    */
53   virtual void SwapBuffers() = 0;
54
55   /**
56    * Performs an OpenGL copy buffers command
57    */
58   virtual void CopyBuffers() = 0;
59
60   /**
61    * Performs an EGL wait GL command
62    */
63   virtual void WaitGL() = 0;
64
65 protected:
66   /**
67    * Virtual protected destructor, no deletion through this interface
68    */
69   virtual ~EglInterface() {}
70 };
71
72 } // namespace Adaptor
73
74 } // namespace Internal
75
76 } // namespace Dali
77
78 #endif // __DALI_INTERNAL_ADAPTOR_BASE_EGL_INTERFACE_H__