Merge "Fix indicator crash" into devel/master
[platform/core/uifw/dali-adaptor.git] / adaptors / common / gl / gl-extensions.h
1 #ifndef __DALI_INTERNAL_GL_EXTENSION_H__
2 #define __DALI_INTERNAL_GL_EXTENSION_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
23 #if DALI_GLES_VERSION >= 30
24 #include <GLES3/gl3.h>
25 #include <GLES3/gl3ext.h>
26 #else
27 #include <GLES2/gl2.h>
28 #include <GLES2/gl2ext.h>
29 #endif
30
31
32 namespace Dali
33 {
34
35 namespace Internal
36 {
37
38 namespace Adaptor
39 {
40
41 namespace ECoreX
42 {
43
44 /**
45  * GlExtensions class provides GL extensions support
46  */
47 class GlExtensions
48 {
49 public:
50
51   /**
52    * Constructor
53    */
54   GlExtensions();
55
56   /**
57    * Destructor
58    */
59   ~GlExtensions();
60
61
62 public:
63
64 #if DALI_GLES_VERSION < 30
65
66   /**
67    * If the GL extension is available this function discards specified data in attachments
68    * from being copied from the target to improve performance.
69    *
70    * Usage: GLenum attachments[] = { GL_DEPTH_ATTACHMENT, GL_STENCIL_ATTACHMENT };
71    *        DiscardFrameBufferEXT(GL_FRAMEBUFFER, 2, attachments);
72    *
73    * @param target is usually GL_FRAMEBUFFER
74    * @param numAttachments is the count of attachments
75    * @param attachments is a pointer to the attachments
76    */
77   void DiscardFrameBuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments);
78
79   /**
80    * GLES extension
81    * Returns the program object's executable bytecode.
82    * @param[in] program       The program object's name/id
83    * @param[in] bufSize       The maximum number of bytes that may be written into binary
84    * @param[out] length       The actual number of bytes written into binary
85    * @param[out] binaryFormat The format of the program binary
86    * @param[out] binary       The actual program bytecode
87    */
88   void GetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary);
89
90   /**
91    * GLES extension
92    * Loads a program object with a program binary previously returned from GetProgramBinaryOES
93    * @param[in] program       The program object's name/id
94    * @param[in] binaryFormat  The format of the program binary
95    * @param[in] binary        The program bytecode
96    * @param[in] length        The number of bytes in binary
97    */
98   void ProgramBinaryOES (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length);
99
100 #endif // DALI_GLES_VERSION < 30
101
102 private:
103
104   /**
105    * Lazy Initialize extensions on first use
106    */
107   void Initialize();
108
109 #if DALI_GLES_VERSION < 30
110
111 #ifdef GL_EXT_discard_framebuffer
112   PFNGLDISCARDFRAMEBUFFEREXTPROC mGlDiscardFramebuffer;
113 #endif
114
115 #ifdef GL_OES_get_program_binary
116   PFNGLGETPROGRAMBINARYOESPROC mGlGetProgramBinaryOES;
117   PFNGLPROGRAMBINARYOESPROC mGlProgramBinaryOES;
118 #endif
119
120 #endif // DALI_GLES_VERSION < 30
121
122   bool mInitialized;
123
124 };
125
126 } // namespace ECoreX
127
128 } // namespace Adaptor
129
130 } // namespace Internal
131
132 } // namespace Dali
133
134 #endif /* __DALI_INTERNAL_GL_EXTENSION_H__ */