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