Revert "[Tizen] Revert "Support multiple window rendering""
[platform/core/uifw/dali-adaptor.git] / dali / integration-api / egl-interface.h
1 #ifndef __DALI_INTEGRATION_EGL_INTERFACE_H__
2 #define __DALI_INTEGRATION_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 // EXTERNAL INCLUDES
22 #include <EGL/egl.h>
23
24 namespace Dali
25 {
26
27 enum ColorDepth
28 {
29   COLOR_DEPTH_24 = 24,
30   COLOR_DEPTH_32 = 32
31 };
32
33 /**
34  * EglInterface provides an interface for managing EGL contexts
35  */
36 class EglInterface
37 {
38 public:
39   /**
40     * Create the OpenGL context.
41     * @return true if successful
42     */
43   virtual bool CreateContext() = 0;
44
45   /**
46    * Make the OpenGL context current
47    */
48   virtual void MakeContextCurrent( EGLSurface eglSurface, EGLContext eglContext ) = 0;
49
50   /**
51    * Terminate GL
52    */
53   virtual void TerminateGles() = 0;
54
55   /**
56    * Performs an OpenGL swap buffers command
57    */
58   virtual void SwapBuffers( EGLSurface& eglSurface ) = 0;
59
60   /**
61    * Performs an OpenGL copy buffers command
62    */
63   virtual void CopyBuffers( EGLSurface& eglSurface ) = 0;
64
65   /**
66    * Performs an EGL wait GL command
67    */
68   virtual void WaitGL() = 0;
69
70 protected:
71   /**
72    * Virtual protected destructor, no deletion through this interface
73    */
74   virtual ~EglInterface() {}
75 };
76
77 } // namespace Dali
78
79 #endif // __DALI_INTEGRATION_EGL_INTERFACE_H__