blob: fbf761a3b3d912cd892b739ba40de6105a5d88da [file] [log] [blame]
Jesse Hall3703f7f2014-05-13 21:52:56 -07001void API_ENTRY(glEGLImageTargetTexture2DOES)(GLenum target, GLeglImageOES image) {
2 CALL_GL_API(glEGLImageTargetTexture2DOES, target, image);
3}
4void API_ENTRY(glEGLImageTargetRenderbufferStorageOES)(GLenum target, GLeglImageOES image) {
5 CALL_GL_API(glEGLImageTargetRenderbufferStorageOES, target, image);
6}
Mathias Agopianb519abb2009-04-23 18:05:44 -07007void API_ENTRY(glBlendEquationSeparateOES)(GLenum modeRGB, GLenum modeAlpha) {
8 CALL_GL_API(glBlendEquationSeparateOES, modeRGB, modeAlpha);
9}
10void API_ENTRY(glBlendFuncSeparateOES)(GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha) {
11 CALL_GL_API(glBlendFuncSeparateOES, srcRGB, dstRGB, srcAlpha, dstAlpha);
12}
13void API_ENTRY(glBlendEquationOES)(GLenum mode) {
14 CALL_GL_API(glBlendEquationOES, mode);
15}
16void API_ENTRY(glDrawTexsOES)(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height) {
17 CALL_GL_API(glDrawTexsOES, x, y, z, width, height);
18}
19void API_ENTRY(glDrawTexiOES)(GLint x, GLint y, GLint z, GLint width, GLint height) {
20 CALL_GL_API(glDrawTexiOES, x, y, z, width, height);
21}
22void API_ENTRY(glDrawTexxOES)(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height) {
23 CALL_GL_API(glDrawTexxOES, x, y, z, width, height);
24}
Pablo Ceballos46907542015-10-27 14:00:42 -070025void API_ENTRY(glDrawTexsvOES)(const GLshort *coords) {
Mathias Agopianb519abb2009-04-23 18:05:44 -070026 CALL_GL_API(glDrawTexsvOES, coords);
27}
Pablo Ceballos46907542015-10-27 14:00:42 -070028void API_ENTRY(glDrawTexivOES)(const GLint *coords) {
Mathias Agopianb519abb2009-04-23 18:05:44 -070029 CALL_GL_API(glDrawTexivOES, coords);
30}
Pablo Ceballos46907542015-10-27 14:00:42 -070031void API_ENTRY(glDrawTexxvOES)(const GLfixed *coords) {
Mathias Agopianb519abb2009-04-23 18:05:44 -070032 CALL_GL_API(glDrawTexxvOES, coords);
33}
34void API_ENTRY(glDrawTexfOES)(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height) {
35 CALL_GL_API(glDrawTexfOES, x, y, z, width, height);
36}
Pablo Ceballos46907542015-10-27 14:00:42 -070037void API_ENTRY(glDrawTexfvOES)(const GLfloat *coords) {
Mathias Agopianb519abb2009-04-23 18:05:44 -070038 CALL_GL_API(glDrawTexfvOES, coords);
39}
Jesse Hall3703f7f2014-05-13 21:52:56 -070040void API_ENTRY(glAlphaFuncxOES)(GLenum func, GLfixed ref) {
Mathias Agopianb519abb2009-04-23 18:05:44 -070041 CALL_GL_API(glAlphaFuncxOES, func, ref);
42}
Jesse Hall3703f7f2014-05-13 21:52:56 -070043void API_ENTRY(glClearColorxOES)(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) {
Mathias Agopianb519abb2009-04-23 18:05:44 -070044 CALL_GL_API(glClearColorxOES, red, green, blue, alpha);
45}
Jesse Hall3703f7f2014-05-13 21:52:56 -070046void API_ENTRY(glClearDepthxOES)(GLfixed depth) {
Mathias Agopianb519abb2009-04-23 18:05:44 -070047 CALL_GL_API(glClearDepthxOES, depth);
48}
Pablo Ceballos46907542015-10-27 14:00:42 -070049void API_ENTRY(glClipPlanexOES)(GLenum plane, const GLfixed *equation) {
Mathias Agopianb519abb2009-04-23 18:05:44 -070050 CALL_GL_API(glClipPlanexOES, plane, equation);
51}
52void API_ENTRY(glColor4xOES)(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) {
53 CALL_GL_API(glColor4xOES, red, green, blue, alpha);
54}
Jesse Hall3703f7f2014-05-13 21:52:56 -070055void API_ENTRY(glDepthRangexOES)(GLfixed n, GLfixed f) {
56 CALL_GL_API(glDepthRangexOES, n, f);
Mathias Agopianb519abb2009-04-23 18:05:44 -070057}
58void API_ENTRY(glFogxOES)(GLenum pname, GLfixed param) {
59 CALL_GL_API(glFogxOES, pname, param);
60}
Pablo Ceballos46907542015-10-27 14:00:42 -070061void API_ENTRY(glFogxvOES)(GLenum pname, const GLfixed *param) {
Jesse Hall3703f7f2014-05-13 21:52:56 -070062 CALL_GL_API(glFogxvOES, pname, param);
Mathias Agopianb519abb2009-04-23 18:05:44 -070063}
Jesse Hall3703f7f2014-05-13 21:52:56 -070064void API_ENTRY(glFrustumxOES)(GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f) {
65 CALL_GL_API(glFrustumxOES, l, r, b, t, n, f);
Mathias Agopianb519abb2009-04-23 18:05:44 -070066}
Pablo Ceballos46907542015-10-27 14:00:42 -070067void API_ENTRY(glGetClipPlanexOES)(GLenum plane, GLfixed *equation) {
Jesse Hall3703f7f2014-05-13 21:52:56 -070068 CALL_GL_API(glGetClipPlanexOES, plane, equation);
Mathias Agopianb519abb2009-04-23 18:05:44 -070069}
Pablo Ceballos46907542015-10-27 14:00:42 -070070void API_ENTRY(glGetFixedvOES)(GLenum pname, GLfixed *params) {
Mathias Agopianb519abb2009-04-23 18:05:44 -070071 CALL_GL_API(glGetFixedvOES, pname, params);
72}
Pablo Ceballos46907542015-10-27 14:00:42 -070073void API_ENTRY(glGetTexEnvxvOES)(GLenum target, GLenum pname, GLfixed *params) {
Jesse Hall3703f7f2014-05-13 21:52:56 -070074 CALL_GL_API(glGetTexEnvxvOES, target, pname, params);
Mathias Agopianb519abb2009-04-23 18:05:44 -070075}
Pablo Ceballos46907542015-10-27 14:00:42 -070076void API_ENTRY(glGetTexParameterxvOES)(GLenum target, GLenum pname, GLfixed *params) {
Mathias Agopianb519abb2009-04-23 18:05:44 -070077 CALL_GL_API(glGetTexParameterxvOES, target, pname, params);
78}
79void API_ENTRY(glLightModelxOES)(GLenum pname, GLfixed param) {
80 CALL_GL_API(glLightModelxOES, pname, param);
81}
Pablo Ceballos46907542015-10-27 14:00:42 -070082void API_ENTRY(glLightModelxvOES)(GLenum pname, const GLfixed *param) {
Jesse Hall3703f7f2014-05-13 21:52:56 -070083 CALL_GL_API(glLightModelxvOES, pname, param);
Mathias Agopianb519abb2009-04-23 18:05:44 -070084}
85void API_ENTRY(glLightxOES)(GLenum light, GLenum pname, GLfixed param) {
86 CALL_GL_API(glLightxOES, light, pname, param);
87}
Pablo Ceballos46907542015-10-27 14:00:42 -070088void API_ENTRY(glLightxvOES)(GLenum light, GLenum pname, const GLfixed *params) {
Mathias Agopianb519abb2009-04-23 18:05:44 -070089 CALL_GL_API(glLightxvOES, light, pname, params);
90}
91void API_ENTRY(glLineWidthxOES)(GLfixed width) {
92 CALL_GL_API(glLineWidthxOES, width);
93}
Pablo Ceballos46907542015-10-27 14:00:42 -070094void API_ENTRY(glLoadMatrixxOES)(const GLfixed *m) {
Mathias Agopianb519abb2009-04-23 18:05:44 -070095 CALL_GL_API(glLoadMatrixxOES, m);
96}
97void API_ENTRY(glMaterialxOES)(GLenum face, GLenum pname, GLfixed param) {
98 CALL_GL_API(glMaterialxOES, face, pname, param);
99}
Pablo Ceballos46907542015-10-27 14:00:42 -0700100void API_ENTRY(glMaterialxvOES)(GLenum face, GLenum pname, const GLfixed *param) {
Jesse Hall3703f7f2014-05-13 21:52:56 -0700101 CALL_GL_API(glMaterialxvOES, face, pname, param);
Mathias Agopianb519abb2009-04-23 18:05:44 -0700102}
Pablo Ceballos46907542015-10-27 14:00:42 -0700103void API_ENTRY(glMultMatrixxOES)(const GLfixed *m) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700104 CALL_GL_API(glMultMatrixxOES, m);
105}
Jesse Hall3703f7f2014-05-13 21:52:56 -0700106void API_ENTRY(glMultiTexCoord4xOES)(GLenum texture, GLfixed s, GLfixed t, GLfixed r, GLfixed q) {
107 CALL_GL_API(glMultiTexCoord4xOES, texture, s, t, r, q);
Mathias Agopianb519abb2009-04-23 18:05:44 -0700108}
109void API_ENTRY(glNormal3xOES)(GLfixed nx, GLfixed ny, GLfixed nz) {
110 CALL_GL_API(glNormal3xOES, nx, ny, nz);
111}
Jesse Hall3703f7f2014-05-13 21:52:56 -0700112void API_ENTRY(glOrthoxOES)(GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f) {
113 CALL_GL_API(glOrthoxOES, l, r, b, t, n, f);
Mathias Agopianb519abb2009-04-23 18:05:44 -0700114}
Pablo Ceballos46907542015-10-27 14:00:42 -0700115void API_ENTRY(glPointParameterxvOES)(GLenum pname, const GLfixed *params) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700116 CALL_GL_API(glPointParameterxvOES, pname, params);
117}
118void API_ENTRY(glPointSizexOES)(GLfixed size) {
119 CALL_GL_API(glPointSizexOES, size);
120}
121void API_ENTRY(glPolygonOffsetxOES)(GLfixed factor, GLfixed units) {
122 CALL_GL_API(glPolygonOffsetxOES, factor, units);
123}
124void API_ENTRY(glRotatexOES)(GLfixed angle, GLfixed x, GLfixed y, GLfixed z) {
125 CALL_GL_API(glRotatexOES, angle, x, y, z);
126}
Mathias Agopianb519abb2009-04-23 18:05:44 -0700127void API_ENTRY(glScalexOES)(GLfixed x, GLfixed y, GLfixed z) {
128 CALL_GL_API(glScalexOES, x, y, z);
129}
130void API_ENTRY(glTexEnvxOES)(GLenum target, GLenum pname, GLfixed param) {
131 CALL_GL_API(glTexEnvxOES, target, pname, param);
132}
Pablo Ceballos46907542015-10-27 14:00:42 -0700133void API_ENTRY(glTexEnvxvOES)(GLenum target, GLenum pname, const GLfixed *params) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700134 CALL_GL_API(glTexEnvxvOES, target, pname, params);
135}
136void API_ENTRY(glTexParameterxOES)(GLenum target, GLenum pname, GLfixed param) {
137 CALL_GL_API(glTexParameterxOES, target, pname, param);
138}
Pablo Ceballos46907542015-10-27 14:00:42 -0700139void API_ENTRY(glTexParameterxvOES)(GLenum target, GLenum pname, const GLfixed *params) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700140 CALL_GL_API(glTexParameterxvOES, target, pname, params);
141}
142void API_ENTRY(glTranslatexOES)(GLfixed x, GLfixed y, GLfixed z) {
143 CALL_GL_API(glTranslatexOES, x, y, z);
144}
Pablo Ceballos46907542015-10-27 14:00:42 -0700145void API_ENTRY(glGetLightxvOES)(GLenum light, GLenum pname, GLfixed *params) {
Jesse Hall3703f7f2014-05-13 21:52:56 -0700146 CALL_GL_API(glGetLightxvOES, light, pname, params);
147}
Pablo Ceballos46907542015-10-27 14:00:42 -0700148void API_ENTRY(glGetMaterialxvOES)(GLenum face, GLenum pname, GLfixed *params) {
Jesse Hall3703f7f2014-05-13 21:52:56 -0700149 CALL_GL_API(glGetMaterialxvOES, face, pname, params);
150}
151void API_ENTRY(glPointParameterxOES)(GLenum pname, GLfixed param) {
152 CALL_GL_API(glPointParameterxOES, pname, param);
153}
154void API_ENTRY(glSampleCoveragexOES)(GLclampx value, GLboolean invert) {
155 CALL_GL_API(glSampleCoveragexOES, value, invert);
156}
Pablo Ceballos46907542015-10-27 14:00:42 -0700157void API_ENTRY(glGetTexGenxvOES)(GLenum coord, GLenum pname, GLfixed *params) {
Jesse Hall3703f7f2014-05-13 21:52:56 -0700158 CALL_GL_API(glGetTexGenxvOES, coord, pname, params);
159}
160void API_ENTRY(glTexGenxOES)(GLenum coord, GLenum pname, GLfixed param) {
161 CALL_GL_API(glTexGenxOES, coord, pname, param);
162}
Pablo Ceballos46907542015-10-27 14:00:42 -0700163void API_ENTRY(glTexGenxvOES)(GLenum coord, GLenum pname, const GLfixed *params) {
Jesse Hall3703f7f2014-05-13 21:52:56 -0700164 CALL_GL_API(glTexGenxvOES, coord, pname, params);
165}
Mathias Agopianb519abb2009-04-23 18:05:44 -0700166GLboolean API_ENTRY(glIsRenderbufferOES)(GLuint renderbuffer) {
167 CALL_GL_API_RETURN(glIsRenderbufferOES, renderbuffer);
168}
169void API_ENTRY(glBindRenderbufferOES)(GLenum target, GLuint renderbuffer) {
170 CALL_GL_API(glBindRenderbufferOES, target, renderbuffer);
171}
Pablo Ceballos46907542015-10-27 14:00:42 -0700172void API_ENTRY(glDeleteRenderbuffersOES)(GLsizei n, const GLuint *renderbuffers) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700173 CALL_GL_API(glDeleteRenderbuffersOES, n, renderbuffers);
174}
Pablo Ceballos46907542015-10-27 14:00:42 -0700175void API_ENTRY(glGenRenderbuffersOES)(GLsizei n, GLuint *renderbuffers) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700176 CALL_GL_API(glGenRenderbuffersOES, n, renderbuffers);
177}
178void API_ENTRY(glRenderbufferStorageOES)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height) {
179 CALL_GL_API(glRenderbufferStorageOES, target, internalformat, width, height);
180}
Pablo Ceballos46907542015-10-27 14:00:42 -0700181void API_ENTRY(glGetRenderbufferParameterivOES)(GLenum target, GLenum pname, GLint *params) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700182 CALL_GL_API(glGetRenderbufferParameterivOES, target, pname, params);
183}
184GLboolean API_ENTRY(glIsFramebufferOES)(GLuint framebuffer) {
185 CALL_GL_API_RETURN(glIsFramebufferOES, framebuffer);
186}
187void API_ENTRY(glBindFramebufferOES)(GLenum target, GLuint framebuffer) {
188 CALL_GL_API(glBindFramebufferOES, target, framebuffer);
189}
Pablo Ceballos46907542015-10-27 14:00:42 -0700190void API_ENTRY(glDeleteFramebuffersOES)(GLsizei n, const GLuint *framebuffers) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700191 CALL_GL_API(glDeleteFramebuffersOES, n, framebuffers);
192}
Pablo Ceballos46907542015-10-27 14:00:42 -0700193void API_ENTRY(glGenFramebuffersOES)(GLsizei n, GLuint *framebuffers) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700194 CALL_GL_API(glGenFramebuffersOES, n, framebuffers);
195}
196GLenum API_ENTRY(glCheckFramebufferStatusOES)(GLenum target) {
197 CALL_GL_API_RETURN(glCheckFramebufferStatusOES, target);
198}
199void API_ENTRY(glFramebufferRenderbufferOES)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer) {
200 CALL_GL_API(glFramebufferRenderbufferOES, target, attachment, renderbuffertarget, renderbuffer);
201}
202void API_ENTRY(glFramebufferTexture2DOES)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) {
203 CALL_GL_API(glFramebufferTexture2DOES, target, attachment, textarget, texture, level);
204}
Pablo Ceballos46907542015-10-27 14:00:42 -0700205void API_ENTRY(glGetFramebufferAttachmentParameterivOES)(GLenum target, GLenum attachment, GLenum pname, GLint *params) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700206 CALL_GL_API(glGetFramebufferAttachmentParameterivOES, target, attachment, pname, params);
207}
208void API_ENTRY(glGenerateMipmapOES)(GLenum target) {
209 CALL_GL_API(glGenerateMipmapOES, target);
210}
Jesse Hall3703f7f2014-05-13 21:52:56 -0700211void * API_ENTRY(glMapBufferOES)(GLenum target, GLenum access) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700212 CALL_GL_API_RETURN(glMapBufferOES, target, access);
213}
214GLboolean API_ENTRY(glUnmapBufferOES)(GLenum target) {
215 CALL_GL_API_RETURN(glUnmapBufferOES, target);
216}
Pablo Ceballos46907542015-10-27 14:00:42 -0700217void API_ENTRY(glGetBufferPointervOES)(GLenum target, GLenum pname, void **params) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700218 CALL_GL_API(glGetBufferPointervOES, target, pname, params);
219}
220void API_ENTRY(glCurrentPaletteMatrixOES)(GLuint matrixpaletteindex) {
221 CALL_GL_API(glCurrentPaletteMatrixOES, matrixpaletteindex);
222}
223void API_ENTRY(glLoadPaletteFromModelViewMatrixOES)(void) {
224 CALL_GL_API(glLoadPaletteFromModelViewMatrixOES);
225}
Pablo Ceballos46907542015-10-27 14:00:42 -0700226void API_ENTRY(glMatrixIndexPointerOES)(GLint size, GLenum type, GLsizei stride, const void *pointer) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700227 CALL_GL_API(glMatrixIndexPointerOES, size, type, stride, pointer);
228}
Pablo Ceballos46907542015-10-27 14:00:42 -0700229void API_ENTRY(glWeightPointerOES)(GLint size, GLenum type, GLsizei stride, const void *pointer) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700230 CALL_GL_API(glWeightPointerOES, size, type, stride, pointer);
231}
Pablo Ceballos46907542015-10-27 14:00:42 -0700232void API_ENTRY(glPointSizePointerOES)(GLenum type, GLsizei stride, const void *pointer) {
Jesse Hall3703f7f2014-05-13 21:52:56 -0700233 CALL_GL_API(glPointSizePointerOES, type, stride, pointer);
234}
Pablo Ceballos46907542015-10-27 14:00:42 -0700235GLbitfield API_ENTRY(glQueryMatrixxOES)(GLfixed *mantissa, GLint *exponent) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700236 CALL_GL_API_RETURN(glQueryMatrixxOES, mantissa, exponent);
237}
Mathias Agopianb519abb2009-04-23 18:05:44 -0700238void API_ENTRY(glClearDepthfOES)(GLclampf depth) {
239 CALL_GL_API(glClearDepthfOES, depth);
240}
Pablo Ceballos46907542015-10-27 14:00:42 -0700241void API_ENTRY(glClipPlanefOES)(GLenum plane, const GLfloat *equation) {
Jesse Hall3703f7f2014-05-13 21:52:56 -0700242 CALL_GL_API(glClipPlanefOES, plane, equation);
243}
244void API_ENTRY(glDepthRangefOES)(GLclampf n, GLclampf f) {
245 CALL_GL_API(glDepthRangefOES, n, f);
246}
247void API_ENTRY(glFrustumfOES)(GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f) {
248 CALL_GL_API(glFrustumfOES, l, r, b, t, n, f);
249}
Pablo Ceballos46907542015-10-27 14:00:42 -0700250void API_ENTRY(glGetClipPlanefOES)(GLenum plane, GLfloat *equation) {
Jesse Hall3703f7f2014-05-13 21:52:56 -0700251 CALL_GL_API(glGetClipPlanefOES, plane, equation);
252}
253void API_ENTRY(glOrthofOES)(GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f) {
254 CALL_GL_API(glOrthofOES, l, r, b, t, n, f);
255}
Mathias Agopianb519abb2009-04-23 18:05:44 -0700256void API_ENTRY(glTexGenfOES)(GLenum coord, GLenum pname, GLfloat param) {
257 CALL_GL_API(glTexGenfOES, coord, pname, param);
258}
Pablo Ceballos46907542015-10-27 14:00:42 -0700259void API_ENTRY(glTexGenfvOES)(GLenum coord, GLenum pname, const GLfloat *params) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700260 CALL_GL_API(glTexGenfvOES, coord, pname, params);
261}
262void API_ENTRY(glTexGeniOES)(GLenum coord, GLenum pname, GLint param) {
263 CALL_GL_API(glTexGeniOES, coord, pname, param);
264}
Pablo Ceballos46907542015-10-27 14:00:42 -0700265void API_ENTRY(glTexGenivOES)(GLenum coord, GLenum pname, const GLint *params) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700266 CALL_GL_API(glTexGenivOES, coord, pname, params);
267}
Pablo Ceballos46907542015-10-27 14:00:42 -0700268void API_ENTRY(glGetTexGenfvOES)(GLenum coord, GLenum pname, GLfloat *params) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700269 CALL_GL_API(glGetTexGenfvOES, coord, pname, params);
270}
Pablo Ceballos46907542015-10-27 14:00:42 -0700271void API_ENTRY(glGetTexGenivOES)(GLenum coord, GLenum pname, GLint *params) {
Mathias Agopianb519abb2009-04-23 18:05:44 -0700272 CALL_GL_API(glGetTexGenivOES, coord, pname, params);
273}
Mathias Agopian11cca922010-06-09 18:20:21 -0700274void API_ENTRY(glBindVertexArrayOES)(GLuint array) {
275 CALL_GL_API(glBindVertexArrayOES, array);
276}
Pablo Ceballos46907542015-10-27 14:00:42 -0700277void API_ENTRY(glDeleteVertexArraysOES)(GLsizei n, const GLuint *arrays) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700278 CALL_GL_API(glDeleteVertexArraysOES, n, arrays);
279}
Pablo Ceballos46907542015-10-27 14:00:42 -0700280void API_ENTRY(glGenVertexArraysOES)(GLsizei n, GLuint *arrays) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700281 CALL_GL_API(glGenVertexArraysOES, n, arrays);
282}
283GLboolean API_ENTRY(glIsVertexArrayOES)(GLuint array) {
284 CALL_GL_API_RETURN(glIsVertexArrayOES, array);
285}
Jesse Hall3703f7f2014-05-13 21:52:56 -0700286void API_ENTRY(glCopyTextureLevelsAPPLE)(GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount) {
287 CALL_GL_API(glCopyTextureLevelsAPPLE, destinationTexture, sourceTexture, sourceBaseLevel, sourceLevelCount);
288}
Mathias Agopian31272602012-01-28 14:20:59 -0800289void API_ENTRY(glRenderbufferStorageMultisampleAPPLE)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height) {
290 CALL_GL_API(glRenderbufferStorageMultisampleAPPLE, target, samples, internalformat, width, height);
291}
292void API_ENTRY(glResolveMultisampleFramebufferAPPLE)(void) {
293 CALL_GL_API(glResolveMultisampleFramebufferAPPLE);
294}
Jesse Hall3703f7f2014-05-13 21:52:56 -0700295GLsync API_ENTRY(glFenceSyncAPPLE)(GLenum condition, GLbitfield flags) {
296 CALL_GL_API_RETURN(glFenceSyncAPPLE, condition, flags);
297}
298GLboolean API_ENTRY(glIsSyncAPPLE)(GLsync sync) {
299 CALL_GL_API_RETURN(glIsSyncAPPLE, sync);
300}
301void API_ENTRY(glDeleteSyncAPPLE)(GLsync sync) {
302 CALL_GL_API(glDeleteSyncAPPLE, sync);
303}
304GLenum API_ENTRY(glClientWaitSyncAPPLE)(GLsync sync, GLbitfield flags, GLuint64 timeout) {
305 CALL_GL_API_RETURN(glClientWaitSyncAPPLE, sync, flags, timeout);
306}
307void API_ENTRY(glWaitSyncAPPLE)(GLsync sync, GLbitfield flags, GLuint64 timeout) {
308 CALL_GL_API(glWaitSyncAPPLE, sync, flags, timeout);
309}
Pablo Ceballos46907542015-10-27 14:00:42 -0700310void API_ENTRY(glGetInteger64vAPPLE)(GLenum pname, GLint64 *params) {
Jesse Hall3703f7f2014-05-13 21:52:56 -0700311 CALL_GL_API(glGetInteger64vAPPLE, pname, params);
312}
Pablo Ceballos46907542015-10-27 14:00:42 -0700313void API_ENTRY(glGetSyncivAPPLE)(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values) {
Jesse Hall3703f7f2014-05-13 21:52:56 -0700314 CALL_GL_API(glGetSyncivAPPLE, sync, pname, bufSize, length, values);
315}
Pablo Ceballos46907542015-10-27 14:00:42 -0700316void API_ENTRY(glDiscardFramebufferEXT)(GLenum target, GLsizei numAttachments, const GLenum *attachments) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700317 CALL_GL_API(glDiscardFramebufferEXT, target, numAttachments, attachments);
318}
Jesse Hall3703f7f2014-05-13 21:52:56 -0700319void * API_ENTRY(glMapBufferRangeEXT)(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access) {
320 CALL_GL_API_RETURN(glMapBufferRangeEXT, target, offset, length, access);
321}
322void API_ENTRY(glFlushMappedBufferRangeEXT)(GLenum target, GLintptr offset, GLsizeiptr length) {
323 CALL_GL_API(glFlushMappedBufferRangeEXT, target, offset, length);
324}
Pablo Ceballos46907542015-10-27 14:00:42 -0700325void API_ENTRY(glMultiDrawArraysEXT)(GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount) {
Jesse Hall3703f7f2014-05-13 21:52:56 -0700326 CALL_GL_API(glMultiDrawArraysEXT, mode, first, count, primcount);
327}
Pablo Ceballos46907542015-10-27 14:00:42 -0700328void API_ENTRY(glMultiDrawElementsEXT)(GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount) {
Jesse Hall3703f7f2014-05-13 21:52:56 -0700329 CALL_GL_API(glMultiDrawElementsEXT, mode, count, type, indices, primcount);
330}
Mathias Agopian31272602012-01-28 14:20:59 -0800331void API_ENTRY(glRenderbufferStorageMultisampleEXT)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height) {
332 CALL_GL_API(glRenderbufferStorageMultisampleEXT, target, samples, internalformat, width, height);
333}
334void API_ENTRY(glFramebufferTexture2DMultisampleEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples) {
335 CALL_GL_API(glFramebufferTexture2DMultisampleEXT, target, attachment, textarget, texture, level, samples);
336}
Mathias Agopian31272602012-01-28 14:20:59 -0800337GLenum API_ENTRY(glGetGraphicsResetStatusEXT)(void) {
338 CALL_GL_API_RETURN(glGetGraphicsResetStatusEXT);
339}
Pablo Ceballos46907542015-10-27 14:00:42 -0700340void API_ENTRY(glReadnPixelsEXT)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data) {
Mathias Agopian31272602012-01-28 14:20:59 -0800341 CALL_GL_API(glReadnPixelsEXT, x, y, width, height, format, type, bufSize, data);
342}
Pablo Ceballos46907542015-10-27 14:00:42 -0700343void API_ENTRY(glGetnUniformfvEXT)(GLuint program, GLint location, GLsizei bufSize, GLfloat *params) {
Mathias Agopian31272602012-01-28 14:20:59 -0800344 CALL_GL_API(glGetnUniformfvEXT, program, location, bufSize, params);
345}
Pablo Ceballos46907542015-10-27 14:00:42 -0700346void API_ENTRY(glGetnUniformivEXT)(GLuint program, GLint location, GLsizei bufSize, GLint *params) {
Mathias Agopian31272602012-01-28 14:20:59 -0800347 CALL_GL_API(glGetnUniformivEXT, program, location, bufSize, params);
348}
349void API_ENTRY(glTexStorage1DEXT)(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width) {
350 CALL_GL_API(glTexStorage1DEXT, target, levels, internalformat, width);
351}
352void API_ENTRY(glTexStorage2DEXT)(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height) {
353 CALL_GL_API(glTexStorage2DEXT, target, levels, internalformat, width, height);
354}
355void API_ENTRY(glTexStorage3DEXT)(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth) {
356 CALL_GL_API(glTexStorage3DEXT, target, levels, internalformat, width, height, depth);
357}
358void API_ENTRY(glTextureStorage1DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width) {
359 CALL_GL_API(glTextureStorage1DEXT, texture, target, levels, internalformat, width);
360}
361void API_ENTRY(glTextureStorage2DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height) {
362 CALL_GL_API(glTextureStorage2DEXT, texture, target, levels, internalformat, width, height);
363}
364void API_ENTRY(glTextureStorage3DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth) {
365 CALL_GL_API(glTextureStorage3DEXT, texture, target, levels, internalformat, width, height, depth);
366}
Mathias Agopian11cca922010-06-09 18:20:21 -0700367void API_ENTRY(glRenderbufferStorageMultisampleIMG)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height) {
368 CALL_GL_API(glRenderbufferStorageMultisampleIMG, target, samples, internalformat, width, height);
369}
370void API_ENTRY(glFramebufferTexture2DMultisampleIMG)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples) {
371 CALL_GL_API(glFramebufferTexture2DMultisampleIMG, target, attachment, textarget, texture, level, samples);
372}
Pablo Ceballos46907542015-10-27 14:00:42 -0700373void API_ENTRY(glClipPlanefIMG)(GLenum p, const GLfloat *eqn) {
Jesse Hall3703f7f2014-05-13 21:52:56 -0700374 CALL_GL_API(glClipPlanefIMG, p, eqn);
375}
Pablo Ceballos46907542015-10-27 14:00:42 -0700376void API_ENTRY(glClipPlanexIMG)(GLenum p, const GLfixed *eqn) {
Jesse Hall3703f7f2014-05-13 21:52:56 -0700377 CALL_GL_API(glClipPlanexIMG, p, eqn);
378}
Pablo Ceballos46907542015-10-27 14:00:42 -0700379void API_ENTRY(glDeleteFencesNV)(GLsizei n, const GLuint *fences) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700380 CALL_GL_API(glDeleteFencesNV, n, fences);
381}
Pablo Ceballos46907542015-10-27 14:00:42 -0700382void API_ENTRY(glGenFencesNV)(GLsizei n, GLuint *fences) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700383 CALL_GL_API(glGenFencesNV, n, fences);
384}
385GLboolean API_ENTRY(glIsFenceNV)(GLuint fence) {
386 CALL_GL_API_RETURN(glIsFenceNV, fence);
387}
388GLboolean API_ENTRY(glTestFenceNV)(GLuint fence) {
389 CALL_GL_API_RETURN(glTestFenceNV, fence);
390}
Pablo Ceballos46907542015-10-27 14:00:42 -0700391void API_ENTRY(glGetFenceivNV)(GLuint fence, GLenum pname, GLint *params) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700392 CALL_GL_API(glGetFenceivNV, fence, pname, params);
393}
394void API_ENTRY(glFinishFenceNV)(GLuint fence) {
395 CALL_GL_API(glFinishFenceNV, fence);
396}
397void API_ENTRY(glSetFenceNV)(GLuint fence, GLenum condition) {
398 CALL_GL_API(glSetFenceNV, fence, condition);
399}
Pablo Ceballos46907542015-10-27 14:00:42 -0700400void API_ENTRY(glGetDriverControlsQCOM)(GLint *num, GLsizei size, GLuint *driverControls) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700401 CALL_GL_API(glGetDriverControlsQCOM, num, size, driverControls);
402}
Pablo Ceballos46907542015-10-27 14:00:42 -0700403void API_ENTRY(glGetDriverControlStringQCOM)(GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700404 CALL_GL_API(glGetDriverControlStringQCOM, driverControl, bufSize, length, driverControlString);
405}
406void API_ENTRY(glEnableDriverControlQCOM)(GLuint driverControl) {
407 CALL_GL_API(glEnableDriverControlQCOM, driverControl);
408}
409void API_ENTRY(glDisableDriverControlQCOM)(GLuint driverControl) {
410 CALL_GL_API(glDisableDriverControlQCOM, driverControl);
411}
Pablo Ceballos46907542015-10-27 14:00:42 -0700412void API_ENTRY(glExtGetTexturesQCOM)(GLuint *textures, GLint maxTextures, GLint *numTextures) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700413 CALL_GL_API(glExtGetTexturesQCOM, textures, maxTextures, numTextures);
414}
Pablo Ceballos46907542015-10-27 14:00:42 -0700415void API_ENTRY(glExtGetBuffersQCOM)(GLuint *buffers, GLint maxBuffers, GLint *numBuffers) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700416 CALL_GL_API(glExtGetBuffersQCOM, buffers, maxBuffers, numBuffers);
417}
Pablo Ceballos46907542015-10-27 14:00:42 -0700418void API_ENTRY(glExtGetRenderbuffersQCOM)(GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700419 CALL_GL_API(glExtGetRenderbuffersQCOM, renderbuffers, maxRenderbuffers, numRenderbuffers);
420}
Pablo Ceballos46907542015-10-27 14:00:42 -0700421void API_ENTRY(glExtGetFramebuffersQCOM)(GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700422 CALL_GL_API(glExtGetFramebuffersQCOM, framebuffers, maxFramebuffers, numFramebuffers);
423}
Pablo Ceballos46907542015-10-27 14:00:42 -0700424void API_ENTRY(glExtGetTexLevelParameterivQCOM)(GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700425 CALL_GL_API(glExtGetTexLevelParameterivQCOM, texture, face, level, pname, params);
426}
427void API_ENTRY(glExtTexObjectStateOverrideiQCOM)(GLenum target, GLenum pname, GLint param) {
428 CALL_GL_API(glExtTexObjectStateOverrideiQCOM, target, pname, param);
429}
Pablo Ceballos46907542015-10-27 14:00:42 -0700430void API_ENTRY(glExtGetTexSubImageQCOM)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void *texels) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700431 CALL_GL_API(glExtGetTexSubImageQCOM, target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, texels);
432}
Pablo Ceballos46907542015-10-27 14:00:42 -0700433void API_ENTRY(glExtGetBufferPointervQCOM)(GLenum target, void **params) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700434 CALL_GL_API(glExtGetBufferPointervQCOM, target, params);
435}
Pablo Ceballos46907542015-10-27 14:00:42 -0700436void API_ENTRY(glExtGetShadersQCOM)(GLuint *shaders, GLint maxShaders, GLint *numShaders) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700437 CALL_GL_API(glExtGetShadersQCOM, shaders, maxShaders, numShaders);
438}
Pablo Ceballos46907542015-10-27 14:00:42 -0700439void API_ENTRY(glExtGetProgramsQCOM)(GLuint *programs, GLint maxPrograms, GLint *numPrograms) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700440 CALL_GL_API(glExtGetProgramsQCOM, programs, maxPrograms, numPrograms);
441}
442GLboolean API_ENTRY(glExtIsProgramBinaryQCOM)(GLuint program) {
443 CALL_GL_API_RETURN(glExtIsProgramBinaryQCOM, program);
444}
Pablo Ceballos46907542015-10-27 14:00:42 -0700445void API_ENTRY(glExtGetProgramBinarySourceQCOM)(GLuint program, GLenum shadertype, GLchar *source, GLint *length) {
Mathias Agopian11cca922010-06-09 18:20:21 -0700446 CALL_GL_API(glExtGetProgramBinarySourceQCOM, program, shadertype, source, length);
447}
448void API_ENTRY(glStartTilingQCOM)(GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask) {
449 CALL_GL_API(glStartTilingQCOM, x, y, width, height, preserveMask);
450}
451void API_ENTRY(glEndTilingQCOM)(GLbitfield preserveMask) {
452 CALL_GL_API(glEndTilingQCOM, preserveMask);
453}