1b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glAlphaFunc)(GLenum func, GLclampf ref) {
2b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glAlphaFunc, func, ref);
3edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
4b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glClearColor)(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) {
5b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glClearColor, red, green, blue, alpha);
6edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
7b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glClearDepthf)(GLclampf depth) {
8b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glClearDepthf, depth);
9edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
10b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glClipPlanef)(GLenum plane, const GLfloat *equation) {
11b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glClipPlanef, plane, equation);
12edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
13b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glColor4f)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) {
14b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glColor4f, red, green, blue, alpha);
15edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
16b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glDepthRangef)(GLclampf zNear, GLclampf zFar) {
17b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glDepthRangef, zNear, zFar);
18edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
19b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glFogf)(GLenum pname, GLfloat param) {
20b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glFogf, pname, param);
21edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
22b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glFogfv)(GLenum pname, const GLfloat *params) {
23b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glFogfv, pname, params);
24edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
25b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glFrustumf)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) {
26b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glFrustumf, left, right, bottom, top, zNear, zFar);
27edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
28b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetClipPlanef)(GLenum pname, GLfloat eqn[4]) {
29b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetClipPlanef, pname, eqn);
30edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
31b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetFloatv)(GLenum pname, GLfloat *params) {
32b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetFloatv, pname, params);
33edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
34b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetLightfv)(GLenum light, GLenum pname, GLfloat *params) {
35b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetLightfv, light, pname, params);
36edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
37b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetMaterialfv)(GLenum face, GLenum pname, GLfloat *params) {
38b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetMaterialfv, face, pname, params);
39edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
40b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetTexEnvfv)(GLenum env, GLenum pname, GLfloat *params) {
41b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetTexEnvfv, env, pname, params);
42edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
43b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetTexParameterfv)(GLenum target, GLenum pname, GLfloat *params) {
44b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetTexParameterfv, target, pname, params);
45edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
46b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glLightModelf)(GLenum pname, GLfloat param) {
47b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glLightModelf, pname, param);
48edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
49b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glLightModelfv)(GLenum pname, const GLfloat *params) {
50b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glLightModelfv, pname, params);
51edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
52b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glLightf)(GLenum light, GLenum pname, GLfloat param) {
53b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glLightf, light, pname, param);
54edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
55b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glLightfv)(GLenum light, GLenum pname, const GLfloat *params) {
56b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glLightfv, light, pname, params);
57edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
58b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glLineWidth)(GLfloat width) {
59b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glLineWidth, width);
60edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
61b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glLoadMatrixf)(const GLfloat *m) {
62b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glLoadMatrixf, m);
63edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
64b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glMaterialf)(GLenum face, GLenum pname, GLfloat param) {
65b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glMaterialf, face, pname, param);
66edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
67b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glMaterialfv)(GLenum face, GLenum pname, const GLfloat *params) {
68b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glMaterialfv, face, pname, params);
69edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
70b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glMultMatrixf)(const GLfloat *m) {
71b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glMultMatrixf, m);
72edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
73b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glMultiTexCoord4f)(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) {
74b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glMultiTexCoord4f, target, s, t, r, q);
75edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
76b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glNormal3f)(GLfloat nx, GLfloat ny, GLfloat nz) {
77b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glNormal3f, nx, ny, nz);
78edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
79b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glOrthof)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) {
80b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glOrthof, left, right, bottom, top, zNear, zFar);
81edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
82b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glPointParameterf)(GLenum pname, GLfloat param) {
83b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glPointParameterf, pname, param);
84edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
85b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glPointParameterfv)(GLenum pname, const GLfloat *params) {
86b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glPointParameterfv, pname, params);
87edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
88b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glPointSize)(GLfloat size) {
89b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glPointSize, size);
90edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
91b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glPolygonOffset)(GLfloat factor, GLfloat units) {
92b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glPolygonOffset, factor, units);
9353238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
94b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glRotatef)(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) {
95b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glRotatef, angle, x, y, z);
9653238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
97b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glScalef)(GLfloat x, GLfloat y, GLfloat z) {
98b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glScalef, x, y, z);
9953238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
100b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexEnvf)(GLenum target, GLenum pname, GLfloat param) {
101b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexEnvf, target, pname, param);
10253238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
103b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexEnvfv)(GLenum target, GLenum pname, const GLfloat *params) {
104b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexEnvfv, target, pname, params);
10553238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
106b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexParameterf)(GLenum target, GLenum pname, GLfloat param) {
107b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexParameterf, target, pname, param);
10853238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
109b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexParameterfv)(GLenum target, GLenum pname, const GLfloat *params) {
110b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexParameterfv, target, pname, params);
11153238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
112b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTranslatef)(GLfloat x, GLfloat y, GLfloat z) {
113b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTranslatef, x, y, z);
11453238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
115b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glActiveTexture)(GLenum texture) {
116b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glActiveTexture, texture);
11753238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
118b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glAlphaFuncx)(GLenum func, GLclampx ref) {
119b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glAlphaFuncx, func, ref);
12053238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
121b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glBindBuffer)(GLenum target, GLuint buffer) {
122b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glBindBuffer, target, buffer);
12353238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
124b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glBindTexture)(GLenum target, GLuint texture) {
125b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glBindTexture, target, texture);
126edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
127b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glBlendFunc)(GLenum sfactor, GLenum dfactor) {
128b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glBlendFunc, sfactor, dfactor);
129edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
130b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glBufferData)(GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage) {
131b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glBufferData, target, size, data, usage);
132edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
133b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glBufferSubData)(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data) {
134b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glBufferSubData, target, offset, size, data);
135edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
136b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glClear)(GLbitfield mask) {
137b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glClear, mask);
138edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
139b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glClearColorx)(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) {
140b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glClearColorx, red, green, blue, alpha);
141edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
142b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glClearDepthx)(GLclampx depth) {
143b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glClearDepthx, depth);
144edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
145b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glClearStencil)(GLint s) {
146b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glClearStencil, s);
147edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
148b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glClientActiveTexture)(GLenum texture) {
149b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glClientActiveTexture, texture);
150edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
151b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glClipPlanex)(GLenum plane, const GLfixed *equation) {
152b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glClipPlanex, plane, equation);
153edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
154b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glColor4ub)(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) {
155b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glColor4ub, red, green, blue, alpha);
156edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
157b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glColor4x)(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) {
158b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glColor4x, red, green, blue, alpha);
159edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
160b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glColorMask)(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) {
161b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glColorMask, red, green, blue, alpha);
162edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
163b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glColorPointer)(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) {
164b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glColorPointer, size, type, stride, pointer);
165edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
166b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glCompressedTexImage2D)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) {
167b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glCompressedTexImage2D, target, level, internalformat, width, height, border, imageSize, data);
168edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
169b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glCompressedTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) {
170b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glCompressedTexSubImage2D, target, level, xoffset, yoffset, width, height, format, imageSize, data);
171edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
172b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glCopyTexImage2D)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) {
173b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glCopyTexImage2D, target, level, internalformat, x, y, width, height, border);
174edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
175b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glCopyTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) {
176b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glCopyTexSubImage2D, target, level, xoffset, yoffset, x, y, width, height);
177edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
178b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glCullFace)(GLenum mode) {
179b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glCullFace, mode);
180edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
181b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glDeleteBuffers)(GLsizei n, const GLuint *buffers) {
182b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glDeleteBuffers, n, buffers);
183edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
184b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glDeleteTextures)(GLsizei n, const GLuint *textures) {
185b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glDeleteTextures, n, textures);
186edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
187b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glDepthFunc)(GLenum func) {
188b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glDepthFunc, func);
189edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
190b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glDepthMask)(GLboolean flag) {
191b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glDepthMask, flag);
192edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
193b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glDepthRangex)(GLclampx zNear, GLclampx zFar) {
194b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glDepthRangex, zNear, zFar);
195edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
196b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glDisable)(GLenum cap) {
197b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glDisable, cap);
198edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
199b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glDisableClientState)(GLenum array) {
200b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glDisableClientState, array);
201edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
202b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glDrawArrays)(GLenum mode, GLint first, GLsizei count) {
203b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glDrawArrays, mode, first, count);
204edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
205b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glDrawElements)(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) {
206b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glDrawElements, mode, count, type, indices);
20753238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
208b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glEnable)(GLenum cap) {
209b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glEnable, cap);
21053238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
211b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glEnableClientState)(GLenum array) {
212b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glEnableClientState, array);
21353238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
214b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glFinish)(void) {
215b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glFinish);
216edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
217b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glFlush)(void) {
218b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glFlush);
219edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
220b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glFogx)(GLenum pname, GLfixed param) {
221b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glFogx, pname, param);
222edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
223b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glFogxv)(GLenum pname, const GLfixed *params) {
224b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glFogxv, pname, params);
225edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
226b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glFrontFace)(GLenum mode) {
227b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glFrontFace, mode);
228edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
229b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glFrustumx)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) {
230b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glFrustumx, left, right, bottom, top, zNear, zFar);
231edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
232b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetBooleanv)(GLenum pname, GLboolean *params) {
233b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetBooleanv, pname, params);
234edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
235b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetBufferParameteriv)(GLenum target, GLenum pname, GLint *params) {
236b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetBufferParameteriv, target, pname, params);
237edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
238b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetClipPlanex)(GLenum pname, GLfixed eqn[4]) {
239b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetClipPlanex, pname, eqn);
240edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
241b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGenBuffers)(GLsizei n, GLuint *buffers) {
242b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGenBuffers, n, buffers);
243edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
244b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGenTextures)(GLsizei n, GLuint *textures) {
245b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGenTextures, n, textures);
246edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
247b519abb606c819c446a408f422530268b21a100bMathias AgopianGLenum API_ENTRY(glGetError)(void) {
248b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API_RETURN(glGetError);
249edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
250b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetFixedv)(GLenum pname, GLfixed *params) {
251b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetFixedv, pname, params);
252edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
253b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetIntegerv)(GLenum pname, GLint *params) {
254b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetIntegerv, pname, params);
255edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
256b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetLightxv)(GLenum light, GLenum pname, GLfixed *params) {
257b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetLightxv, light, pname, params);
258edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
259b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetMaterialxv)(GLenum face, GLenum pname, GLfixed *params) {
260b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetMaterialxv, face, pname, params);
26153238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
26211cca925b23a5226d0582e9da52a1627eaa4a9b3Mathias Agopianvoid API_ENTRY(glGetPointerv)(GLenum pname, GLvoid **params) {
263b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetPointerv, pname, params);
26453238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
26548d438d05f14c2f4bd83ae89f520368cd49122dfMathias Agopianconst GLubyte * API_ENTRY(__glGetString)(GLenum name) {
266b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API_RETURN(glGetString, name);
26753238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
268b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetTexEnviv)(GLenum env, GLenum pname, GLint *params) {
269b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetTexEnviv, env, pname, params);
27053238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
271b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetTexEnvxv)(GLenum env, GLenum pname, GLfixed *params) {
272b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetTexEnvxv, env, pname, params);
27353238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
274b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetTexParameteriv)(GLenum target, GLenum pname, GLint *params) {
275b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetTexParameteriv, target, pname, params);
27653238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
277b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glGetTexParameterxv)(GLenum target, GLenum pname, GLfixed *params) {
278b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glGetTexParameterxv, target, pname, params);
27953238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
280b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glHint)(GLenum target, GLenum mode) {
281b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glHint, target, mode);
28253238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
283b519abb606c819c446a408f422530268b21a100bMathias AgopianGLboolean API_ENTRY(glIsBuffer)(GLuint buffer) {
284b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API_RETURN(glIsBuffer, buffer);
285edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
286b519abb606c819c446a408f422530268b21a100bMathias AgopianGLboolean API_ENTRY(glIsEnabled)(GLenum cap) {
287b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API_RETURN(glIsEnabled, cap);
288edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
289b519abb606c819c446a408f422530268b21a100bMathias AgopianGLboolean API_ENTRY(glIsTexture)(GLuint texture) {
290b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API_RETURN(glIsTexture, texture);
291edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
292b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glLightModelx)(GLenum pname, GLfixed param) {
293b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glLightModelx, pname, param);
294edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
295b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glLightModelxv)(GLenum pname, const GLfixed *params) {
296b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glLightModelxv, pname, params);
297edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
298b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glLightx)(GLenum light, GLenum pname, GLfixed param) {
299b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glLightx, light, pname, param);
300edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
301b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glLightxv)(GLenum light, GLenum pname, const GLfixed *params) {
302b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glLightxv, light, pname, params);
303edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
304b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glLineWidthx)(GLfixed width) {
305b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glLineWidthx, width);
306edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
307b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glLoadIdentity)(void) {
308b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glLoadIdentity);
309edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
310b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glLoadMatrixx)(const GLfixed *m) {
311b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glLoadMatrixx, m);
31253238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
313b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glLogicOp)(GLenum opcode) {
314b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glLogicOp, opcode);
31553238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
316b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glMaterialx)(GLenum face, GLenum pname, GLfixed param) {
317b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glMaterialx, face, pname, param);
31853238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
319b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glMaterialxv)(GLenum face, GLenum pname, const GLfixed *params) {
320b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glMaterialxv, face, pname, params);
32153238bddeab7b4633bfdb59fac67b0af1211955aMathias Agopian}
322b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glMatrixMode)(GLenum mode) {
323b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glMatrixMode, mode);
324edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
325b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glMultMatrixx)(const GLfixed *m) {
326b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glMultMatrixx, m);
327edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
328b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glMultiTexCoord4x)(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q) {
329b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glMultiTexCoord4x, target, s, t, r, q);
330edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
331b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glNormal3x)(GLfixed nx, GLfixed ny, GLfixed nz) {
332b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glNormal3x, nx, ny, nz);
333edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
334b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glNormalPointer)(GLenum type, GLsizei stride, const GLvoid *pointer) {
335b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glNormalPointer, type, stride, pointer);
336edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
337b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glOrthox)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) {
338b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glOrthox, left, right, bottom, top, zNear, zFar);
339edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
340b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glPixelStorei)(GLenum pname, GLint param) {
341b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glPixelStorei, pname, param);
342edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
343b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glPointParameterx)(GLenum pname, GLfixed param) {
344b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glPointParameterx, pname, param);
345edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
346b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glPointParameterxv)(GLenum pname, const GLfixed *params) {
347b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glPointParameterxv, pname, params);
348edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
349b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glPointSizex)(GLfixed size) {
350b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glPointSizex, size);
351edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
352b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glPolygonOffsetx)(GLfixed factor, GLfixed units) {
353b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glPolygonOffsetx, factor, units);
354edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
355b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glPopMatrix)(void) {
356b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glPopMatrix);
357edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
358b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glPushMatrix)(void) {
359b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glPushMatrix);
360edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
361b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glReadPixels)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels) {
362b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glReadPixels, x, y, width, height, format, type, pixels);
363edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
364b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glRotatex)(GLfixed angle, GLfixed x, GLfixed y, GLfixed z) {
365b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glRotatex, angle, x, y, z);
366edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
367b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glSampleCoverage)(GLclampf value, GLboolean invert) {
368b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glSampleCoverage, value, invert);
369edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
370b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glSampleCoveragex)(GLclampx value, GLboolean invert) {
371b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glSampleCoveragex, value, invert);
372edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
373b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glScalex)(GLfixed x, GLfixed y, GLfixed z) {
374b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glScalex, x, y, z);
375edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
376b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glScissor)(GLint x, GLint y, GLsizei width, GLsizei height) {
377b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glScissor, x, y, width, height);
378edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
379b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glShadeModel)(GLenum mode) {
380b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glShadeModel, mode);
381edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
382b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glStencilFunc)(GLenum func, GLint ref, GLuint mask) {
383b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glStencilFunc, func, ref, mask);
384edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
385b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glStencilMask)(GLuint mask) {
386b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glStencilMask, mask);
387edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
388b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glStencilOp)(GLenum fail, GLenum zfail, GLenum zpass) {
389b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glStencilOp, fail, zfail, zpass);
390edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
391b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexCoordPointer)(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) {
392b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexCoordPointer, size, type, stride, pointer);
393edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
394b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexEnvi)(GLenum target, GLenum pname, GLint param) {
395b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexEnvi, target, pname, param);
396edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
397b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexEnvx)(GLenum target, GLenum pname, GLfixed param) {
398b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexEnvx, target, pname, param);
399edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
400b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexEnviv)(GLenum target, GLenum pname, const GLint *params) {
401b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexEnviv, target, pname, params);
402edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
403b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexEnvxv)(GLenum target, GLenum pname, const GLfixed *params) {
404b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexEnvxv, target, pname, params);
405edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
406b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexImage2D)(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) {
407b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexImage2D, target, level, internalformat, width, height, border, format, type, pixels);
408edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
409b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexParameteri)(GLenum target, GLenum pname, GLint param) {
410b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexParameteri, target, pname, param);
411edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
412b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexParameterx)(GLenum target, GLenum pname, GLfixed param) {
413b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexParameterx, target, pname, param);
414edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
415b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexParameteriv)(GLenum target, GLenum pname, const GLint *params) {
416b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexParameteriv, target, pname, params);
417edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
418b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexParameterxv)(GLenum target, GLenum pname, const GLfixed *params) {
419b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexParameterxv, target, pname, params);
420edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
421b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels) {
422b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTexSubImage2D, target, level, xoffset, yoffset, width, height, format, type, pixels);
423edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
424b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glTranslatex)(GLfixed x, GLfixed y, GLfixed z) {
425b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glTranslatex, x, y, z);
426edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
427b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glVertexPointer)(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) {
428b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glVertexPointer, size, type, stride, pointer);
429edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
430b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glViewport)(GLint x, GLint y, GLsizei width, GLsizei height) {
431b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glViewport, x, y, width, height);
432edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
433b519abb606c819c446a408f422530268b21a100bMathias Agopianvoid API_ENTRY(glPointSizePointerOES)(GLenum type, GLsizei stride, const GLvoid *pointer) {
434b519abb606c819c446a408f422530268b21a100bMathias Agopian    CALL_GL_API(glPointSizePointerOES, type, stride, pointer);
435edbf3b6af777b721cd2a1ef461947e51e88241e1The Android Open Source Project}
436