wined3d/glsl: Flush NaN to zero in ftoi.
[wine.git] / dlls / opengl32 / unixlib.h
blob96e42a39b175d1b5be525308ef45301f1ee7386e
1 /* Automatically generated from http://www.opengl.org/registry files; DO NOT EDIT! */
3 #ifndef __WINE_OPENGL32_UNIXLIB_H
4 #define __WINE_OPENGL32_UNIXLIB_H
6 #include <stdarg.h>
7 #include <stddef.h>
9 #include "ntstatus.h"
10 #define WIN32_NO_STATUS
11 #include "windef.h"
12 #include "winbase.h"
13 #include "winternl.h"
14 #include "wingdi.h"
16 #include "wine/wgl.h"
17 #include "wine/unixlib.h"
19 struct wglCopyContext_params
21 TEB *teb;
22 HGLRC hglrcSrc;
23 HGLRC hglrcDst;
24 UINT mask;
25 BOOL ret;
28 struct wglCreateContext_params
30 TEB *teb;
31 HDC hDc;
32 HGLRC ret;
35 struct wglDeleteContext_params
37 TEB *teb;
38 HGLRC oldContext;
39 BOOL ret;
42 struct wglDescribePixelFormat_params
44 TEB *teb;
45 HDC hdc;
46 int ipfd;
47 UINT cjpfd;
48 PIXELFORMATDESCRIPTOR *ppfd;
49 int ret;
52 struct wglGetPixelFormat_params
54 TEB *teb;
55 HDC hdc;
56 int ret;
59 struct wglGetProcAddress_params
61 TEB *teb;
62 LPCSTR lpszProc;
63 PROC ret;
66 struct wglMakeCurrent_params
68 TEB *teb;
69 HDC hDc;
70 HGLRC newContext;
71 BOOL ret;
74 struct wglSetPixelFormat_params
76 TEB *teb;
77 HDC hdc;
78 int ipfd;
79 const PIXELFORMATDESCRIPTOR *ppfd;
80 BOOL ret;
83 struct wglShareLists_params
85 TEB *teb;
86 HGLRC hrcSrvShare;
87 HGLRC hrcSrvSource;
88 BOOL ret;
91 struct wglSwapBuffers_params
93 TEB *teb;
94 HDC hdc;
95 BOOL ret;
98 struct glAccum_params
100 TEB *teb;
101 GLenum op;
102 GLfloat value;
105 struct glAlphaFunc_params
107 TEB *teb;
108 GLenum func;
109 GLfloat ref;
112 struct glAreTexturesResident_params
114 TEB *teb;
115 GLsizei n;
116 const GLuint *textures;
117 GLboolean *residences;
118 GLboolean ret;
121 struct glArrayElement_params
123 TEB *teb;
124 GLint i;
127 struct glBegin_params
129 TEB *teb;
130 GLenum mode;
133 struct glBindTexture_params
135 TEB *teb;
136 GLenum target;
137 GLuint texture;
140 struct glBitmap_params
142 TEB *teb;
143 GLsizei width;
144 GLsizei height;
145 GLfloat xorig;
146 GLfloat yorig;
147 GLfloat xmove;
148 GLfloat ymove;
149 const GLubyte *bitmap;
152 struct glBlendFunc_params
154 TEB *teb;
155 GLenum sfactor;
156 GLenum dfactor;
159 struct glCallList_params
161 TEB *teb;
162 GLuint list;
165 struct glCallLists_params
167 TEB *teb;
168 GLsizei n;
169 GLenum type;
170 const void *lists;
173 struct glClear_params
175 TEB *teb;
176 GLbitfield mask;
179 struct glClearAccum_params
181 TEB *teb;
182 GLfloat red;
183 GLfloat green;
184 GLfloat blue;
185 GLfloat alpha;
188 struct glClearColor_params
190 TEB *teb;
191 GLfloat red;
192 GLfloat green;
193 GLfloat blue;
194 GLfloat alpha;
197 struct glClearDepth_params
199 TEB *teb;
200 GLdouble depth;
203 struct glClearIndex_params
205 TEB *teb;
206 GLfloat c;
209 struct glClearStencil_params
211 TEB *teb;
212 GLint s;
215 struct glClipPlane_params
217 TEB *teb;
218 GLenum plane;
219 const GLdouble *equation;
222 struct glColor3b_params
224 TEB *teb;
225 GLbyte red;
226 GLbyte green;
227 GLbyte blue;
230 struct glColor3bv_params
232 TEB *teb;
233 const GLbyte *v;
236 struct glColor3d_params
238 TEB *teb;
239 GLdouble red;
240 GLdouble green;
241 GLdouble blue;
244 struct glColor3dv_params
246 TEB *teb;
247 const GLdouble *v;
250 struct glColor3f_params
252 TEB *teb;
253 GLfloat red;
254 GLfloat green;
255 GLfloat blue;
258 struct glColor3fv_params
260 TEB *teb;
261 const GLfloat *v;
264 struct glColor3i_params
266 TEB *teb;
267 GLint red;
268 GLint green;
269 GLint blue;
272 struct glColor3iv_params
274 TEB *teb;
275 const GLint *v;
278 struct glColor3s_params
280 TEB *teb;
281 GLshort red;
282 GLshort green;
283 GLshort blue;
286 struct glColor3sv_params
288 TEB *teb;
289 const GLshort *v;
292 struct glColor3ub_params
294 TEB *teb;
295 GLubyte red;
296 GLubyte green;
297 GLubyte blue;
300 struct glColor3ubv_params
302 TEB *teb;
303 const GLubyte *v;
306 struct glColor3ui_params
308 TEB *teb;
309 GLuint red;
310 GLuint green;
311 GLuint blue;
314 struct glColor3uiv_params
316 TEB *teb;
317 const GLuint *v;
320 struct glColor3us_params
322 TEB *teb;
323 GLushort red;
324 GLushort green;
325 GLushort blue;
328 struct glColor3usv_params
330 TEB *teb;
331 const GLushort *v;
334 struct glColor4b_params
336 TEB *teb;
337 GLbyte red;
338 GLbyte green;
339 GLbyte blue;
340 GLbyte alpha;
343 struct glColor4bv_params
345 TEB *teb;
346 const GLbyte *v;
349 struct glColor4d_params
351 TEB *teb;
352 GLdouble red;
353 GLdouble green;
354 GLdouble blue;
355 GLdouble alpha;
358 struct glColor4dv_params
360 TEB *teb;
361 const GLdouble *v;
364 struct glColor4f_params
366 TEB *teb;
367 GLfloat red;
368 GLfloat green;
369 GLfloat blue;
370 GLfloat alpha;
373 struct glColor4fv_params
375 TEB *teb;
376 const GLfloat *v;
379 struct glColor4i_params
381 TEB *teb;
382 GLint red;
383 GLint green;
384 GLint blue;
385 GLint alpha;
388 struct glColor4iv_params
390 TEB *teb;
391 const GLint *v;
394 struct glColor4s_params
396 TEB *teb;
397 GLshort red;
398 GLshort green;
399 GLshort blue;
400 GLshort alpha;
403 struct glColor4sv_params
405 TEB *teb;
406 const GLshort *v;
409 struct glColor4ub_params
411 TEB *teb;
412 GLubyte red;
413 GLubyte green;
414 GLubyte blue;
415 GLubyte alpha;
418 struct glColor4ubv_params
420 TEB *teb;
421 const GLubyte *v;
424 struct glColor4ui_params
426 TEB *teb;
427 GLuint red;
428 GLuint green;
429 GLuint blue;
430 GLuint alpha;
433 struct glColor4uiv_params
435 TEB *teb;
436 const GLuint *v;
439 struct glColor4us_params
441 TEB *teb;
442 GLushort red;
443 GLushort green;
444 GLushort blue;
445 GLushort alpha;
448 struct glColor4usv_params
450 TEB *teb;
451 const GLushort *v;
454 struct glColorMask_params
456 TEB *teb;
457 GLboolean red;
458 GLboolean green;
459 GLboolean blue;
460 GLboolean alpha;
463 struct glColorMaterial_params
465 TEB *teb;
466 GLenum face;
467 GLenum mode;
470 struct glColorPointer_params
472 TEB *teb;
473 GLint size;
474 GLenum type;
475 GLsizei stride;
476 const void *pointer;
479 struct glCopyPixels_params
481 TEB *teb;
482 GLint x;
483 GLint y;
484 GLsizei width;
485 GLsizei height;
486 GLenum type;
489 struct glCopyTexImage1D_params
491 TEB *teb;
492 GLenum target;
493 GLint level;
494 GLenum internalformat;
495 GLint x;
496 GLint y;
497 GLsizei width;
498 GLint border;
501 struct glCopyTexImage2D_params
503 TEB *teb;
504 GLenum target;
505 GLint level;
506 GLenum internalformat;
507 GLint x;
508 GLint y;
509 GLsizei width;
510 GLsizei height;
511 GLint border;
514 struct glCopyTexSubImage1D_params
516 TEB *teb;
517 GLenum target;
518 GLint level;
519 GLint xoffset;
520 GLint x;
521 GLint y;
522 GLsizei width;
525 struct glCopyTexSubImage2D_params
527 TEB *teb;
528 GLenum target;
529 GLint level;
530 GLint xoffset;
531 GLint yoffset;
532 GLint x;
533 GLint y;
534 GLsizei width;
535 GLsizei height;
538 struct glCullFace_params
540 TEB *teb;
541 GLenum mode;
544 struct glDeleteLists_params
546 TEB *teb;
547 GLuint list;
548 GLsizei range;
551 struct glDeleteTextures_params
553 TEB *teb;
554 GLsizei n;
555 const GLuint *textures;
558 struct glDepthFunc_params
560 TEB *teb;
561 GLenum func;
564 struct glDepthMask_params
566 TEB *teb;
567 GLboolean flag;
570 struct glDepthRange_params
572 TEB *teb;
573 GLdouble n;
574 GLdouble f;
577 struct glDisable_params
579 TEB *teb;
580 GLenum cap;
583 struct glDisableClientState_params
585 TEB *teb;
586 GLenum array;
589 struct glDrawArrays_params
591 TEB *teb;
592 GLenum mode;
593 GLint first;
594 GLsizei count;
597 struct glDrawBuffer_params
599 TEB *teb;
600 GLenum buf;
603 struct glDrawElements_params
605 TEB *teb;
606 GLenum mode;
607 GLsizei count;
608 GLenum type;
609 const void *indices;
612 struct glDrawPixels_params
614 TEB *teb;
615 GLsizei width;
616 GLsizei height;
617 GLenum format;
618 GLenum type;
619 const void *pixels;
622 struct glEdgeFlag_params
624 TEB *teb;
625 GLboolean flag;
628 struct glEdgeFlagPointer_params
630 TEB *teb;
631 GLsizei stride;
632 const void *pointer;
635 struct glEdgeFlagv_params
637 TEB *teb;
638 const GLboolean *flag;
641 struct glEnable_params
643 TEB *teb;
644 GLenum cap;
647 struct glEnableClientState_params
649 TEB *teb;
650 GLenum array;
653 struct glEnd_params
655 TEB *teb;
658 struct glEndList_params
660 TEB *teb;
663 struct glEvalCoord1d_params
665 TEB *teb;
666 GLdouble u;
669 struct glEvalCoord1dv_params
671 TEB *teb;
672 const GLdouble *u;
675 struct glEvalCoord1f_params
677 TEB *teb;
678 GLfloat u;
681 struct glEvalCoord1fv_params
683 TEB *teb;
684 const GLfloat *u;
687 struct glEvalCoord2d_params
689 TEB *teb;
690 GLdouble u;
691 GLdouble v;
694 struct glEvalCoord2dv_params
696 TEB *teb;
697 const GLdouble *u;
700 struct glEvalCoord2f_params
702 TEB *teb;
703 GLfloat u;
704 GLfloat v;
707 struct glEvalCoord2fv_params
709 TEB *teb;
710 const GLfloat *u;
713 struct glEvalMesh1_params
715 TEB *teb;
716 GLenum mode;
717 GLint i1;
718 GLint i2;
721 struct glEvalMesh2_params
723 TEB *teb;
724 GLenum mode;
725 GLint i1;
726 GLint i2;
727 GLint j1;
728 GLint j2;
731 struct glEvalPoint1_params
733 TEB *teb;
734 GLint i;
737 struct glEvalPoint2_params
739 TEB *teb;
740 GLint i;
741 GLint j;
744 struct glFeedbackBuffer_params
746 TEB *teb;
747 GLsizei size;
748 GLenum type;
749 GLfloat *buffer;
752 struct glFinish_params
754 TEB *teb;
757 struct glFlush_params
759 TEB *teb;
762 struct glFogf_params
764 TEB *teb;
765 GLenum pname;
766 GLfloat param;
769 struct glFogfv_params
771 TEB *teb;
772 GLenum pname;
773 const GLfloat *params;
776 struct glFogi_params
778 TEB *teb;
779 GLenum pname;
780 GLint param;
783 struct glFogiv_params
785 TEB *teb;
786 GLenum pname;
787 const GLint *params;
790 struct glFrontFace_params
792 TEB *teb;
793 GLenum mode;
796 struct glFrustum_params
798 TEB *teb;
799 GLdouble left;
800 GLdouble right;
801 GLdouble bottom;
802 GLdouble top;
803 GLdouble zNear;
804 GLdouble zFar;
807 struct glGenLists_params
809 TEB *teb;
810 GLsizei range;
811 GLuint ret;
814 struct glGenTextures_params
816 TEB *teb;
817 GLsizei n;
818 GLuint *textures;
821 struct glGetBooleanv_params
823 TEB *teb;
824 GLenum pname;
825 GLboolean *data;
828 struct glGetClipPlane_params
830 TEB *teb;
831 GLenum plane;
832 GLdouble *equation;
835 struct glGetDoublev_params
837 TEB *teb;
838 GLenum pname;
839 GLdouble *data;
842 struct glGetError_params
844 TEB *teb;
845 GLenum ret;
848 struct glGetFloatv_params
850 TEB *teb;
851 GLenum pname;
852 GLfloat *data;
855 struct glGetIntegerv_params
857 TEB *teb;
858 GLenum pname;
859 GLint *data;
862 struct glGetLightfv_params
864 TEB *teb;
865 GLenum light;
866 GLenum pname;
867 GLfloat *params;
870 struct glGetLightiv_params
872 TEB *teb;
873 GLenum light;
874 GLenum pname;
875 GLint *params;
878 struct glGetMapdv_params
880 TEB *teb;
881 GLenum target;
882 GLenum query;
883 GLdouble *v;
886 struct glGetMapfv_params
888 TEB *teb;
889 GLenum target;
890 GLenum query;
891 GLfloat *v;
894 struct glGetMapiv_params
896 TEB *teb;
897 GLenum target;
898 GLenum query;
899 GLint *v;
902 struct glGetMaterialfv_params
904 TEB *teb;
905 GLenum face;
906 GLenum pname;
907 GLfloat *params;
910 struct glGetMaterialiv_params
912 TEB *teb;
913 GLenum face;
914 GLenum pname;
915 GLint *params;
918 struct glGetPixelMapfv_params
920 TEB *teb;
921 GLenum map;
922 GLfloat *values;
925 struct glGetPixelMapuiv_params
927 TEB *teb;
928 GLenum map;
929 GLuint *values;
932 struct glGetPixelMapusv_params
934 TEB *teb;
935 GLenum map;
936 GLushort *values;
939 struct glGetPointerv_params
941 TEB *teb;
942 GLenum pname;
943 void **params;
946 struct glGetPolygonStipple_params
948 TEB *teb;
949 GLubyte *mask;
952 struct glGetString_params
954 TEB *teb;
955 GLenum name;
956 const GLubyte *ret;
959 struct glGetTexEnvfv_params
961 TEB *teb;
962 GLenum target;
963 GLenum pname;
964 GLfloat *params;
967 struct glGetTexEnviv_params
969 TEB *teb;
970 GLenum target;
971 GLenum pname;
972 GLint *params;
975 struct glGetTexGendv_params
977 TEB *teb;
978 GLenum coord;
979 GLenum pname;
980 GLdouble *params;
983 struct glGetTexGenfv_params
985 TEB *teb;
986 GLenum coord;
987 GLenum pname;
988 GLfloat *params;
991 struct glGetTexGeniv_params
993 TEB *teb;
994 GLenum coord;
995 GLenum pname;
996 GLint *params;
999 struct glGetTexImage_params
1001 TEB *teb;
1002 GLenum target;
1003 GLint level;
1004 GLenum format;
1005 GLenum type;
1006 void *pixels;
1009 struct glGetTexLevelParameterfv_params
1011 TEB *teb;
1012 GLenum target;
1013 GLint level;
1014 GLenum pname;
1015 GLfloat *params;
1018 struct glGetTexLevelParameteriv_params
1020 TEB *teb;
1021 GLenum target;
1022 GLint level;
1023 GLenum pname;
1024 GLint *params;
1027 struct glGetTexParameterfv_params
1029 TEB *teb;
1030 GLenum target;
1031 GLenum pname;
1032 GLfloat *params;
1035 struct glGetTexParameteriv_params
1037 TEB *teb;
1038 GLenum target;
1039 GLenum pname;
1040 GLint *params;
1043 struct glHint_params
1045 TEB *teb;
1046 GLenum target;
1047 GLenum mode;
1050 struct glIndexMask_params
1052 TEB *teb;
1053 GLuint mask;
1056 struct glIndexPointer_params
1058 TEB *teb;
1059 GLenum type;
1060 GLsizei stride;
1061 const void *pointer;
1064 struct glIndexd_params
1066 TEB *teb;
1067 GLdouble c;
1070 struct glIndexdv_params
1072 TEB *teb;
1073 const GLdouble *c;
1076 struct glIndexf_params
1078 TEB *teb;
1079 GLfloat c;
1082 struct glIndexfv_params
1084 TEB *teb;
1085 const GLfloat *c;
1088 struct glIndexi_params
1090 TEB *teb;
1091 GLint c;
1094 struct glIndexiv_params
1096 TEB *teb;
1097 const GLint *c;
1100 struct glIndexs_params
1102 TEB *teb;
1103 GLshort c;
1106 struct glIndexsv_params
1108 TEB *teb;
1109 const GLshort *c;
1112 struct glIndexub_params
1114 TEB *teb;
1115 GLubyte c;
1118 struct glIndexubv_params
1120 TEB *teb;
1121 const GLubyte *c;
1124 struct glInitNames_params
1126 TEB *teb;
1129 struct glInterleavedArrays_params
1131 TEB *teb;
1132 GLenum format;
1133 GLsizei stride;
1134 const void *pointer;
1137 struct glIsEnabled_params
1139 TEB *teb;
1140 GLenum cap;
1141 GLboolean ret;
1144 struct glIsList_params
1146 TEB *teb;
1147 GLuint list;
1148 GLboolean ret;
1151 struct glIsTexture_params
1153 TEB *teb;
1154 GLuint texture;
1155 GLboolean ret;
1158 struct glLightModelf_params
1160 TEB *teb;
1161 GLenum pname;
1162 GLfloat param;
1165 struct glLightModelfv_params
1167 TEB *teb;
1168 GLenum pname;
1169 const GLfloat *params;
1172 struct glLightModeli_params
1174 TEB *teb;
1175 GLenum pname;
1176 GLint param;
1179 struct glLightModeliv_params
1181 TEB *teb;
1182 GLenum pname;
1183 const GLint *params;
1186 struct glLightf_params
1188 TEB *teb;
1189 GLenum light;
1190 GLenum pname;
1191 GLfloat param;
1194 struct glLightfv_params
1196 TEB *teb;
1197 GLenum light;
1198 GLenum pname;
1199 const GLfloat *params;
1202 struct glLighti_params
1204 TEB *teb;
1205 GLenum light;
1206 GLenum pname;
1207 GLint param;
1210 struct glLightiv_params
1212 TEB *teb;
1213 GLenum light;
1214 GLenum pname;
1215 const GLint *params;
1218 struct glLineStipple_params
1220 TEB *teb;
1221 GLint factor;
1222 GLushort pattern;
1225 struct glLineWidth_params
1227 TEB *teb;
1228 GLfloat width;
1231 struct glListBase_params
1233 TEB *teb;
1234 GLuint base;
1237 struct glLoadIdentity_params
1239 TEB *teb;
1242 struct glLoadMatrixd_params
1244 TEB *teb;
1245 const GLdouble *m;
1248 struct glLoadMatrixf_params
1250 TEB *teb;
1251 const GLfloat *m;
1254 struct glLoadName_params
1256 TEB *teb;
1257 GLuint name;
1260 struct glLogicOp_params
1262 TEB *teb;
1263 GLenum opcode;
1266 struct glMap1d_params
1268 TEB *teb;
1269 GLenum target;
1270 GLdouble u1;
1271 GLdouble u2;
1272 GLint stride;
1273 GLint order;
1274 const GLdouble *points;
1277 struct glMap1f_params
1279 TEB *teb;
1280 GLenum target;
1281 GLfloat u1;
1282 GLfloat u2;
1283 GLint stride;
1284 GLint order;
1285 const GLfloat *points;
1288 struct glMap2d_params
1290 TEB *teb;
1291 GLenum target;
1292 GLdouble u1;
1293 GLdouble u2;
1294 GLint ustride;
1295 GLint uorder;
1296 GLdouble v1;
1297 GLdouble v2;
1298 GLint vstride;
1299 GLint vorder;
1300 const GLdouble *points;
1303 struct glMap2f_params
1305 TEB *teb;
1306 GLenum target;
1307 GLfloat u1;
1308 GLfloat u2;
1309 GLint ustride;
1310 GLint uorder;
1311 GLfloat v1;
1312 GLfloat v2;
1313 GLint vstride;
1314 GLint vorder;
1315 const GLfloat *points;
1318 struct glMapGrid1d_params
1320 TEB *teb;
1321 GLint un;
1322 GLdouble u1;
1323 GLdouble u2;
1326 struct glMapGrid1f_params
1328 TEB *teb;
1329 GLint un;
1330 GLfloat u1;
1331 GLfloat u2;
1334 struct glMapGrid2d_params
1336 TEB *teb;
1337 GLint un;
1338 GLdouble u1;
1339 GLdouble u2;
1340 GLint vn;
1341 GLdouble v1;
1342 GLdouble v2;
1345 struct glMapGrid2f_params
1347 TEB *teb;
1348 GLint un;
1349 GLfloat u1;
1350 GLfloat u2;
1351 GLint vn;
1352 GLfloat v1;
1353 GLfloat v2;
1356 struct glMaterialf_params
1358 TEB *teb;
1359 GLenum face;
1360 GLenum pname;
1361 GLfloat param;
1364 struct glMaterialfv_params
1366 TEB *teb;
1367 GLenum face;
1368 GLenum pname;
1369 const GLfloat *params;
1372 struct glMateriali_params
1374 TEB *teb;
1375 GLenum face;
1376 GLenum pname;
1377 GLint param;
1380 struct glMaterialiv_params
1382 TEB *teb;
1383 GLenum face;
1384 GLenum pname;
1385 const GLint *params;
1388 struct glMatrixMode_params
1390 TEB *teb;
1391 GLenum mode;
1394 struct glMultMatrixd_params
1396 TEB *teb;
1397 const GLdouble *m;
1400 struct glMultMatrixf_params
1402 TEB *teb;
1403 const GLfloat *m;
1406 struct glNewList_params
1408 TEB *teb;
1409 GLuint list;
1410 GLenum mode;
1413 struct glNormal3b_params
1415 TEB *teb;
1416 GLbyte nx;
1417 GLbyte ny;
1418 GLbyte nz;
1421 struct glNormal3bv_params
1423 TEB *teb;
1424 const GLbyte *v;
1427 struct glNormal3d_params
1429 TEB *teb;
1430 GLdouble nx;
1431 GLdouble ny;
1432 GLdouble nz;
1435 struct glNormal3dv_params
1437 TEB *teb;
1438 const GLdouble *v;
1441 struct glNormal3f_params
1443 TEB *teb;
1444 GLfloat nx;
1445 GLfloat ny;
1446 GLfloat nz;
1449 struct glNormal3fv_params
1451 TEB *teb;
1452 const GLfloat *v;
1455 struct glNormal3i_params
1457 TEB *teb;
1458 GLint nx;
1459 GLint ny;
1460 GLint nz;
1463 struct glNormal3iv_params
1465 TEB *teb;
1466 const GLint *v;
1469 struct glNormal3s_params
1471 TEB *teb;
1472 GLshort nx;
1473 GLshort ny;
1474 GLshort nz;
1477 struct glNormal3sv_params
1479 TEB *teb;
1480 const GLshort *v;
1483 struct glNormalPointer_params
1485 TEB *teb;
1486 GLenum type;
1487 GLsizei stride;
1488 const void *pointer;
1491 struct glOrtho_params
1493 TEB *teb;
1494 GLdouble left;
1495 GLdouble right;
1496 GLdouble bottom;
1497 GLdouble top;
1498 GLdouble zNear;
1499 GLdouble zFar;
1502 struct glPassThrough_params
1504 TEB *teb;
1505 GLfloat token;
1508 struct glPixelMapfv_params
1510 TEB *teb;
1511 GLenum map;
1512 GLsizei mapsize;
1513 const GLfloat *values;
1516 struct glPixelMapuiv_params
1518 TEB *teb;
1519 GLenum map;
1520 GLsizei mapsize;
1521 const GLuint *values;
1524 struct glPixelMapusv_params
1526 TEB *teb;
1527 GLenum map;
1528 GLsizei mapsize;
1529 const GLushort *values;
1532 struct glPixelStoref_params
1534 TEB *teb;
1535 GLenum pname;
1536 GLfloat param;
1539 struct glPixelStorei_params
1541 TEB *teb;
1542 GLenum pname;
1543 GLint param;
1546 struct glPixelTransferf_params
1548 TEB *teb;
1549 GLenum pname;
1550 GLfloat param;
1553 struct glPixelTransferi_params
1555 TEB *teb;
1556 GLenum pname;
1557 GLint param;
1560 struct glPixelZoom_params
1562 TEB *teb;
1563 GLfloat xfactor;
1564 GLfloat yfactor;
1567 struct glPointSize_params
1569 TEB *teb;
1570 GLfloat size;
1573 struct glPolygonMode_params
1575 TEB *teb;
1576 GLenum face;
1577 GLenum mode;
1580 struct glPolygonOffset_params
1582 TEB *teb;
1583 GLfloat factor;
1584 GLfloat units;
1587 struct glPolygonStipple_params
1589 TEB *teb;
1590 const GLubyte *mask;
1593 struct glPopAttrib_params
1595 TEB *teb;
1598 struct glPopClientAttrib_params
1600 TEB *teb;
1603 struct glPopMatrix_params
1605 TEB *teb;
1608 struct glPopName_params
1610 TEB *teb;
1613 struct glPrioritizeTextures_params
1615 TEB *teb;
1616 GLsizei n;
1617 const GLuint *textures;
1618 const GLfloat *priorities;
1621 struct glPushAttrib_params
1623 TEB *teb;
1624 GLbitfield mask;
1627 struct glPushClientAttrib_params
1629 TEB *teb;
1630 GLbitfield mask;
1633 struct glPushMatrix_params
1635 TEB *teb;
1638 struct glPushName_params
1640 TEB *teb;
1641 GLuint name;
1644 struct glRasterPos2d_params
1646 TEB *teb;
1647 GLdouble x;
1648 GLdouble y;
1651 struct glRasterPos2dv_params
1653 TEB *teb;
1654 const GLdouble *v;
1657 struct glRasterPos2f_params
1659 TEB *teb;
1660 GLfloat x;
1661 GLfloat y;
1664 struct glRasterPos2fv_params
1666 TEB *teb;
1667 const GLfloat *v;
1670 struct glRasterPos2i_params
1672 TEB *teb;
1673 GLint x;
1674 GLint y;
1677 struct glRasterPos2iv_params
1679 TEB *teb;
1680 const GLint *v;
1683 struct glRasterPos2s_params
1685 TEB *teb;
1686 GLshort x;
1687 GLshort y;
1690 struct glRasterPos2sv_params
1692 TEB *teb;
1693 const GLshort *v;
1696 struct glRasterPos3d_params
1698 TEB *teb;
1699 GLdouble x;
1700 GLdouble y;
1701 GLdouble z;
1704 struct glRasterPos3dv_params
1706 TEB *teb;
1707 const GLdouble *v;
1710 struct glRasterPos3f_params
1712 TEB *teb;
1713 GLfloat x;
1714 GLfloat y;
1715 GLfloat z;
1718 struct glRasterPos3fv_params
1720 TEB *teb;
1721 const GLfloat *v;
1724 struct glRasterPos3i_params
1726 TEB *teb;
1727 GLint x;
1728 GLint y;
1729 GLint z;
1732 struct glRasterPos3iv_params
1734 TEB *teb;
1735 const GLint *v;
1738 struct glRasterPos3s_params
1740 TEB *teb;
1741 GLshort x;
1742 GLshort y;
1743 GLshort z;
1746 struct glRasterPos3sv_params
1748 TEB *teb;
1749 const GLshort *v;
1752 struct glRasterPos4d_params
1754 TEB *teb;
1755 GLdouble x;
1756 GLdouble y;
1757 GLdouble z;
1758 GLdouble w;
1761 struct glRasterPos4dv_params
1763 TEB *teb;
1764 const GLdouble *v;
1767 struct glRasterPos4f_params
1769 TEB *teb;
1770 GLfloat x;
1771 GLfloat y;
1772 GLfloat z;
1773 GLfloat w;
1776 struct glRasterPos4fv_params
1778 TEB *teb;
1779 const GLfloat *v;
1782 struct glRasterPos4i_params
1784 TEB *teb;
1785 GLint x;
1786 GLint y;
1787 GLint z;
1788 GLint w;
1791 struct glRasterPos4iv_params
1793 TEB *teb;
1794 const GLint *v;
1797 struct glRasterPos4s_params
1799 TEB *teb;
1800 GLshort x;
1801 GLshort y;
1802 GLshort z;
1803 GLshort w;
1806 struct glRasterPos4sv_params
1808 TEB *teb;
1809 const GLshort *v;
1812 struct glReadBuffer_params
1814 TEB *teb;
1815 GLenum src;
1818 struct glReadPixels_params
1820 TEB *teb;
1821 GLint x;
1822 GLint y;
1823 GLsizei width;
1824 GLsizei height;
1825 GLenum format;
1826 GLenum type;
1827 void *pixels;
1830 struct glRectd_params
1832 TEB *teb;
1833 GLdouble x1;
1834 GLdouble y1;
1835 GLdouble x2;
1836 GLdouble y2;
1839 struct glRectdv_params
1841 TEB *teb;
1842 const GLdouble *v1;
1843 const GLdouble *v2;
1846 struct glRectf_params
1848 TEB *teb;
1849 GLfloat x1;
1850 GLfloat y1;
1851 GLfloat x2;
1852 GLfloat y2;
1855 struct glRectfv_params
1857 TEB *teb;
1858 const GLfloat *v1;
1859 const GLfloat *v2;
1862 struct glRecti_params
1864 TEB *teb;
1865 GLint x1;
1866 GLint y1;
1867 GLint x2;
1868 GLint y2;
1871 struct glRectiv_params
1873 TEB *teb;
1874 const GLint *v1;
1875 const GLint *v2;
1878 struct glRects_params
1880 TEB *teb;
1881 GLshort x1;
1882 GLshort y1;
1883 GLshort x2;
1884 GLshort y2;
1887 struct glRectsv_params
1889 TEB *teb;
1890 const GLshort *v1;
1891 const GLshort *v2;
1894 struct glRenderMode_params
1896 TEB *teb;
1897 GLenum mode;
1898 GLint ret;
1901 struct glRotated_params
1903 TEB *teb;
1904 GLdouble angle;
1905 GLdouble x;
1906 GLdouble y;
1907 GLdouble z;
1910 struct glRotatef_params
1912 TEB *teb;
1913 GLfloat angle;
1914 GLfloat x;
1915 GLfloat y;
1916 GLfloat z;
1919 struct glScaled_params
1921 TEB *teb;
1922 GLdouble x;
1923 GLdouble y;
1924 GLdouble z;
1927 struct glScalef_params
1929 TEB *teb;
1930 GLfloat x;
1931 GLfloat y;
1932 GLfloat z;
1935 struct glScissor_params
1937 TEB *teb;
1938 GLint x;
1939 GLint y;
1940 GLsizei width;
1941 GLsizei height;
1944 struct glSelectBuffer_params
1946 TEB *teb;
1947 GLsizei size;
1948 GLuint *buffer;
1951 struct glShadeModel_params
1953 TEB *teb;
1954 GLenum mode;
1957 struct glStencilFunc_params
1959 TEB *teb;
1960 GLenum func;
1961 GLint ref;
1962 GLuint mask;
1965 struct glStencilMask_params
1967 TEB *teb;
1968 GLuint mask;
1971 struct glStencilOp_params
1973 TEB *teb;
1974 GLenum fail;
1975 GLenum zfail;
1976 GLenum zpass;
1979 struct glTexCoord1d_params
1981 TEB *teb;
1982 GLdouble s;
1985 struct glTexCoord1dv_params
1987 TEB *teb;
1988 const GLdouble *v;
1991 struct glTexCoord1f_params
1993 TEB *teb;
1994 GLfloat s;
1997 struct glTexCoord1fv_params
1999 TEB *teb;
2000 const GLfloat *v;
2003 struct glTexCoord1i_params
2005 TEB *teb;
2006 GLint s;
2009 struct glTexCoord1iv_params
2011 TEB *teb;
2012 const GLint *v;
2015 struct glTexCoord1s_params
2017 TEB *teb;
2018 GLshort s;
2021 struct glTexCoord1sv_params
2023 TEB *teb;
2024 const GLshort *v;
2027 struct glTexCoord2d_params
2029 TEB *teb;
2030 GLdouble s;
2031 GLdouble t;
2034 struct glTexCoord2dv_params
2036 TEB *teb;
2037 const GLdouble *v;
2040 struct glTexCoord2f_params
2042 TEB *teb;
2043 GLfloat s;
2044 GLfloat t;
2047 struct glTexCoord2fv_params
2049 TEB *teb;
2050 const GLfloat *v;
2053 struct glTexCoord2i_params
2055 TEB *teb;
2056 GLint s;
2057 GLint t;
2060 struct glTexCoord2iv_params
2062 TEB *teb;
2063 const GLint *v;
2066 struct glTexCoord2s_params
2068 TEB *teb;
2069 GLshort s;
2070 GLshort t;
2073 struct glTexCoord2sv_params
2075 TEB *teb;
2076 const GLshort *v;
2079 struct glTexCoord3d_params
2081 TEB *teb;
2082 GLdouble s;
2083 GLdouble t;
2084 GLdouble r;
2087 struct glTexCoord3dv_params
2089 TEB *teb;
2090 const GLdouble *v;
2093 struct glTexCoord3f_params
2095 TEB *teb;
2096 GLfloat s;
2097 GLfloat t;
2098 GLfloat r;
2101 struct glTexCoord3fv_params
2103 TEB *teb;
2104 const GLfloat *v;
2107 struct glTexCoord3i_params
2109 TEB *teb;
2110 GLint s;
2111 GLint t;
2112 GLint r;
2115 struct glTexCoord3iv_params
2117 TEB *teb;
2118 const GLint *v;
2121 struct glTexCoord3s_params
2123 TEB *teb;
2124 GLshort s;
2125 GLshort t;
2126 GLshort r;
2129 struct glTexCoord3sv_params
2131 TEB *teb;
2132 const GLshort *v;
2135 struct glTexCoord4d_params
2137 TEB *teb;
2138 GLdouble s;
2139 GLdouble t;
2140 GLdouble r;
2141 GLdouble q;
2144 struct glTexCoord4dv_params
2146 TEB *teb;
2147 const GLdouble *v;
2150 struct glTexCoord4f_params
2152 TEB *teb;
2153 GLfloat s;
2154 GLfloat t;
2155 GLfloat r;
2156 GLfloat q;
2159 struct glTexCoord4fv_params
2161 TEB *teb;
2162 const GLfloat *v;
2165 struct glTexCoord4i_params
2167 TEB *teb;
2168 GLint s;
2169 GLint t;
2170 GLint r;
2171 GLint q;
2174 struct glTexCoord4iv_params
2176 TEB *teb;
2177 const GLint *v;
2180 struct glTexCoord4s_params
2182 TEB *teb;
2183 GLshort s;
2184 GLshort t;
2185 GLshort r;
2186 GLshort q;
2189 struct glTexCoord4sv_params
2191 TEB *teb;
2192 const GLshort *v;
2195 struct glTexCoordPointer_params
2197 TEB *teb;
2198 GLint size;
2199 GLenum type;
2200 GLsizei stride;
2201 const void *pointer;
2204 struct glTexEnvf_params
2206 TEB *teb;
2207 GLenum target;
2208 GLenum pname;
2209 GLfloat param;
2212 struct glTexEnvfv_params
2214 TEB *teb;
2215 GLenum target;
2216 GLenum pname;
2217 const GLfloat *params;
2220 struct glTexEnvi_params
2222 TEB *teb;
2223 GLenum target;
2224 GLenum pname;
2225 GLint param;
2228 struct glTexEnviv_params
2230 TEB *teb;
2231 GLenum target;
2232 GLenum pname;
2233 const GLint *params;
2236 struct glTexGend_params
2238 TEB *teb;
2239 GLenum coord;
2240 GLenum pname;
2241 GLdouble param;
2244 struct glTexGendv_params
2246 TEB *teb;
2247 GLenum coord;
2248 GLenum pname;
2249 const GLdouble *params;
2252 struct glTexGenf_params
2254 TEB *teb;
2255 GLenum coord;
2256 GLenum pname;
2257 GLfloat param;
2260 struct glTexGenfv_params
2262 TEB *teb;
2263 GLenum coord;
2264 GLenum pname;
2265 const GLfloat *params;
2268 struct glTexGeni_params
2270 TEB *teb;
2271 GLenum coord;
2272 GLenum pname;
2273 GLint param;
2276 struct glTexGeniv_params
2278 TEB *teb;
2279 GLenum coord;
2280 GLenum pname;
2281 const GLint *params;
2284 struct glTexImage1D_params
2286 TEB *teb;
2287 GLenum target;
2288 GLint level;
2289 GLint internalformat;
2290 GLsizei width;
2291 GLint border;
2292 GLenum format;
2293 GLenum type;
2294 const void *pixels;
2297 struct glTexImage2D_params
2299 TEB *teb;
2300 GLenum target;
2301 GLint level;
2302 GLint internalformat;
2303 GLsizei width;
2304 GLsizei height;
2305 GLint border;
2306 GLenum format;
2307 GLenum type;
2308 const void *pixels;
2311 struct glTexParameterf_params
2313 TEB *teb;
2314 GLenum target;
2315 GLenum pname;
2316 GLfloat param;
2319 struct glTexParameterfv_params
2321 TEB *teb;
2322 GLenum target;
2323 GLenum pname;
2324 const GLfloat *params;
2327 struct glTexParameteri_params
2329 TEB *teb;
2330 GLenum target;
2331 GLenum pname;
2332 GLint param;
2335 struct glTexParameteriv_params
2337 TEB *teb;
2338 GLenum target;
2339 GLenum pname;
2340 const GLint *params;
2343 struct glTexSubImage1D_params
2345 TEB *teb;
2346 GLenum target;
2347 GLint level;
2348 GLint xoffset;
2349 GLsizei width;
2350 GLenum format;
2351 GLenum type;
2352 const void *pixels;
2355 struct glTexSubImage2D_params
2357 TEB *teb;
2358 GLenum target;
2359 GLint level;
2360 GLint xoffset;
2361 GLint yoffset;
2362 GLsizei width;
2363 GLsizei height;
2364 GLenum format;
2365 GLenum type;
2366 const void *pixels;
2369 struct glTranslated_params
2371 TEB *teb;
2372 GLdouble x;
2373 GLdouble y;
2374 GLdouble z;
2377 struct glTranslatef_params
2379 TEB *teb;
2380 GLfloat x;
2381 GLfloat y;
2382 GLfloat z;
2385 struct glVertex2d_params
2387 TEB *teb;
2388 GLdouble x;
2389 GLdouble y;
2392 struct glVertex2dv_params
2394 TEB *teb;
2395 const GLdouble *v;
2398 struct glVertex2f_params
2400 TEB *teb;
2401 GLfloat x;
2402 GLfloat y;
2405 struct glVertex2fv_params
2407 TEB *teb;
2408 const GLfloat *v;
2411 struct glVertex2i_params
2413 TEB *teb;
2414 GLint x;
2415 GLint y;
2418 struct glVertex2iv_params
2420 TEB *teb;
2421 const GLint *v;
2424 struct glVertex2s_params
2426 TEB *teb;
2427 GLshort x;
2428 GLshort y;
2431 struct glVertex2sv_params
2433 TEB *teb;
2434 const GLshort *v;
2437 struct glVertex3d_params
2439 TEB *teb;
2440 GLdouble x;
2441 GLdouble y;
2442 GLdouble z;
2445 struct glVertex3dv_params
2447 TEB *teb;
2448 const GLdouble *v;
2451 struct glVertex3f_params
2453 TEB *teb;
2454 GLfloat x;
2455 GLfloat y;
2456 GLfloat z;
2459 struct glVertex3fv_params
2461 TEB *teb;
2462 const GLfloat *v;
2465 struct glVertex3i_params
2467 TEB *teb;
2468 GLint x;
2469 GLint y;
2470 GLint z;
2473 struct glVertex3iv_params
2475 TEB *teb;
2476 const GLint *v;
2479 struct glVertex3s_params
2481 TEB *teb;
2482 GLshort x;
2483 GLshort y;
2484 GLshort z;
2487 struct glVertex3sv_params
2489 TEB *teb;
2490 const GLshort *v;
2493 struct glVertex4d_params
2495 TEB *teb;
2496 GLdouble x;
2497 GLdouble y;
2498 GLdouble z;
2499 GLdouble w;
2502 struct glVertex4dv_params
2504 TEB *teb;
2505 const GLdouble *v;
2508 struct glVertex4f_params
2510 TEB *teb;
2511 GLfloat x;
2512 GLfloat y;
2513 GLfloat z;
2514 GLfloat w;
2517 struct glVertex4fv_params
2519 TEB *teb;
2520 const GLfloat *v;
2523 struct glVertex4i_params
2525 TEB *teb;
2526 GLint x;
2527 GLint y;
2528 GLint z;
2529 GLint w;
2532 struct glVertex4iv_params
2534 TEB *teb;
2535 const GLint *v;
2538 struct glVertex4s_params
2540 TEB *teb;
2541 GLshort x;
2542 GLshort y;
2543 GLshort z;
2544 GLshort w;
2547 struct glVertex4sv_params
2549 TEB *teb;
2550 const GLshort *v;
2553 struct glVertexPointer_params
2555 TEB *teb;
2556 GLint size;
2557 GLenum type;
2558 GLsizei stride;
2559 const void *pointer;
2562 struct glViewport_params
2564 TEB *teb;
2565 GLint x;
2566 GLint y;
2567 GLsizei width;
2568 GLsizei height;
2571 struct glAccumxOES_params
2573 TEB *teb;
2574 GLenum op;
2575 GLfixed value;
2578 struct glAcquireKeyedMutexWin32EXT_params
2580 TEB *teb;
2581 GLuint memory;
2582 GLuint64 key;
2583 GLuint timeout;
2584 GLboolean ret;
2587 struct glActiveProgramEXT_params
2589 TEB *teb;
2590 GLuint program;
2593 struct glActiveShaderProgram_params
2595 TEB *teb;
2596 GLuint pipeline;
2597 GLuint program;
2600 struct glActiveStencilFaceEXT_params
2602 TEB *teb;
2603 GLenum face;
2606 struct glActiveTexture_params
2608 TEB *teb;
2609 GLenum texture;
2612 struct glActiveTextureARB_params
2614 TEB *teb;
2615 GLenum texture;
2618 struct glActiveVaryingNV_params
2620 TEB *teb;
2621 GLuint program;
2622 const GLchar *name;
2625 struct glAlphaFragmentOp1ATI_params
2627 TEB *teb;
2628 GLenum op;
2629 GLuint dst;
2630 GLuint dstMod;
2631 GLuint arg1;
2632 GLuint arg1Rep;
2633 GLuint arg1Mod;
2636 struct glAlphaFragmentOp2ATI_params
2638 TEB *teb;
2639 GLenum op;
2640 GLuint dst;
2641 GLuint dstMod;
2642 GLuint arg1;
2643 GLuint arg1Rep;
2644 GLuint arg1Mod;
2645 GLuint arg2;
2646 GLuint arg2Rep;
2647 GLuint arg2Mod;
2650 struct glAlphaFragmentOp3ATI_params
2652 TEB *teb;
2653 GLenum op;
2654 GLuint dst;
2655 GLuint dstMod;
2656 GLuint arg1;
2657 GLuint arg1Rep;
2658 GLuint arg1Mod;
2659 GLuint arg2;
2660 GLuint arg2Rep;
2661 GLuint arg2Mod;
2662 GLuint arg3;
2663 GLuint arg3Rep;
2664 GLuint arg3Mod;
2667 struct glAlphaFuncxOES_params
2669 TEB *teb;
2670 GLenum func;
2671 GLfixed ref;
2674 struct glAlphaToCoverageDitherControlNV_params
2676 TEB *teb;
2677 GLenum mode;
2680 struct glApplyFramebufferAttachmentCMAAINTEL_params
2682 TEB *teb;
2685 struct glApplyTextureEXT_params
2687 TEB *teb;
2688 GLenum mode;
2691 struct glAreProgramsResidentNV_params
2693 TEB *teb;
2694 GLsizei n;
2695 const GLuint *programs;
2696 GLboolean *residences;
2697 GLboolean ret;
2700 struct glAreTexturesResidentEXT_params
2702 TEB *teb;
2703 GLsizei n;
2704 const GLuint *textures;
2705 GLboolean *residences;
2706 GLboolean ret;
2709 struct glArrayElementEXT_params
2711 TEB *teb;
2712 GLint i;
2715 struct glArrayObjectATI_params
2717 TEB *teb;
2718 GLenum array;
2719 GLint size;
2720 GLenum type;
2721 GLsizei stride;
2722 GLuint buffer;
2723 GLuint offset;
2726 struct glAsyncCopyBufferSubDataNVX_params
2728 TEB *teb;
2729 GLsizei waitSemaphoreCount;
2730 const GLuint *waitSemaphoreArray;
2731 const GLuint64 *fenceValueArray;
2732 GLuint readGpu;
2733 GLbitfield writeGpuMask;
2734 GLuint readBuffer;
2735 GLuint writeBuffer;
2736 GLintptr readOffset;
2737 GLintptr writeOffset;
2738 GLsizeiptr size;
2739 GLsizei signalSemaphoreCount;
2740 const GLuint *signalSemaphoreArray;
2741 const GLuint64 *signalValueArray;
2742 GLuint ret;
2745 struct glAsyncCopyImageSubDataNVX_params
2747 TEB *teb;
2748 GLsizei waitSemaphoreCount;
2749 const GLuint *waitSemaphoreArray;
2750 const GLuint64 *waitValueArray;
2751 GLuint srcGpu;
2752 GLbitfield dstGpuMask;
2753 GLuint srcName;
2754 GLenum srcTarget;
2755 GLint srcLevel;
2756 GLint srcX;
2757 GLint srcY;
2758 GLint srcZ;
2759 GLuint dstName;
2760 GLenum dstTarget;
2761 GLint dstLevel;
2762 GLint dstX;
2763 GLint dstY;
2764 GLint dstZ;
2765 GLsizei srcWidth;
2766 GLsizei srcHeight;
2767 GLsizei srcDepth;
2768 GLsizei signalSemaphoreCount;
2769 const GLuint *signalSemaphoreArray;
2770 const GLuint64 *signalValueArray;
2771 GLuint ret;
2774 struct glAsyncMarkerSGIX_params
2776 TEB *teb;
2777 GLuint marker;
2780 struct glAttachObjectARB_params
2782 TEB *teb;
2783 GLhandleARB containerObj;
2784 GLhandleARB obj;
2787 struct glAttachShader_params
2789 TEB *teb;
2790 GLuint program;
2791 GLuint shader;
2794 struct glBeginConditionalRender_params
2796 TEB *teb;
2797 GLuint id;
2798 GLenum mode;
2801 struct glBeginConditionalRenderNV_params
2803 TEB *teb;
2804 GLuint id;
2805 GLenum mode;
2808 struct glBeginConditionalRenderNVX_params
2810 TEB *teb;
2811 GLuint id;
2814 struct glBeginFragmentShaderATI_params
2816 TEB *teb;
2819 struct glBeginOcclusionQueryNV_params
2821 TEB *teb;
2822 GLuint id;
2825 struct glBeginPerfMonitorAMD_params
2827 TEB *teb;
2828 GLuint monitor;
2831 struct glBeginPerfQueryINTEL_params
2833 TEB *teb;
2834 GLuint queryHandle;
2837 struct glBeginQuery_params
2839 TEB *teb;
2840 GLenum target;
2841 GLuint id;
2844 struct glBeginQueryARB_params
2846 TEB *teb;
2847 GLenum target;
2848 GLuint id;
2851 struct glBeginQueryIndexed_params
2853 TEB *teb;
2854 GLenum target;
2855 GLuint index;
2856 GLuint id;
2859 struct glBeginTransformFeedback_params
2861 TEB *teb;
2862 GLenum primitiveMode;
2865 struct glBeginTransformFeedbackEXT_params
2867 TEB *teb;
2868 GLenum primitiveMode;
2871 struct glBeginTransformFeedbackNV_params
2873 TEB *teb;
2874 GLenum primitiveMode;
2877 struct glBeginVertexShaderEXT_params
2879 TEB *teb;
2882 struct glBeginVideoCaptureNV_params
2884 TEB *teb;
2885 GLuint video_capture_slot;
2888 struct glBindAttribLocation_params
2890 TEB *teb;
2891 GLuint program;
2892 GLuint index;
2893 const GLchar *name;
2896 struct glBindAttribLocationARB_params
2898 TEB *teb;
2899 GLhandleARB programObj;
2900 GLuint index;
2901 const GLcharARB *name;
2904 struct glBindBuffer_params
2906 TEB *teb;
2907 GLenum target;
2908 GLuint buffer;
2911 struct glBindBufferARB_params
2913 TEB *teb;
2914 GLenum target;
2915 GLuint buffer;
2918 struct glBindBufferBase_params
2920 TEB *teb;
2921 GLenum target;
2922 GLuint index;
2923 GLuint buffer;
2926 struct glBindBufferBaseEXT_params
2928 TEB *teb;
2929 GLenum target;
2930 GLuint index;
2931 GLuint buffer;
2934 struct glBindBufferBaseNV_params
2936 TEB *teb;
2937 GLenum target;
2938 GLuint index;
2939 GLuint buffer;
2942 struct glBindBufferOffsetEXT_params
2944 TEB *teb;
2945 GLenum target;
2946 GLuint index;
2947 GLuint buffer;
2948 GLintptr offset;
2951 struct glBindBufferOffsetNV_params
2953 TEB *teb;
2954 GLenum target;
2955 GLuint index;
2956 GLuint buffer;
2957 GLintptr offset;
2960 struct glBindBufferRange_params
2962 TEB *teb;
2963 GLenum target;
2964 GLuint index;
2965 GLuint buffer;
2966 GLintptr offset;
2967 GLsizeiptr size;
2970 struct glBindBufferRangeEXT_params
2972 TEB *teb;
2973 GLenum target;
2974 GLuint index;
2975 GLuint buffer;
2976 GLintptr offset;
2977 GLsizeiptr size;
2980 struct glBindBufferRangeNV_params
2982 TEB *teb;
2983 GLenum target;
2984 GLuint index;
2985 GLuint buffer;
2986 GLintptr offset;
2987 GLsizeiptr size;
2990 struct glBindBuffersBase_params
2992 TEB *teb;
2993 GLenum target;
2994 GLuint first;
2995 GLsizei count;
2996 const GLuint *buffers;
2999 struct glBindBuffersRange_params
3001 TEB *teb;
3002 GLenum target;
3003 GLuint first;
3004 GLsizei count;
3005 const GLuint *buffers;
3006 const GLintptr *offsets;
3007 const GLsizeiptr *sizes;
3010 struct glBindFragDataLocation_params
3012 TEB *teb;
3013 GLuint program;
3014 GLuint color;
3015 const GLchar *name;
3018 struct glBindFragDataLocationEXT_params
3020 TEB *teb;
3021 GLuint program;
3022 GLuint color;
3023 const GLchar *name;
3026 struct glBindFragDataLocationIndexed_params
3028 TEB *teb;
3029 GLuint program;
3030 GLuint colorNumber;
3031 GLuint index;
3032 const GLchar *name;
3035 struct glBindFragmentShaderATI_params
3037 TEB *teb;
3038 GLuint id;
3041 struct glBindFramebuffer_params
3043 TEB *teb;
3044 GLenum target;
3045 GLuint framebuffer;
3048 struct glBindFramebufferEXT_params
3050 TEB *teb;
3051 GLenum target;
3052 GLuint framebuffer;
3055 struct glBindImageTexture_params
3057 TEB *teb;
3058 GLuint unit;
3059 GLuint texture;
3060 GLint level;
3061 GLboolean layered;
3062 GLint layer;
3063 GLenum access;
3064 GLenum format;
3067 struct glBindImageTextureEXT_params
3069 TEB *teb;
3070 GLuint index;
3071 GLuint texture;
3072 GLint level;
3073 GLboolean layered;
3074 GLint layer;
3075 GLenum access;
3076 GLint format;
3079 struct glBindImageTextures_params
3081 TEB *teb;
3082 GLuint first;
3083 GLsizei count;
3084 const GLuint *textures;
3087 struct glBindLightParameterEXT_params
3089 TEB *teb;
3090 GLenum light;
3091 GLenum value;
3092 GLuint ret;
3095 struct glBindMaterialParameterEXT_params
3097 TEB *teb;
3098 GLenum face;
3099 GLenum value;
3100 GLuint ret;
3103 struct glBindMultiTextureEXT_params
3105 TEB *teb;
3106 GLenum texunit;
3107 GLenum target;
3108 GLuint texture;
3111 struct glBindParameterEXT_params
3113 TEB *teb;
3114 GLenum value;
3115 GLuint ret;
3118 struct glBindProgramARB_params
3120 TEB *teb;
3121 GLenum target;
3122 GLuint program;
3125 struct glBindProgramNV_params
3127 TEB *teb;
3128 GLenum target;
3129 GLuint id;
3132 struct glBindProgramPipeline_params
3134 TEB *teb;
3135 GLuint pipeline;
3138 struct glBindRenderbuffer_params
3140 TEB *teb;
3141 GLenum target;
3142 GLuint renderbuffer;
3145 struct glBindRenderbufferEXT_params
3147 TEB *teb;
3148 GLenum target;
3149 GLuint renderbuffer;
3152 struct glBindSampler_params
3154 TEB *teb;
3155 GLuint unit;
3156 GLuint sampler;
3159 struct glBindSamplers_params
3161 TEB *teb;
3162 GLuint first;
3163 GLsizei count;
3164 const GLuint *samplers;
3167 struct glBindShadingRateImageNV_params
3169 TEB *teb;
3170 GLuint texture;
3173 struct glBindTexGenParameterEXT_params
3175 TEB *teb;
3176 GLenum unit;
3177 GLenum coord;
3178 GLenum value;
3179 GLuint ret;
3182 struct glBindTextureEXT_params
3184 TEB *teb;
3185 GLenum target;
3186 GLuint texture;
3189 struct glBindTextureUnit_params
3191 TEB *teb;
3192 GLuint unit;
3193 GLuint texture;
3196 struct glBindTextureUnitParameterEXT_params
3198 TEB *teb;
3199 GLenum unit;
3200 GLenum value;
3201 GLuint ret;
3204 struct glBindTextures_params
3206 TEB *teb;
3207 GLuint first;
3208 GLsizei count;
3209 const GLuint *textures;
3212 struct glBindTransformFeedback_params
3214 TEB *teb;
3215 GLenum target;
3216 GLuint id;
3219 struct glBindTransformFeedbackNV_params
3221 TEB *teb;
3222 GLenum target;
3223 GLuint id;
3226 struct glBindVertexArray_params
3228 TEB *teb;
3229 GLuint array;
3232 struct glBindVertexArrayAPPLE_params
3234 TEB *teb;
3235 GLuint array;
3238 struct glBindVertexBuffer_params
3240 TEB *teb;
3241 GLuint bindingindex;
3242 GLuint buffer;
3243 GLintptr offset;
3244 GLsizei stride;
3247 struct glBindVertexBuffers_params
3249 TEB *teb;
3250 GLuint first;
3251 GLsizei count;
3252 const GLuint *buffers;
3253 const GLintptr *offsets;
3254 const GLsizei *strides;
3257 struct glBindVertexShaderEXT_params
3259 TEB *teb;
3260 GLuint id;
3263 struct glBindVideoCaptureStreamBufferNV_params
3265 TEB *teb;
3266 GLuint video_capture_slot;
3267 GLuint stream;
3268 GLenum frame_region;
3269 GLintptrARB offset;
3272 struct glBindVideoCaptureStreamTextureNV_params
3274 TEB *teb;
3275 GLuint video_capture_slot;
3276 GLuint stream;
3277 GLenum frame_region;
3278 GLenum target;
3279 GLuint texture;
3282 struct glBinormal3bEXT_params
3284 TEB *teb;
3285 GLbyte bx;
3286 GLbyte by;
3287 GLbyte bz;
3290 struct glBinormal3bvEXT_params
3292 TEB *teb;
3293 const GLbyte *v;
3296 struct glBinormal3dEXT_params
3298 TEB *teb;
3299 GLdouble bx;
3300 GLdouble by;
3301 GLdouble bz;
3304 struct glBinormal3dvEXT_params
3306 TEB *teb;
3307 const GLdouble *v;
3310 struct glBinormal3fEXT_params
3312 TEB *teb;
3313 GLfloat bx;
3314 GLfloat by;
3315 GLfloat bz;
3318 struct glBinormal3fvEXT_params
3320 TEB *teb;
3321 const GLfloat *v;
3324 struct glBinormal3iEXT_params
3326 TEB *teb;
3327 GLint bx;
3328 GLint by;
3329 GLint bz;
3332 struct glBinormal3ivEXT_params
3334 TEB *teb;
3335 const GLint *v;
3338 struct glBinormal3sEXT_params
3340 TEB *teb;
3341 GLshort bx;
3342 GLshort by;
3343 GLshort bz;
3346 struct glBinormal3svEXT_params
3348 TEB *teb;
3349 const GLshort *v;
3352 struct glBinormalPointerEXT_params
3354 TEB *teb;
3355 GLenum type;
3356 GLsizei stride;
3357 const void *pointer;
3360 struct glBitmapxOES_params
3362 TEB *teb;
3363 GLsizei width;
3364 GLsizei height;
3365 GLfixed xorig;
3366 GLfixed yorig;
3367 GLfixed xmove;
3368 GLfixed ymove;
3369 const GLubyte *bitmap;
3372 struct glBlendBarrierKHR_params
3374 TEB *teb;
3377 struct glBlendBarrierNV_params
3379 TEB *teb;
3382 struct glBlendColor_params
3384 TEB *teb;
3385 GLfloat red;
3386 GLfloat green;
3387 GLfloat blue;
3388 GLfloat alpha;
3391 struct glBlendColorEXT_params
3393 TEB *teb;
3394 GLfloat red;
3395 GLfloat green;
3396 GLfloat blue;
3397 GLfloat alpha;
3400 struct glBlendColorxOES_params
3402 TEB *teb;
3403 GLfixed red;
3404 GLfixed green;
3405 GLfixed blue;
3406 GLfixed alpha;
3409 struct glBlendEquation_params
3411 TEB *teb;
3412 GLenum mode;
3415 struct glBlendEquationEXT_params
3417 TEB *teb;
3418 GLenum mode;
3421 struct glBlendEquationIndexedAMD_params
3423 TEB *teb;
3424 GLuint buf;
3425 GLenum mode;
3428 struct glBlendEquationSeparate_params
3430 TEB *teb;
3431 GLenum modeRGB;
3432 GLenum modeAlpha;
3435 struct glBlendEquationSeparateEXT_params
3437 TEB *teb;
3438 GLenum modeRGB;
3439 GLenum modeAlpha;
3442 struct glBlendEquationSeparateIndexedAMD_params
3444 TEB *teb;
3445 GLuint buf;
3446 GLenum modeRGB;
3447 GLenum modeAlpha;
3450 struct glBlendEquationSeparatei_params
3452 TEB *teb;
3453 GLuint buf;
3454 GLenum modeRGB;
3455 GLenum modeAlpha;
3458 struct glBlendEquationSeparateiARB_params
3460 TEB *teb;
3461 GLuint buf;
3462 GLenum modeRGB;
3463 GLenum modeAlpha;
3466 struct glBlendEquationi_params
3468 TEB *teb;
3469 GLuint buf;
3470 GLenum mode;
3473 struct glBlendEquationiARB_params
3475 TEB *teb;
3476 GLuint buf;
3477 GLenum mode;
3480 struct glBlendFuncIndexedAMD_params
3482 TEB *teb;
3483 GLuint buf;
3484 GLenum src;
3485 GLenum dst;
3488 struct glBlendFuncSeparate_params
3490 TEB *teb;
3491 GLenum sfactorRGB;
3492 GLenum dfactorRGB;
3493 GLenum sfactorAlpha;
3494 GLenum dfactorAlpha;
3497 struct glBlendFuncSeparateEXT_params
3499 TEB *teb;
3500 GLenum sfactorRGB;
3501 GLenum dfactorRGB;
3502 GLenum sfactorAlpha;
3503 GLenum dfactorAlpha;
3506 struct glBlendFuncSeparateINGR_params
3508 TEB *teb;
3509 GLenum sfactorRGB;
3510 GLenum dfactorRGB;
3511 GLenum sfactorAlpha;
3512 GLenum dfactorAlpha;
3515 struct glBlendFuncSeparateIndexedAMD_params
3517 TEB *teb;
3518 GLuint buf;
3519 GLenum srcRGB;
3520 GLenum dstRGB;
3521 GLenum srcAlpha;
3522 GLenum dstAlpha;
3525 struct glBlendFuncSeparatei_params
3527 TEB *teb;
3528 GLuint buf;
3529 GLenum srcRGB;
3530 GLenum dstRGB;
3531 GLenum srcAlpha;
3532 GLenum dstAlpha;
3535 struct glBlendFuncSeparateiARB_params
3537 TEB *teb;
3538 GLuint buf;
3539 GLenum srcRGB;
3540 GLenum dstRGB;
3541 GLenum srcAlpha;
3542 GLenum dstAlpha;
3545 struct glBlendFunci_params
3547 TEB *teb;
3548 GLuint buf;
3549 GLenum src;
3550 GLenum dst;
3553 struct glBlendFunciARB_params
3555 TEB *teb;
3556 GLuint buf;
3557 GLenum src;
3558 GLenum dst;
3561 struct glBlendParameteriNV_params
3563 TEB *teb;
3564 GLenum pname;
3565 GLint value;
3568 struct glBlitFramebuffer_params
3570 TEB *teb;
3571 GLint srcX0;
3572 GLint srcY0;
3573 GLint srcX1;
3574 GLint srcY1;
3575 GLint dstX0;
3576 GLint dstY0;
3577 GLint dstX1;
3578 GLint dstY1;
3579 GLbitfield mask;
3580 GLenum filter;
3583 struct glBlitFramebufferEXT_params
3585 TEB *teb;
3586 GLint srcX0;
3587 GLint srcY0;
3588 GLint srcX1;
3589 GLint srcY1;
3590 GLint dstX0;
3591 GLint dstY0;
3592 GLint dstX1;
3593 GLint dstY1;
3594 GLbitfield mask;
3595 GLenum filter;
3598 struct glBlitNamedFramebuffer_params
3600 TEB *teb;
3601 GLuint readFramebuffer;
3602 GLuint drawFramebuffer;
3603 GLint srcX0;
3604 GLint srcY0;
3605 GLint srcX1;
3606 GLint srcY1;
3607 GLint dstX0;
3608 GLint dstY0;
3609 GLint dstX1;
3610 GLint dstY1;
3611 GLbitfield mask;
3612 GLenum filter;
3615 struct glBufferAddressRangeNV_params
3617 TEB *teb;
3618 GLenum pname;
3619 GLuint index;
3620 GLuint64EXT address;
3621 GLsizeiptr length;
3624 struct glBufferAttachMemoryNV_params
3626 TEB *teb;
3627 GLenum target;
3628 GLuint memory;
3629 GLuint64 offset;
3632 struct glBufferData_params
3634 TEB *teb;
3635 GLenum target;
3636 GLsizeiptr size;
3637 const void *data;
3638 GLenum usage;
3641 struct glBufferDataARB_params
3643 TEB *teb;
3644 GLenum target;
3645 GLsizeiptrARB size;
3646 const void *data;
3647 GLenum usage;
3650 struct glBufferPageCommitmentARB_params
3652 TEB *teb;
3653 GLenum target;
3654 GLintptr offset;
3655 GLsizeiptr size;
3656 GLboolean commit;
3659 struct glBufferParameteriAPPLE_params
3661 TEB *teb;
3662 GLenum target;
3663 GLenum pname;
3664 GLint param;
3667 struct glBufferRegionEnabled_params
3669 TEB *teb;
3670 GLuint ret;
3673 struct glBufferStorage_params
3675 TEB *teb;
3676 GLenum target;
3677 GLsizeiptr size;
3678 const void *data;
3679 GLbitfield flags;
3682 struct glBufferStorageExternalEXT_params
3684 TEB *teb;
3685 GLenum target;
3686 GLintptr offset;
3687 GLsizeiptr size;
3688 GLeglClientBufferEXT clientBuffer;
3689 GLbitfield flags;
3692 struct glBufferStorageMemEXT_params
3694 TEB *teb;
3695 GLenum target;
3696 GLsizeiptr size;
3697 GLuint memory;
3698 GLuint64 offset;
3701 struct glBufferSubData_params
3703 TEB *teb;
3704 GLenum target;
3705 GLintptr offset;
3706 GLsizeiptr size;
3707 const void *data;
3710 struct glBufferSubDataARB_params
3712 TEB *teb;
3713 GLenum target;
3714 GLintptrARB offset;
3715 GLsizeiptrARB size;
3716 const void *data;
3719 struct glCallCommandListNV_params
3721 TEB *teb;
3722 GLuint list;
3725 struct glCheckFramebufferStatus_params
3727 TEB *teb;
3728 GLenum target;
3729 GLenum ret;
3732 struct glCheckFramebufferStatusEXT_params
3734 TEB *teb;
3735 GLenum target;
3736 GLenum ret;
3739 struct glCheckNamedFramebufferStatus_params
3741 TEB *teb;
3742 GLuint framebuffer;
3743 GLenum target;
3744 GLenum ret;
3747 struct glCheckNamedFramebufferStatusEXT_params
3749 TEB *teb;
3750 GLuint framebuffer;
3751 GLenum target;
3752 GLenum ret;
3755 struct glClampColor_params
3757 TEB *teb;
3758 GLenum target;
3759 GLenum clamp;
3762 struct glClampColorARB_params
3764 TEB *teb;
3765 GLenum target;
3766 GLenum clamp;
3769 struct glClearAccumxOES_params
3771 TEB *teb;
3772 GLfixed red;
3773 GLfixed green;
3774 GLfixed blue;
3775 GLfixed alpha;
3778 struct glClearBufferData_params
3780 TEB *teb;
3781 GLenum target;
3782 GLenum internalformat;
3783 GLenum format;
3784 GLenum type;
3785 const void *data;
3788 struct glClearBufferSubData_params
3790 TEB *teb;
3791 GLenum target;
3792 GLenum internalformat;
3793 GLintptr offset;
3794 GLsizeiptr size;
3795 GLenum format;
3796 GLenum type;
3797 const void *data;
3800 struct glClearBufferfi_params
3802 TEB *teb;
3803 GLenum buffer;
3804 GLint drawbuffer;
3805 GLfloat depth;
3806 GLint stencil;
3809 struct glClearBufferfv_params
3811 TEB *teb;
3812 GLenum buffer;
3813 GLint drawbuffer;
3814 const GLfloat *value;
3817 struct glClearBufferiv_params
3819 TEB *teb;
3820 GLenum buffer;
3821 GLint drawbuffer;
3822 const GLint *value;
3825 struct glClearBufferuiv_params
3827 TEB *teb;
3828 GLenum buffer;
3829 GLint drawbuffer;
3830 const GLuint *value;
3833 struct glClearColorIiEXT_params
3835 TEB *teb;
3836 GLint red;
3837 GLint green;
3838 GLint blue;
3839 GLint alpha;
3842 struct glClearColorIuiEXT_params
3844 TEB *teb;
3845 GLuint red;
3846 GLuint green;
3847 GLuint blue;
3848 GLuint alpha;
3851 struct glClearColorxOES_params
3853 TEB *teb;
3854 GLfixed red;
3855 GLfixed green;
3856 GLfixed blue;
3857 GLfixed alpha;
3860 struct glClearDepthdNV_params
3862 TEB *teb;
3863 GLdouble depth;
3866 struct glClearDepthf_params
3868 TEB *teb;
3869 GLfloat d;
3872 struct glClearDepthfOES_params
3874 TEB *teb;
3875 GLclampf depth;
3878 struct glClearDepthxOES_params
3880 TEB *teb;
3881 GLfixed depth;
3884 struct glClearNamedBufferData_params
3886 TEB *teb;
3887 GLuint buffer;
3888 GLenum internalformat;
3889 GLenum format;
3890 GLenum type;
3891 const void *data;
3894 struct glClearNamedBufferDataEXT_params
3896 TEB *teb;
3897 GLuint buffer;
3898 GLenum internalformat;
3899 GLenum format;
3900 GLenum type;
3901 const void *data;
3904 struct glClearNamedBufferSubData_params
3906 TEB *teb;
3907 GLuint buffer;
3908 GLenum internalformat;
3909 GLintptr offset;
3910 GLsizeiptr size;
3911 GLenum format;
3912 GLenum type;
3913 const void *data;
3916 struct glClearNamedBufferSubDataEXT_params
3918 TEB *teb;
3919 GLuint buffer;
3920 GLenum internalformat;
3921 GLsizeiptr offset;
3922 GLsizeiptr size;
3923 GLenum format;
3924 GLenum type;
3925 const void *data;
3928 struct glClearNamedFramebufferfi_params
3930 TEB *teb;
3931 GLuint framebuffer;
3932 GLenum buffer;
3933 GLint drawbuffer;
3934 GLfloat depth;
3935 GLint stencil;
3938 struct glClearNamedFramebufferfv_params
3940 TEB *teb;
3941 GLuint framebuffer;
3942 GLenum buffer;
3943 GLint drawbuffer;
3944 const GLfloat *value;
3947 struct glClearNamedFramebufferiv_params
3949 TEB *teb;
3950 GLuint framebuffer;
3951 GLenum buffer;
3952 GLint drawbuffer;
3953 const GLint *value;
3956 struct glClearNamedFramebufferuiv_params
3958 TEB *teb;
3959 GLuint framebuffer;
3960 GLenum buffer;
3961 GLint drawbuffer;
3962 const GLuint *value;
3965 struct glClearTexImage_params
3967 TEB *teb;
3968 GLuint texture;
3969 GLint level;
3970 GLenum format;
3971 GLenum type;
3972 const void *data;
3975 struct glClearTexSubImage_params
3977 TEB *teb;
3978 GLuint texture;
3979 GLint level;
3980 GLint xoffset;
3981 GLint yoffset;
3982 GLint zoffset;
3983 GLsizei width;
3984 GLsizei height;
3985 GLsizei depth;
3986 GLenum format;
3987 GLenum type;
3988 const void *data;
3991 struct glClientActiveTexture_params
3993 TEB *teb;
3994 GLenum texture;
3997 struct glClientActiveTextureARB_params
3999 TEB *teb;
4000 GLenum texture;
4003 struct glClientActiveVertexStreamATI_params
4005 TEB *teb;
4006 GLenum stream;
4009 struct glClientAttribDefaultEXT_params
4011 TEB *teb;
4012 GLbitfield mask;
4015 struct glClientWaitSemaphoreui64NVX_params
4017 TEB *teb;
4018 GLsizei fenceObjectCount;
4019 const GLuint *semaphoreArray;
4020 const GLuint64 *fenceValueArray;
4023 struct glClientWaitSync_params
4025 TEB *teb;
4026 GLsync sync;
4027 GLbitfield flags;
4028 GLuint64 timeout;
4029 GLenum ret;
4032 struct glClipControl_params
4034 TEB *teb;
4035 GLenum origin;
4036 GLenum depth;
4039 struct glClipPlanefOES_params
4041 TEB *teb;
4042 GLenum plane;
4043 const GLfloat *equation;
4046 struct glClipPlanexOES_params
4048 TEB *teb;
4049 GLenum plane;
4050 const GLfixed *equation;
4053 struct glColor3fVertex3fSUN_params
4055 TEB *teb;
4056 GLfloat r;
4057 GLfloat g;
4058 GLfloat b;
4059 GLfloat x;
4060 GLfloat y;
4061 GLfloat z;
4064 struct glColor3fVertex3fvSUN_params
4066 TEB *teb;
4067 const GLfloat *c;
4068 const GLfloat *v;
4071 struct glColor3hNV_params
4073 TEB *teb;
4074 GLhalfNV red;
4075 GLhalfNV green;
4076 GLhalfNV blue;
4079 struct glColor3hvNV_params
4081 TEB *teb;
4082 const GLhalfNV *v;
4085 struct glColor3xOES_params
4087 TEB *teb;
4088 GLfixed red;
4089 GLfixed green;
4090 GLfixed blue;
4093 struct glColor3xvOES_params
4095 TEB *teb;
4096 const GLfixed *components;
4099 struct glColor4fNormal3fVertex3fSUN_params
4101 TEB *teb;
4102 GLfloat r;
4103 GLfloat g;
4104 GLfloat b;
4105 GLfloat a;
4106 GLfloat nx;
4107 GLfloat ny;
4108 GLfloat nz;
4109 GLfloat x;
4110 GLfloat y;
4111 GLfloat z;
4114 struct glColor4fNormal3fVertex3fvSUN_params
4116 TEB *teb;
4117 const GLfloat *c;
4118 const GLfloat *n;
4119 const GLfloat *v;
4122 struct glColor4hNV_params
4124 TEB *teb;
4125 GLhalfNV red;
4126 GLhalfNV green;
4127 GLhalfNV blue;
4128 GLhalfNV alpha;
4131 struct glColor4hvNV_params
4133 TEB *teb;
4134 const GLhalfNV *v;
4137 struct glColor4ubVertex2fSUN_params
4139 TEB *teb;
4140 GLubyte r;
4141 GLubyte g;
4142 GLubyte b;
4143 GLubyte a;
4144 GLfloat x;
4145 GLfloat y;
4148 struct glColor4ubVertex2fvSUN_params
4150 TEB *teb;
4151 const GLubyte *c;
4152 const GLfloat *v;
4155 struct glColor4ubVertex3fSUN_params
4157 TEB *teb;
4158 GLubyte r;
4159 GLubyte g;
4160 GLubyte b;
4161 GLubyte a;
4162 GLfloat x;
4163 GLfloat y;
4164 GLfloat z;
4167 struct glColor4ubVertex3fvSUN_params
4169 TEB *teb;
4170 const GLubyte *c;
4171 const GLfloat *v;
4174 struct glColor4xOES_params
4176 TEB *teb;
4177 GLfixed red;
4178 GLfixed green;
4179 GLfixed blue;
4180 GLfixed alpha;
4183 struct glColor4xvOES_params
4185 TEB *teb;
4186 const GLfixed *components;
4189 struct glColorFormatNV_params
4191 TEB *teb;
4192 GLint size;
4193 GLenum type;
4194 GLsizei stride;
4197 struct glColorFragmentOp1ATI_params
4199 TEB *teb;
4200 GLenum op;
4201 GLuint dst;
4202 GLuint dstMask;
4203 GLuint dstMod;
4204 GLuint arg1;
4205 GLuint arg1Rep;
4206 GLuint arg1Mod;
4209 struct glColorFragmentOp2ATI_params
4211 TEB *teb;
4212 GLenum op;
4213 GLuint dst;
4214 GLuint dstMask;
4215 GLuint dstMod;
4216 GLuint arg1;
4217 GLuint arg1Rep;
4218 GLuint arg1Mod;
4219 GLuint arg2;
4220 GLuint arg2Rep;
4221 GLuint arg2Mod;
4224 struct glColorFragmentOp3ATI_params
4226 TEB *teb;
4227 GLenum op;
4228 GLuint dst;
4229 GLuint dstMask;
4230 GLuint dstMod;
4231 GLuint arg1;
4232 GLuint arg1Rep;
4233 GLuint arg1Mod;
4234 GLuint arg2;
4235 GLuint arg2Rep;
4236 GLuint arg2Mod;
4237 GLuint arg3;
4238 GLuint arg3Rep;
4239 GLuint arg3Mod;
4242 struct glColorMaskIndexedEXT_params
4244 TEB *teb;
4245 GLuint index;
4246 GLboolean r;
4247 GLboolean g;
4248 GLboolean b;
4249 GLboolean a;
4252 struct glColorMaski_params
4254 TEB *teb;
4255 GLuint index;
4256 GLboolean r;
4257 GLboolean g;
4258 GLboolean b;
4259 GLboolean a;
4262 struct glColorP3ui_params
4264 TEB *teb;
4265 GLenum type;
4266 GLuint color;
4269 struct glColorP3uiv_params
4271 TEB *teb;
4272 GLenum type;
4273 const GLuint *color;
4276 struct glColorP4ui_params
4278 TEB *teb;
4279 GLenum type;
4280 GLuint color;
4283 struct glColorP4uiv_params
4285 TEB *teb;
4286 GLenum type;
4287 const GLuint *color;
4290 struct glColorPointerEXT_params
4292 TEB *teb;
4293 GLint size;
4294 GLenum type;
4295 GLsizei stride;
4296 GLsizei count;
4297 const void *pointer;
4300 struct glColorPointerListIBM_params
4302 TEB *teb;
4303 GLint size;
4304 GLenum type;
4305 GLint stride;
4306 const void **pointer;
4307 GLint ptrstride;
4310 struct glColorPointervINTEL_params
4312 TEB *teb;
4313 GLint size;
4314 GLenum type;
4315 const void **pointer;
4318 struct glColorSubTable_params
4320 TEB *teb;
4321 GLenum target;
4322 GLsizei start;
4323 GLsizei count;
4324 GLenum format;
4325 GLenum type;
4326 const void *data;
4329 struct glColorSubTableEXT_params
4331 TEB *teb;
4332 GLenum target;
4333 GLsizei start;
4334 GLsizei count;
4335 GLenum format;
4336 GLenum type;
4337 const void *data;
4340 struct glColorTable_params
4342 TEB *teb;
4343 GLenum target;
4344 GLenum internalformat;
4345 GLsizei width;
4346 GLenum format;
4347 GLenum type;
4348 const void *table;
4351 struct glColorTableEXT_params
4353 TEB *teb;
4354 GLenum target;
4355 GLenum internalFormat;
4356 GLsizei width;
4357 GLenum format;
4358 GLenum type;
4359 const void *table;
4362 struct glColorTableParameterfv_params
4364 TEB *teb;
4365 GLenum target;
4366 GLenum pname;
4367 const GLfloat *params;
4370 struct glColorTableParameterfvSGI_params
4372 TEB *teb;
4373 GLenum target;
4374 GLenum pname;
4375 const GLfloat *params;
4378 struct glColorTableParameteriv_params
4380 TEB *teb;
4381 GLenum target;
4382 GLenum pname;
4383 const GLint *params;
4386 struct glColorTableParameterivSGI_params
4388 TEB *teb;
4389 GLenum target;
4390 GLenum pname;
4391 const GLint *params;
4394 struct glColorTableSGI_params
4396 TEB *teb;
4397 GLenum target;
4398 GLenum internalformat;
4399 GLsizei width;
4400 GLenum format;
4401 GLenum type;
4402 const void *table;
4405 struct glCombinerInputNV_params
4407 TEB *teb;
4408 GLenum stage;
4409 GLenum portion;
4410 GLenum variable;
4411 GLenum input;
4412 GLenum mapping;
4413 GLenum componentUsage;
4416 struct glCombinerOutputNV_params
4418 TEB *teb;
4419 GLenum stage;
4420 GLenum portion;
4421 GLenum abOutput;
4422 GLenum cdOutput;
4423 GLenum sumOutput;
4424 GLenum scale;
4425 GLenum bias;
4426 GLboolean abDotProduct;
4427 GLboolean cdDotProduct;
4428 GLboolean muxSum;
4431 struct glCombinerParameterfNV_params
4433 TEB *teb;
4434 GLenum pname;
4435 GLfloat param;
4438 struct glCombinerParameterfvNV_params
4440 TEB *teb;
4441 GLenum pname;
4442 const GLfloat *params;
4445 struct glCombinerParameteriNV_params
4447 TEB *teb;
4448 GLenum pname;
4449 GLint param;
4452 struct glCombinerParameterivNV_params
4454 TEB *teb;
4455 GLenum pname;
4456 const GLint *params;
4459 struct glCombinerStageParameterfvNV_params
4461 TEB *teb;
4462 GLenum stage;
4463 GLenum pname;
4464 const GLfloat *params;
4467 struct glCommandListSegmentsNV_params
4469 TEB *teb;
4470 GLuint list;
4471 GLuint segments;
4474 struct glCompileCommandListNV_params
4476 TEB *teb;
4477 GLuint list;
4480 struct glCompileShader_params
4482 TEB *teb;
4483 GLuint shader;
4486 struct glCompileShaderARB_params
4488 TEB *teb;
4489 GLhandleARB shaderObj;
4492 struct glCompileShaderIncludeARB_params
4494 TEB *teb;
4495 GLuint shader;
4496 GLsizei count;
4497 const GLchar *const*path;
4498 const GLint *length;
4501 struct glCompressedMultiTexImage1DEXT_params
4503 TEB *teb;
4504 GLenum texunit;
4505 GLenum target;
4506 GLint level;
4507 GLenum internalformat;
4508 GLsizei width;
4509 GLint border;
4510 GLsizei imageSize;
4511 const void *bits;
4514 struct glCompressedMultiTexImage2DEXT_params
4516 TEB *teb;
4517 GLenum texunit;
4518 GLenum target;
4519 GLint level;
4520 GLenum internalformat;
4521 GLsizei width;
4522 GLsizei height;
4523 GLint border;
4524 GLsizei imageSize;
4525 const void *bits;
4528 struct glCompressedMultiTexImage3DEXT_params
4530 TEB *teb;
4531 GLenum texunit;
4532 GLenum target;
4533 GLint level;
4534 GLenum internalformat;
4535 GLsizei width;
4536 GLsizei height;
4537 GLsizei depth;
4538 GLint border;
4539 GLsizei imageSize;
4540 const void *bits;
4543 struct glCompressedMultiTexSubImage1DEXT_params
4545 TEB *teb;
4546 GLenum texunit;
4547 GLenum target;
4548 GLint level;
4549 GLint xoffset;
4550 GLsizei width;
4551 GLenum format;
4552 GLsizei imageSize;
4553 const void *bits;
4556 struct glCompressedMultiTexSubImage2DEXT_params
4558 TEB *teb;
4559 GLenum texunit;
4560 GLenum target;
4561 GLint level;
4562 GLint xoffset;
4563 GLint yoffset;
4564 GLsizei width;
4565 GLsizei height;
4566 GLenum format;
4567 GLsizei imageSize;
4568 const void *bits;
4571 struct glCompressedMultiTexSubImage3DEXT_params
4573 TEB *teb;
4574 GLenum texunit;
4575 GLenum target;
4576 GLint level;
4577 GLint xoffset;
4578 GLint yoffset;
4579 GLint zoffset;
4580 GLsizei width;
4581 GLsizei height;
4582 GLsizei depth;
4583 GLenum format;
4584 GLsizei imageSize;
4585 const void *bits;
4588 struct glCompressedTexImage1D_params
4590 TEB *teb;
4591 GLenum target;
4592 GLint level;
4593 GLenum internalformat;
4594 GLsizei width;
4595 GLint border;
4596 GLsizei imageSize;
4597 const void *data;
4600 struct glCompressedTexImage1DARB_params
4602 TEB *teb;
4603 GLenum target;
4604 GLint level;
4605 GLenum internalformat;
4606 GLsizei width;
4607 GLint border;
4608 GLsizei imageSize;
4609 const void *data;
4612 struct glCompressedTexImage2D_params
4614 TEB *teb;
4615 GLenum target;
4616 GLint level;
4617 GLenum internalformat;
4618 GLsizei width;
4619 GLsizei height;
4620 GLint border;
4621 GLsizei imageSize;
4622 const void *data;
4625 struct glCompressedTexImage2DARB_params
4627 TEB *teb;
4628 GLenum target;
4629 GLint level;
4630 GLenum internalformat;
4631 GLsizei width;
4632 GLsizei height;
4633 GLint border;
4634 GLsizei imageSize;
4635 const void *data;
4638 struct glCompressedTexImage3D_params
4640 TEB *teb;
4641 GLenum target;
4642 GLint level;
4643 GLenum internalformat;
4644 GLsizei width;
4645 GLsizei height;
4646 GLsizei depth;
4647 GLint border;
4648 GLsizei imageSize;
4649 const void *data;
4652 struct glCompressedTexImage3DARB_params
4654 TEB *teb;
4655 GLenum target;
4656 GLint level;
4657 GLenum internalformat;
4658 GLsizei width;
4659 GLsizei height;
4660 GLsizei depth;
4661 GLint border;
4662 GLsizei imageSize;
4663 const void *data;
4666 struct glCompressedTexSubImage1D_params
4668 TEB *teb;
4669 GLenum target;
4670 GLint level;
4671 GLint xoffset;
4672 GLsizei width;
4673 GLenum format;
4674 GLsizei imageSize;
4675 const void *data;
4678 struct glCompressedTexSubImage1DARB_params
4680 TEB *teb;
4681 GLenum target;
4682 GLint level;
4683 GLint xoffset;
4684 GLsizei width;
4685 GLenum format;
4686 GLsizei imageSize;
4687 const void *data;
4690 struct glCompressedTexSubImage2D_params
4692 TEB *teb;
4693 GLenum target;
4694 GLint level;
4695 GLint xoffset;
4696 GLint yoffset;
4697 GLsizei width;
4698 GLsizei height;
4699 GLenum format;
4700 GLsizei imageSize;
4701 const void *data;
4704 struct glCompressedTexSubImage2DARB_params
4706 TEB *teb;
4707 GLenum target;
4708 GLint level;
4709 GLint xoffset;
4710 GLint yoffset;
4711 GLsizei width;
4712 GLsizei height;
4713 GLenum format;
4714 GLsizei imageSize;
4715 const void *data;
4718 struct glCompressedTexSubImage3D_params
4720 TEB *teb;
4721 GLenum target;
4722 GLint level;
4723 GLint xoffset;
4724 GLint yoffset;
4725 GLint zoffset;
4726 GLsizei width;
4727 GLsizei height;
4728 GLsizei depth;
4729 GLenum format;
4730 GLsizei imageSize;
4731 const void *data;
4734 struct glCompressedTexSubImage3DARB_params
4736 TEB *teb;
4737 GLenum target;
4738 GLint level;
4739 GLint xoffset;
4740 GLint yoffset;
4741 GLint zoffset;
4742 GLsizei width;
4743 GLsizei height;
4744 GLsizei depth;
4745 GLenum format;
4746 GLsizei imageSize;
4747 const void *data;
4750 struct glCompressedTextureImage1DEXT_params
4752 TEB *teb;
4753 GLuint texture;
4754 GLenum target;
4755 GLint level;
4756 GLenum internalformat;
4757 GLsizei width;
4758 GLint border;
4759 GLsizei imageSize;
4760 const void *bits;
4763 struct glCompressedTextureImage2DEXT_params
4765 TEB *teb;
4766 GLuint texture;
4767 GLenum target;
4768 GLint level;
4769 GLenum internalformat;
4770 GLsizei width;
4771 GLsizei height;
4772 GLint border;
4773 GLsizei imageSize;
4774 const void *bits;
4777 struct glCompressedTextureImage3DEXT_params
4779 TEB *teb;
4780 GLuint texture;
4781 GLenum target;
4782 GLint level;
4783 GLenum internalformat;
4784 GLsizei width;
4785 GLsizei height;
4786 GLsizei depth;
4787 GLint border;
4788 GLsizei imageSize;
4789 const void *bits;
4792 struct glCompressedTextureSubImage1D_params
4794 TEB *teb;
4795 GLuint texture;
4796 GLint level;
4797 GLint xoffset;
4798 GLsizei width;
4799 GLenum format;
4800 GLsizei imageSize;
4801 const void *data;
4804 struct glCompressedTextureSubImage1DEXT_params
4806 TEB *teb;
4807 GLuint texture;
4808 GLenum target;
4809 GLint level;
4810 GLint xoffset;
4811 GLsizei width;
4812 GLenum format;
4813 GLsizei imageSize;
4814 const void *bits;
4817 struct glCompressedTextureSubImage2D_params
4819 TEB *teb;
4820 GLuint texture;
4821 GLint level;
4822 GLint xoffset;
4823 GLint yoffset;
4824 GLsizei width;
4825 GLsizei height;
4826 GLenum format;
4827 GLsizei imageSize;
4828 const void *data;
4831 struct glCompressedTextureSubImage2DEXT_params
4833 TEB *teb;
4834 GLuint texture;
4835 GLenum target;
4836 GLint level;
4837 GLint xoffset;
4838 GLint yoffset;
4839 GLsizei width;
4840 GLsizei height;
4841 GLenum format;
4842 GLsizei imageSize;
4843 const void *bits;
4846 struct glCompressedTextureSubImage3D_params
4848 TEB *teb;
4849 GLuint texture;
4850 GLint level;
4851 GLint xoffset;
4852 GLint yoffset;
4853 GLint zoffset;
4854 GLsizei width;
4855 GLsizei height;
4856 GLsizei depth;
4857 GLenum format;
4858 GLsizei imageSize;
4859 const void *data;
4862 struct glCompressedTextureSubImage3DEXT_params
4864 TEB *teb;
4865 GLuint texture;
4866 GLenum target;
4867 GLint level;
4868 GLint xoffset;
4869 GLint yoffset;
4870 GLint zoffset;
4871 GLsizei width;
4872 GLsizei height;
4873 GLsizei depth;
4874 GLenum format;
4875 GLsizei imageSize;
4876 const void *bits;
4879 struct glConservativeRasterParameterfNV_params
4881 TEB *teb;
4882 GLenum pname;
4883 GLfloat value;
4886 struct glConservativeRasterParameteriNV_params
4888 TEB *teb;
4889 GLenum pname;
4890 GLint param;
4893 struct glConvolutionFilter1D_params
4895 TEB *teb;
4896 GLenum target;
4897 GLenum internalformat;
4898 GLsizei width;
4899 GLenum format;
4900 GLenum type;
4901 const void *image;
4904 struct glConvolutionFilter1DEXT_params
4906 TEB *teb;
4907 GLenum target;
4908 GLenum internalformat;
4909 GLsizei width;
4910 GLenum format;
4911 GLenum type;
4912 const void *image;
4915 struct glConvolutionFilter2D_params
4917 TEB *teb;
4918 GLenum target;
4919 GLenum internalformat;
4920 GLsizei width;
4921 GLsizei height;
4922 GLenum format;
4923 GLenum type;
4924 const void *image;
4927 struct glConvolutionFilter2DEXT_params
4929 TEB *teb;
4930 GLenum target;
4931 GLenum internalformat;
4932 GLsizei width;
4933 GLsizei height;
4934 GLenum format;
4935 GLenum type;
4936 const void *image;
4939 struct glConvolutionParameterf_params
4941 TEB *teb;
4942 GLenum target;
4943 GLenum pname;
4944 GLfloat params;
4947 struct glConvolutionParameterfEXT_params
4949 TEB *teb;
4950 GLenum target;
4951 GLenum pname;
4952 GLfloat params;
4955 struct glConvolutionParameterfv_params
4957 TEB *teb;
4958 GLenum target;
4959 GLenum pname;
4960 const GLfloat *params;
4963 struct glConvolutionParameterfvEXT_params
4965 TEB *teb;
4966 GLenum target;
4967 GLenum pname;
4968 const GLfloat *params;
4971 struct glConvolutionParameteri_params
4973 TEB *teb;
4974 GLenum target;
4975 GLenum pname;
4976 GLint params;
4979 struct glConvolutionParameteriEXT_params
4981 TEB *teb;
4982 GLenum target;
4983 GLenum pname;
4984 GLint params;
4987 struct glConvolutionParameteriv_params
4989 TEB *teb;
4990 GLenum target;
4991 GLenum pname;
4992 const GLint *params;
4995 struct glConvolutionParameterivEXT_params
4997 TEB *teb;
4998 GLenum target;
4999 GLenum pname;
5000 const GLint *params;
5003 struct glConvolutionParameterxOES_params
5005 TEB *teb;
5006 GLenum target;
5007 GLenum pname;
5008 GLfixed param;
5011 struct glConvolutionParameterxvOES_params
5013 TEB *teb;
5014 GLenum target;
5015 GLenum pname;
5016 const GLfixed *params;
5019 struct glCopyBufferSubData_params
5021 TEB *teb;
5022 GLenum readTarget;
5023 GLenum writeTarget;
5024 GLintptr readOffset;
5025 GLintptr writeOffset;
5026 GLsizeiptr size;
5029 struct glCopyColorSubTable_params
5031 TEB *teb;
5032 GLenum target;
5033 GLsizei start;
5034 GLint x;
5035 GLint y;
5036 GLsizei width;
5039 struct glCopyColorSubTableEXT_params
5041 TEB *teb;
5042 GLenum target;
5043 GLsizei start;
5044 GLint x;
5045 GLint y;
5046 GLsizei width;
5049 struct glCopyColorTable_params
5051 TEB *teb;
5052 GLenum target;
5053 GLenum internalformat;
5054 GLint x;
5055 GLint y;
5056 GLsizei width;
5059 struct glCopyColorTableSGI_params
5061 TEB *teb;
5062 GLenum target;
5063 GLenum internalformat;
5064 GLint x;
5065 GLint y;
5066 GLsizei width;
5069 struct glCopyConvolutionFilter1D_params
5071 TEB *teb;
5072 GLenum target;
5073 GLenum internalformat;
5074 GLint x;
5075 GLint y;
5076 GLsizei width;
5079 struct glCopyConvolutionFilter1DEXT_params
5081 TEB *teb;
5082 GLenum target;
5083 GLenum internalformat;
5084 GLint x;
5085 GLint y;
5086 GLsizei width;
5089 struct glCopyConvolutionFilter2D_params
5091 TEB *teb;
5092 GLenum target;
5093 GLenum internalformat;
5094 GLint x;
5095 GLint y;
5096 GLsizei width;
5097 GLsizei height;
5100 struct glCopyConvolutionFilter2DEXT_params
5102 TEB *teb;
5103 GLenum target;
5104 GLenum internalformat;
5105 GLint x;
5106 GLint y;
5107 GLsizei width;
5108 GLsizei height;
5111 struct glCopyImageSubData_params
5113 TEB *teb;
5114 GLuint srcName;
5115 GLenum srcTarget;
5116 GLint srcLevel;
5117 GLint srcX;
5118 GLint srcY;
5119 GLint srcZ;
5120 GLuint dstName;
5121 GLenum dstTarget;
5122 GLint dstLevel;
5123 GLint dstX;
5124 GLint dstY;
5125 GLint dstZ;
5126 GLsizei srcWidth;
5127 GLsizei srcHeight;
5128 GLsizei srcDepth;
5131 struct glCopyImageSubDataNV_params
5133 TEB *teb;
5134 GLuint srcName;
5135 GLenum srcTarget;
5136 GLint srcLevel;
5137 GLint srcX;
5138 GLint srcY;
5139 GLint srcZ;
5140 GLuint dstName;
5141 GLenum dstTarget;
5142 GLint dstLevel;
5143 GLint dstX;
5144 GLint dstY;
5145 GLint dstZ;
5146 GLsizei width;
5147 GLsizei height;
5148 GLsizei depth;
5151 struct glCopyMultiTexImage1DEXT_params
5153 TEB *teb;
5154 GLenum texunit;
5155 GLenum target;
5156 GLint level;
5157 GLenum internalformat;
5158 GLint x;
5159 GLint y;
5160 GLsizei width;
5161 GLint border;
5164 struct glCopyMultiTexImage2DEXT_params
5166 TEB *teb;
5167 GLenum texunit;
5168 GLenum target;
5169 GLint level;
5170 GLenum internalformat;
5171 GLint x;
5172 GLint y;
5173 GLsizei width;
5174 GLsizei height;
5175 GLint border;
5178 struct glCopyMultiTexSubImage1DEXT_params
5180 TEB *teb;
5181 GLenum texunit;
5182 GLenum target;
5183 GLint level;
5184 GLint xoffset;
5185 GLint x;
5186 GLint y;
5187 GLsizei width;
5190 struct glCopyMultiTexSubImage2DEXT_params
5192 TEB *teb;
5193 GLenum texunit;
5194 GLenum target;
5195 GLint level;
5196 GLint xoffset;
5197 GLint yoffset;
5198 GLint x;
5199 GLint y;
5200 GLsizei width;
5201 GLsizei height;
5204 struct glCopyMultiTexSubImage3DEXT_params
5206 TEB *teb;
5207 GLenum texunit;
5208 GLenum target;
5209 GLint level;
5210 GLint xoffset;
5211 GLint yoffset;
5212 GLint zoffset;
5213 GLint x;
5214 GLint y;
5215 GLsizei width;
5216 GLsizei height;
5219 struct glCopyNamedBufferSubData_params
5221 TEB *teb;
5222 GLuint readBuffer;
5223 GLuint writeBuffer;
5224 GLintptr readOffset;
5225 GLintptr writeOffset;
5226 GLsizeiptr size;
5229 struct glCopyPathNV_params
5231 TEB *teb;
5232 GLuint resultPath;
5233 GLuint srcPath;
5236 struct glCopyTexImage1DEXT_params
5238 TEB *teb;
5239 GLenum target;
5240 GLint level;
5241 GLenum internalformat;
5242 GLint x;
5243 GLint y;
5244 GLsizei width;
5245 GLint border;
5248 struct glCopyTexImage2DEXT_params
5250 TEB *teb;
5251 GLenum target;
5252 GLint level;
5253 GLenum internalformat;
5254 GLint x;
5255 GLint y;
5256 GLsizei width;
5257 GLsizei height;
5258 GLint border;
5261 struct glCopyTexSubImage1DEXT_params
5263 TEB *teb;
5264 GLenum target;
5265 GLint level;
5266 GLint xoffset;
5267 GLint x;
5268 GLint y;
5269 GLsizei width;
5272 struct glCopyTexSubImage2DEXT_params
5274 TEB *teb;
5275 GLenum target;
5276 GLint level;
5277 GLint xoffset;
5278 GLint yoffset;
5279 GLint x;
5280 GLint y;
5281 GLsizei width;
5282 GLsizei height;
5285 struct glCopyTexSubImage3D_params
5287 TEB *teb;
5288 GLenum target;
5289 GLint level;
5290 GLint xoffset;
5291 GLint yoffset;
5292 GLint zoffset;
5293 GLint x;
5294 GLint y;
5295 GLsizei width;
5296 GLsizei height;
5299 struct glCopyTexSubImage3DEXT_params
5301 TEB *teb;
5302 GLenum target;
5303 GLint level;
5304 GLint xoffset;
5305 GLint yoffset;
5306 GLint zoffset;
5307 GLint x;
5308 GLint y;
5309 GLsizei width;
5310 GLsizei height;
5313 struct glCopyTextureImage1DEXT_params
5315 TEB *teb;
5316 GLuint texture;
5317 GLenum target;
5318 GLint level;
5319 GLenum internalformat;
5320 GLint x;
5321 GLint y;
5322 GLsizei width;
5323 GLint border;
5326 struct glCopyTextureImage2DEXT_params
5328 TEB *teb;
5329 GLuint texture;
5330 GLenum target;
5331 GLint level;
5332 GLenum internalformat;
5333 GLint x;
5334 GLint y;
5335 GLsizei width;
5336 GLsizei height;
5337 GLint border;
5340 struct glCopyTextureSubImage1D_params
5342 TEB *teb;
5343 GLuint texture;
5344 GLint level;
5345 GLint xoffset;
5346 GLint x;
5347 GLint y;
5348 GLsizei width;
5351 struct glCopyTextureSubImage1DEXT_params
5353 TEB *teb;
5354 GLuint texture;
5355 GLenum target;
5356 GLint level;
5357 GLint xoffset;
5358 GLint x;
5359 GLint y;
5360 GLsizei width;
5363 struct glCopyTextureSubImage2D_params
5365 TEB *teb;
5366 GLuint texture;
5367 GLint level;
5368 GLint xoffset;
5369 GLint yoffset;
5370 GLint x;
5371 GLint y;
5372 GLsizei width;
5373 GLsizei height;
5376 struct glCopyTextureSubImage2DEXT_params
5378 TEB *teb;
5379 GLuint texture;
5380 GLenum target;
5381 GLint level;
5382 GLint xoffset;
5383 GLint yoffset;
5384 GLint x;
5385 GLint y;
5386 GLsizei width;
5387 GLsizei height;
5390 struct glCopyTextureSubImage3D_params
5392 TEB *teb;
5393 GLuint texture;
5394 GLint level;
5395 GLint xoffset;
5396 GLint yoffset;
5397 GLint zoffset;
5398 GLint x;
5399 GLint y;
5400 GLsizei width;
5401 GLsizei height;
5404 struct glCopyTextureSubImage3DEXT_params
5406 TEB *teb;
5407 GLuint texture;
5408 GLenum target;
5409 GLint level;
5410 GLint xoffset;
5411 GLint yoffset;
5412 GLint zoffset;
5413 GLint x;
5414 GLint y;
5415 GLsizei width;
5416 GLsizei height;
5419 struct glCoverFillPathInstancedNV_params
5421 TEB *teb;
5422 GLsizei numPaths;
5423 GLenum pathNameType;
5424 const void *paths;
5425 GLuint pathBase;
5426 GLenum coverMode;
5427 GLenum transformType;
5428 const GLfloat *transformValues;
5431 struct glCoverFillPathNV_params
5433 TEB *teb;
5434 GLuint path;
5435 GLenum coverMode;
5438 struct glCoverStrokePathInstancedNV_params
5440 TEB *teb;
5441 GLsizei numPaths;
5442 GLenum pathNameType;
5443 const void *paths;
5444 GLuint pathBase;
5445 GLenum coverMode;
5446 GLenum transformType;
5447 const GLfloat *transformValues;
5450 struct glCoverStrokePathNV_params
5452 TEB *teb;
5453 GLuint path;
5454 GLenum coverMode;
5457 struct glCoverageModulationNV_params
5459 TEB *teb;
5460 GLenum components;
5463 struct glCoverageModulationTableNV_params
5465 TEB *teb;
5466 GLsizei n;
5467 const GLfloat *v;
5470 struct glCreateBuffers_params
5472 TEB *teb;
5473 GLsizei n;
5474 GLuint *buffers;
5477 struct glCreateCommandListsNV_params
5479 TEB *teb;
5480 GLsizei n;
5481 GLuint *lists;
5484 struct glCreateFramebuffers_params
5486 TEB *teb;
5487 GLsizei n;
5488 GLuint *framebuffers;
5491 struct glCreateMemoryObjectsEXT_params
5493 TEB *teb;
5494 GLsizei n;
5495 GLuint *memoryObjects;
5498 struct glCreatePerfQueryINTEL_params
5500 TEB *teb;
5501 GLuint queryId;
5502 GLuint *queryHandle;
5505 struct glCreateProgram_params
5507 TEB *teb;
5508 GLuint ret;
5511 struct glCreateProgramObjectARB_params
5513 TEB *teb;
5514 GLhandleARB ret;
5517 struct glCreateProgramPipelines_params
5519 TEB *teb;
5520 GLsizei n;
5521 GLuint *pipelines;
5524 struct glCreateProgressFenceNVX_params
5526 TEB *teb;
5527 GLuint ret;
5530 struct glCreateQueries_params
5532 TEB *teb;
5533 GLenum target;
5534 GLsizei n;
5535 GLuint *ids;
5538 struct glCreateRenderbuffers_params
5540 TEB *teb;
5541 GLsizei n;
5542 GLuint *renderbuffers;
5545 struct glCreateSamplers_params
5547 TEB *teb;
5548 GLsizei n;
5549 GLuint *samplers;
5552 struct glCreateShader_params
5554 TEB *teb;
5555 GLenum type;
5556 GLuint ret;
5559 struct glCreateShaderObjectARB_params
5561 TEB *teb;
5562 GLenum shaderType;
5563 GLhandleARB ret;
5566 struct glCreateShaderProgramEXT_params
5568 TEB *teb;
5569 GLenum type;
5570 const GLchar *string;
5571 GLuint ret;
5574 struct glCreateShaderProgramv_params
5576 TEB *teb;
5577 GLenum type;
5578 GLsizei count;
5579 const GLchar *const*strings;
5580 GLuint ret;
5583 struct glCreateStatesNV_params
5585 TEB *teb;
5586 GLsizei n;
5587 GLuint *states;
5590 struct glCreateSyncFromCLeventARB_params
5592 TEB *teb;
5593 struct _cl_context *context;
5594 struct _cl_event *event;
5595 GLbitfield flags;
5596 GLsync ret;
5599 struct glCreateTextures_params
5601 TEB *teb;
5602 GLenum target;
5603 GLsizei n;
5604 GLuint *textures;
5607 struct glCreateTransformFeedbacks_params
5609 TEB *teb;
5610 GLsizei n;
5611 GLuint *ids;
5614 struct glCreateVertexArrays_params
5616 TEB *teb;
5617 GLsizei n;
5618 GLuint *arrays;
5621 struct glCullParameterdvEXT_params
5623 TEB *teb;
5624 GLenum pname;
5625 GLdouble *params;
5628 struct glCullParameterfvEXT_params
5630 TEB *teb;
5631 GLenum pname;
5632 GLfloat *params;
5635 struct glCurrentPaletteMatrixARB_params
5637 TEB *teb;
5638 GLint index;
5641 struct glDebugMessageCallback_params
5643 TEB *teb;
5644 GLDEBUGPROC callback;
5645 const void *userParam;
5648 struct glDebugMessageCallbackAMD_params
5650 TEB *teb;
5651 GLDEBUGPROCAMD callback;
5652 void *userParam;
5655 struct glDebugMessageCallbackARB_params
5657 TEB *teb;
5658 GLDEBUGPROCARB callback;
5659 const void *userParam;
5662 struct glDebugMessageControl_params
5664 TEB *teb;
5665 GLenum source;
5666 GLenum type;
5667 GLenum severity;
5668 GLsizei count;
5669 const GLuint *ids;
5670 GLboolean enabled;
5673 struct glDebugMessageControlARB_params
5675 TEB *teb;
5676 GLenum source;
5677 GLenum type;
5678 GLenum severity;
5679 GLsizei count;
5680 const GLuint *ids;
5681 GLboolean enabled;
5684 struct glDebugMessageEnableAMD_params
5686 TEB *teb;
5687 GLenum category;
5688 GLenum severity;
5689 GLsizei count;
5690 const GLuint *ids;
5691 GLboolean enabled;
5694 struct glDebugMessageInsert_params
5696 TEB *teb;
5697 GLenum source;
5698 GLenum type;
5699 GLuint id;
5700 GLenum severity;
5701 GLsizei length;
5702 const GLchar *buf;
5705 struct glDebugMessageInsertAMD_params
5707 TEB *teb;
5708 GLenum category;
5709 GLenum severity;
5710 GLuint id;
5711 GLsizei length;
5712 const GLchar *buf;
5715 struct glDebugMessageInsertARB_params
5717 TEB *teb;
5718 GLenum source;
5719 GLenum type;
5720 GLuint id;
5721 GLenum severity;
5722 GLsizei length;
5723 const GLchar *buf;
5726 struct glDeformSGIX_params
5728 TEB *teb;
5729 GLbitfield mask;
5732 struct glDeformationMap3dSGIX_params
5734 TEB *teb;
5735 GLenum target;
5736 GLdouble u1;
5737 GLdouble u2;
5738 GLint ustride;
5739 GLint uorder;
5740 GLdouble v1;
5741 GLdouble v2;
5742 GLint vstride;
5743 GLint vorder;
5744 GLdouble w1;
5745 GLdouble w2;
5746 GLint wstride;
5747 GLint worder;
5748 const GLdouble *points;
5751 struct glDeformationMap3fSGIX_params
5753 TEB *teb;
5754 GLenum target;
5755 GLfloat u1;
5756 GLfloat u2;
5757 GLint ustride;
5758 GLint uorder;
5759 GLfloat v1;
5760 GLfloat v2;
5761 GLint vstride;
5762 GLint vorder;
5763 GLfloat w1;
5764 GLfloat w2;
5765 GLint wstride;
5766 GLint worder;
5767 const GLfloat *points;
5770 struct glDeleteAsyncMarkersSGIX_params
5772 TEB *teb;
5773 GLuint marker;
5774 GLsizei range;
5777 struct glDeleteBufferRegion_params
5779 TEB *teb;
5780 GLenum region;
5783 struct glDeleteBuffers_params
5785 TEB *teb;
5786 GLsizei n;
5787 const GLuint *buffers;
5790 struct glDeleteBuffersARB_params
5792 TEB *teb;
5793 GLsizei n;
5794 const GLuint *buffers;
5797 struct glDeleteCommandListsNV_params
5799 TEB *teb;
5800 GLsizei n;
5801 const GLuint *lists;
5804 struct glDeleteFencesAPPLE_params
5806 TEB *teb;
5807 GLsizei n;
5808 const GLuint *fences;
5811 struct glDeleteFencesNV_params
5813 TEB *teb;
5814 GLsizei n;
5815 const GLuint *fences;
5818 struct glDeleteFragmentShaderATI_params
5820 TEB *teb;
5821 GLuint id;
5824 struct glDeleteFramebuffers_params
5826 TEB *teb;
5827 GLsizei n;
5828 const GLuint *framebuffers;
5831 struct glDeleteFramebuffersEXT_params
5833 TEB *teb;
5834 GLsizei n;
5835 const GLuint *framebuffers;
5838 struct glDeleteMemoryObjectsEXT_params
5840 TEB *teb;
5841 GLsizei n;
5842 const GLuint *memoryObjects;
5845 struct glDeleteNamedStringARB_params
5847 TEB *teb;
5848 GLint namelen;
5849 const GLchar *name;
5852 struct glDeleteNamesAMD_params
5854 TEB *teb;
5855 GLenum identifier;
5856 GLuint num;
5857 const GLuint *names;
5860 struct glDeleteObjectARB_params
5862 TEB *teb;
5863 GLhandleARB obj;
5866 struct glDeleteObjectBufferATI_params
5868 TEB *teb;
5869 GLuint buffer;
5872 struct glDeleteOcclusionQueriesNV_params
5874 TEB *teb;
5875 GLsizei n;
5876 const GLuint *ids;
5879 struct glDeletePathsNV_params
5881 TEB *teb;
5882 GLuint path;
5883 GLsizei range;
5886 struct glDeletePerfMonitorsAMD_params
5888 TEB *teb;
5889 GLsizei n;
5890 GLuint *monitors;
5893 struct glDeletePerfQueryINTEL_params
5895 TEB *teb;
5896 GLuint queryHandle;
5899 struct glDeleteProgram_params
5901 TEB *teb;
5902 GLuint program;
5905 struct glDeleteProgramPipelines_params
5907 TEB *teb;
5908 GLsizei n;
5909 const GLuint *pipelines;
5912 struct glDeleteProgramsARB_params
5914 TEB *teb;
5915 GLsizei n;
5916 const GLuint *programs;
5919 struct glDeleteProgramsNV_params
5921 TEB *teb;
5922 GLsizei n;
5923 const GLuint *programs;
5926 struct glDeleteQueries_params
5928 TEB *teb;
5929 GLsizei n;
5930 const GLuint *ids;
5933 struct glDeleteQueriesARB_params
5935 TEB *teb;
5936 GLsizei n;
5937 const GLuint *ids;
5940 struct glDeleteQueryResourceTagNV_params
5942 TEB *teb;
5943 GLsizei n;
5944 const GLint *tagIds;
5947 struct glDeleteRenderbuffers_params
5949 TEB *teb;
5950 GLsizei n;
5951 const GLuint *renderbuffers;
5954 struct glDeleteRenderbuffersEXT_params
5956 TEB *teb;
5957 GLsizei n;
5958 const GLuint *renderbuffers;
5961 struct glDeleteSamplers_params
5963 TEB *teb;
5964 GLsizei count;
5965 const GLuint *samplers;
5968 struct glDeleteSemaphoresEXT_params
5970 TEB *teb;
5971 GLsizei n;
5972 const GLuint *semaphores;
5975 struct glDeleteShader_params
5977 TEB *teb;
5978 GLuint shader;
5981 struct glDeleteStatesNV_params
5983 TEB *teb;
5984 GLsizei n;
5985 const GLuint *states;
5988 struct glDeleteSync_params
5990 TEB *teb;
5991 GLsync sync;
5994 struct glDeleteTexturesEXT_params
5996 TEB *teb;
5997 GLsizei n;
5998 const GLuint *textures;
6001 struct glDeleteTransformFeedbacks_params
6003 TEB *teb;
6004 GLsizei n;
6005 const GLuint *ids;
6008 struct glDeleteTransformFeedbacksNV_params
6010 TEB *teb;
6011 GLsizei n;
6012 const GLuint *ids;
6015 struct glDeleteVertexArrays_params
6017 TEB *teb;
6018 GLsizei n;
6019 const GLuint *arrays;
6022 struct glDeleteVertexArraysAPPLE_params
6024 TEB *teb;
6025 GLsizei n;
6026 const GLuint *arrays;
6029 struct glDeleteVertexShaderEXT_params
6031 TEB *teb;
6032 GLuint id;
6035 struct glDepthBoundsEXT_params
6037 TEB *teb;
6038 GLclampd zmin;
6039 GLclampd zmax;
6042 struct glDepthBoundsdNV_params
6044 TEB *teb;
6045 GLdouble zmin;
6046 GLdouble zmax;
6049 struct glDepthRangeArraydvNV_params
6051 TEB *teb;
6052 GLuint first;
6053 GLsizei count;
6054 const GLdouble *v;
6057 struct glDepthRangeArrayv_params
6059 TEB *teb;
6060 GLuint first;
6061 GLsizei count;
6062 const GLdouble *v;
6065 struct glDepthRangeIndexed_params
6067 TEB *teb;
6068 GLuint index;
6069 GLdouble n;
6070 GLdouble f;
6073 struct glDepthRangeIndexeddNV_params
6075 TEB *teb;
6076 GLuint index;
6077 GLdouble n;
6078 GLdouble f;
6081 struct glDepthRangedNV_params
6083 TEB *teb;
6084 GLdouble zNear;
6085 GLdouble zFar;
6088 struct glDepthRangef_params
6090 TEB *teb;
6091 GLfloat n;
6092 GLfloat f;
6095 struct glDepthRangefOES_params
6097 TEB *teb;
6098 GLclampf n;
6099 GLclampf f;
6102 struct glDepthRangexOES_params
6104 TEB *teb;
6105 GLfixed n;
6106 GLfixed f;
6109 struct glDetachObjectARB_params
6111 TEB *teb;
6112 GLhandleARB containerObj;
6113 GLhandleARB attachedObj;
6116 struct glDetachShader_params
6118 TEB *teb;
6119 GLuint program;
6120 GLuint shader;
6123 struct glDetailTexFuncSGIS_params
6125 TEB *teb;
6126 GLenum target;
6127 GLsizei n;
6128 const GLfloat *points;
6131 struct glDisableClientStateIndexedEXT_params
6133 TEB *teb;
6134 GLenum array;
6135 GLuint index;
6138 struct glDisableClientStateiEXT_params
6140 TEB *teb;
6141 GLenum array;
6142 GLuint index;
6145 struct glDisableIndexedEXT_params
6147 TEB *teb;
6148 GLenum target;
6149 GLuint index;
6152 struct glDisableVariantClientStateEXT_params
6154 TEB *teb;
6155 GLuint id;
6158 struct glDisableVertexArrayAttrib_params
6160 TEB *teb;
6161 GLuint vaobj;
6162 GLuint index;
6165 struct glDisableVertexArrayAttribEXT_params
6167 TEB *teb;
6168 GLuint vaobj;
6169 GLuint index;
6172 struct glDisableVertexArrayEXT_params
6174 TEB *teb;
6175 GLuint vaobj;
6176 GLenum array;
6179 struct glDisableVertexAttribAPPLE_params
6181 TEB *teb;
6182 GLuint index;
6183 GLenum pname;
6186 struct glDisableVertexAttribArray_params
6188 TEB *teb;
6189 GLuint index;
6192 struct glDisableVertexAttribArrayARB_params
6194 TEB *teb;
6195 GLuint index;
6198 struct glDisablei_params
6200 TEB *teb;
6201 GLenum target;
6202 GLuint index;
6205 struct glDispatchCompute_params
6207 TEB *teb;
6208 GLuint num_groups_x;
6209 GLuint num_groups_y;
6210 GLuint num_groups_z;
6213 struct glDispatchComputeGroupSizeARB_params
6215 TEB *teb;
6216 GLuint num_groups_x;
6217 GLuint num_groups_y;
6218 GLuint num_groups_z;
6219 GLuint group_size_x;
6220 GLuint group_size_y;
6221 GLuint group_size_z;
6224 struct glDispatchComputeIndirect_params
6226 TEB *teb;
6227 GLintptr indirect;
6230 struct glDrawArraysEXT_params
6232 TEB *teb;
6233 GLenum mode;
6234 GLint first;
6235 GLsizei count;
6238 struct glDrawArraysIndirect_params
6240 TEB *teb;
6241 GLenum mode;
6242 const void *indirect;
6245 struct glDrawArraysInstanced_params
6247 TEB *teb;
6248 GLenum mode;
6249 GLint first;
6250 GLsizei count;
6251 GLsizei instancecount;
6254 struct glDrawArraysInstancedARB_params
6256 TEB *teb;
6257 GLenum mode;
6258 GLint first;
6259 GLsizei count;
6260 GLsizei primcount;
6263 struct glDrawArraysInstancedBaseInstance_params
6265 TEB *teb;
6266 GLenum mode;
6267 GLint first;
6268 GLsizei count;
6269 GLsizei instancecount;
6270 GLuint baseinstance;
6273 struct glDrawArraysInstancedEXT_params
6275 TEB *teb;
6276 GLenum mode;
6277 GLint start;
6278 GLsizei count;
6279 GLsizei primcount;
6282 struct glDrawBufferRegion_params
6284 TEB *teb;
6285 GLenum region;
6286 GLint x;
6287 GLint y;
6288 GLsizei width;
6289 GLsizei height;
6290 GLint xDest;
6291 GLint yDest;
6294 struct glDrawBuffers_params
6296 TEB *teb;
6297 GLsizei n;
6298 const GLenum *bufs;
6301 struct glDrawBuffersARB_params
6303 TEB *teb;
6304 GLsizei n;
6305 const GLenum *bufs;
6308 struct glDrawBuffersATI_params
6310 TEB *teb;
6311 GLsizei n;
6312 const GLenum *bufs;
6315 struct glDrawCommandsAddressNV_params
6317 TEB *teb;
6318 GLenum primitiveMode;
6319 const GLuint64 *indirects;
6320 const GLsizei *sizes;
6321 GLuint count;
6324 struct glDrawCommandsNV_params
6326 TEB *teb;
6327 GLenum primitiveMode;
6328 GLuint buffer;
6329 const GLintptr *indirects;
6330 const GLsizei *sizes;
6331 GLuint count;
6334 struct glDrawCommandsStatesAddressNV_params
6336 TEB *teb;
6337 const GLuint64 *indirects;
6338 const GLsizei *sizes;
6339 const GLuint *states;
6340 const GLuint *fbos;
6341 GLuint count;
6344 struct glDrawCommandsStatesNV_params
6346 TEB *teb;
6347 GLuint buffer;
6348 const GLintptr *indirects;
6349 const GLsizei *sizes;
6350 const GLuint *states;
6351 const GLuint *fbos;
6352 GLuint count;
6355 struct glDrawElementArrayAPPLE_params
6357 TEB *teb;
6358 GLenum mode;
6359 GLint first;
6360 GLsizei count;
6363 struct glDrawElementArrayATI_params
6365 TEB *teb;
6366 GLenum mode;
6367 GLsizei count;
6370 struct glDrawElementsBaseVertex_params
6372 TEB *teb;
6373 GLenum mode;
6374 GLsizei count;
6375 GLenum type;
6376 const void *indices;
6377 GLint basevertex;
6380 struct glDrawElementsIndirect_params
6382 TEB *teb;
6383 GLenum mode;
6384 GLenum type;
6385 const void *indirect;
6388 struct glDrawElementsInstanced_params
6390 TEB *teb;
6391 GLenum mode;
6392 GLsizei count;
6393 GLenum type;
6394 const void *indices;
6395 GLsizei instancecount;
6398 struct glDrawElementsInstancedARB_params
6400 TEB *teb;
6401 GLenum mode;
6402 GLsizei count;
6403 GLenum type;
6404 const void *indices;
6405 GLsizei primcount;
6408 struct glDrawElementsInstancedBaseInstance_params
6410 TEB *teb;
6411 GLenum mode;
6412 GLsizei count;
6413 GLenum type;
6414 const void *indices;
6415 GLsizei instancecount;
6416 GLuint baseinstance;
6419 struct glDrawElementsInstancedBaseVertex_params
6421 TEB *teb;
6422 GLenum mode;
6423 GLsizei count;
6424 GLenum type;
6425 const void *indices;
6426 GLsizei instancecount;
6427 GLint basevertex;
6430 struct glDrawElementsInstancedBaseVertexBaseInstance_params
6432 TEB *teb;
6433 GLenum mode;
6434 GLsizei count;
6435 GLenum type;
6436 const void *indices;
6437 GLsizei instancecount;
6438 GLint basevertex;
6439 GLuint baseinstance;
6442 struct glDrawElementsInstancedEXT_params
6444 TEB *teb;
6445 GLenum mode;
6446 GLsizei count;
6447 GLenum type;
6448 const void *indices;
6449 GLsizei primcount;
6452 struct glDrawMeshArraysSUN_params
6454 TEB *teb;
6455 GLenum mode;
6456 GLint first;
6457 GLsizei count;
6458 GLsizei width;
6461 struct glDrawMeshTasksIndirectNV_params
6463 TEB *teb;
6464 GLintptr indirect;
6467 struct glDrawMeshTasksNV_params
6469 TEB *teb;
6470 GLuint first;
6471 GLuint count;
6474 struct glDrawRangeElementArrayAPPLE_params
6476 TEB *teb;
6477 GLenum mode;
6478 GLuint start;
6479 GLuint end;
6480 GLint first;
6481 GLsizei count;
6484 struct glDrawRangeElementArrayATI_params
6486 TEB *teb;
6487 GLenum mode;
6488 GLuint start;
6489 GLuint end;
6490 GLsizei count;
6493 struct glDrawRangeElements_params
6495 TEB *teb;
6496 GLenum mode;
6497 GLuint start;
6498 GLuint end;
6499 GLsizei count;
6500 GLenum type;
6501 const void *indices;
6504 struct glDrawRangeElementsBaseVertex_params
6506 TEB *teb;
6507 GLenum mode;
6508 GLuint start;
6509 GLuint end;
6510 GLsizei count;
6511 GLenum type;
6512 const void *indices;
6513 GLint basevertex;
6516 struct glDrawRangeElementsEXT_params
6518 TEB *teb;
6519 GLenum mode;
6520 GLuint start;
6521 GLuint end;
6522 GLsizei count;
6523 GLenum type;
6524 const void *indices;
6527 struct glDrawTextureNV_params
6529 TEB *teb;
6530 GLuint texture;
6531 GLuint sampler;
6532 GLfloat x0;
6533 GLfloat y0;
6534 GLfloat x1;
6535 GLfloat y1;
6536 GLfloat z;
6537 GLfloat s0;
6538 GLfloat t0;
6539 GLfloat s1;
6540 GLfloat t1;
6543 struct glDrawTransformFeedback_params
6545 TEB *teb;
6546 GLenum mode;
6547 GLuint id;
6550 struct glDrawTransformFeedbackInstanced_params
6552 TEB *teb;
6553 GLenum mode;
6554 GLuint id;
6555 GLsizei instancecount;
6558 struct glDrawTransformFeedbackNV_params
6560 TEB *teb;
6561 GLenum mode;
6562 GLuint id;
6565 struct glDrawTransformFeedbackStream_params
6567 TEB *teb;
6568 GLenum mode;
6569 GLuint id;
6570 GLuint stream;
6573 struct glDrawTransformFeedbackStreamInstanced_params
6575 TEB *teb;
6576 GLenum mode;
6577 GLuint id;
6578 GLuint stream;
6579 GLsizei instancecount;
6582 struct glDrawVkImageNV_params
6584 TEB *teb;
6585 GLuint64 vkImage;
6586 GLuint sampler;
6587 GLfloat x0;
6588 GLfloat y0;
6589 GLfloat x1;
6590 GLfloat y1;
6591 GLfloat z;
6592 GLfloat s0;
6593 GLfloat t0;
6594 GLfloat s1;
6595 GLfloat t1;
6598 struct glEGLImageTargetTexStorageEXT_params
6600 TEB *teb;
6601 GLenum target;
6602 GLeglImageOES image;
6603 const GLint* attrib_list;
6606 struct glEGLImageTargetTextureStorageEXT_params
6608 TEB *teb;
6609 GLuint texture;
6610 GLeglImageOES image;
6611 const GLint* attrib_list;
6614 struct glEdgeFlagFormatNV_params
6616 TEB *teb;
6617 GLsizei stride;
6620 struct glEdgeFlagPointerEXT_params
6622 TEB *teb;
6623 GLsizei stride;
6624 GLsizei count;
6625 const GLboolean *pointer;
6628 struct glEdgeFlagPointerListIBM_params
6630 TEB *teb;
6631 GLint stride;
6632 const GLboolean **pointer;
6633 GLint ptrstride;
6636 struct glElementPointerAPPLE_params
6638 TEB *teb;
6639 GLenum type;
6640 const void *pointer;
6643 struct glElementPointerATI_params
6645 TEB *teb;
6646 GLenum type;
6647 const void *pointer;
6650 struct glEnableClientStateIndexedEXT_params
6652 TEB *teb;
6653 GLenum array;
6654 GLuint index;
6657 struct glEnableClientStateiEXT_params
6659 TEB *teb;
6660 GLenum array;
6661 GLuint index;
6664 struct glEnableIndexedEXT_params
6666 TEB *teb;
6667 GLenum target;
6668 GLuint index;
6671 struct glEnableVariantClientStateEXT_params
6673 TEB *teb;
6674 GLuint id;
6677 struct glEnableVertexArrayAttrib_params
6679 TEB *teb;
6680 GLuint vaobj;
6681 GLuint index;
6684 struct glEnableVertexArrayAttribEXT_params
6686 TEB *teb;
6687 GLuint vaobj;
6688 GLuint index;
6691 struct glEnableVertexArrayEXT_params
6693 TEB *teb;
6694 GLuint vaobj;
6695 GLenum array;
6698 struct glEnableVertexAttribAPPLE_params
6700 TEB *teb;
6701 GLuint index;
6702 GLenum pname;
6705 struct glEnableVertexAttribArray_params
6707 TEB *teb;
6708 GLuint index;
6711 struct glEnableVertexAttribArrayARB_params
6713 TEB *teb;
6714 GLuint index;
6717 struct glEnablei_params
6719 TEB *teb;
6720 GLenum target;
6721 GLuint index;
6724 struct glEndConditionalRender_params
6726 TEB *teb;
6729 struct glEndConditionalRenderNV_params
6731 TEB *teb;
6734 struct glEndConditionalRenderNVX_params
6736 TEB *teb;
6739 struct glEndFragmentShaderATI_params
6741 TEB *teb;
6744 struct glEndOcclusionQueryNV_params
6746 TEB *teb;
6749 struct glEndPerfMonitorAMD_params
6751 TEB *teb;
6752 GLuint monitor;
6755 struct glEndPerfQueryINTEL_params
6757 TEB *teb;
6758 GLuint queryHandle;
6761 struct glEndQuery_params
6763 TEB *teb;
6764 GLenum target;
6767 struct glEndQueryARB_params
6769 TEB *teb;
6770 GLenum target;
6773 struct glEndQueryIndexed_params
6775 TEB *teb;
6776 GLenum target;
6777 GLuint index;
6780 struct glEndTransformFeedback_params
6782 TEB *teb;
6785 struct glEndTransformFeedbackEXT_params
6787 TEB *teb;
6790 struct glEndTransformFeedbackNV_params
6792 TEB *teb;
6795 struct glEndVertexShaderEXT_params
6797 TEB *teb;
6800 struct glEndVideoCaptureNV_params
6802 TEB *teb;
6803 GLuint video_capture_slot;
6806 struct glEvalCoord1xOES_params
6808 TEB *teb;
6809 GLfixed u;
6812 struct glEvalCoord1xvOES_params
6814 TEB *teb;
6815 const GLfixed *coords;
6818 struct glEvalCoord2xOES_params
6820 TEB *teb;
6821 GLfixed u;
6822 GLfixed v;
6825 struct glEvalCoord2xvOES_params
6827 TEB *teb;
6828 const GLfixed *coords;
6831 struct glEvalMapsNV_params
6833 TEB *teb;
6834 GLenum target;
6835 GLenum mode;
6838 struct glEvaluateDepthValuesARB_params
6840 TEB *teb;
6843 struct glExecuteProgramNV_params
6845 TEB *teb;
6846 GLenum target;
6847 GLuint id;
6848 const GLfloat *params;
6851 struct glExtractComponentEXT_params
6853 TEB *teb;
6854 GLuint res;
6855 GLuint src;
6856 GLuint num;
6859 struct glFeedbackBufferxOES_params
6861 TEB *teb;
6862 GLsizei n;
6863 GLenum type;
6864 const GLfixed *buffer;
6867 struct glFenceSync_params
6869 TEB *teb;
6870 GLenum condition;
6871 GLbitfield flags;
6872 GLsync ret;
6875 struct glFinalCombinerInputNV_params
6877 TEB *teb;
6878 GLenum variable;
6879 GLenum input;
6880 GLenum mapping;
6881 GLenum componentUsage;
6884 struct glFinishAsyncSGIX_params
6886 TEB *teb;
6887 GLuint *markerp;
6888 GLint ret;
6891 struct glFinishFenceAPPLE_params
6893 TEB *teb;
6894 GLuint fence;
6897 struct glFinishFenceNV_params
6899 TEB *teb;
6900 GLuint fence;
6903 struct glFinishObjectAPPLE_params
6905 TEB *teb;
6906 GLenum object;
6907 GLint name;
6910 struct glFinishTextureSUNX_params
6912 TEB *teb;
6915 struct glFlushMappedBufferRange_params
6917 TEB *teb;
6918 GLenum target;
6919 GLintptr offset;
6920 GLsizeiptr length;
6923 struct glFlushMappedBufferRangeAPPLE_params
6925 TEB *teb;
6926 GLenum target;
6927 GLintptr offset;
6928 GLsizeiptr size;
6931 struct glFlushMappedNamedBufferRange_params
6933 TEB *teb;
6934 GLuint buffer;
6935 GLintptr offset;
6936 GLsizeiptr length;
6939 struct glFlushMappedNamedBufferRangeEXT_params
6941 TEB *teb;
6942 GLuint buffer;
6943 GLintptr offset;
6944 GLsizeiptr length;
6947 struct glFlushPixelDataRangeNV_params
6949 TEB *teb;
6950 GLenum target;
6953 struct glFlushRasterSGIX_params
6955 TEB *teb;
6958 struct glFlushStaticDataIBM_params
6960 TEB *teb;
6961 GLenum target;
6964 struct glFlushVertexArrayRangeAPPLE_params
6966 TEB *teb;
6967 GLsizei length;
6968 void *pointer;
6971 struct glFlushVertexArrayRangeNV_params
6973 TEB *teb;
6976 struct glFogCoordFormatNV_params
6978 TEB *teb;
6979 GLenum type;
6980 GLsizei stride;
6983 struct glFogCoordPointer_params
6985 TEB *teb;
6986 GLenum type;
6987 GLsizei stride;
6988 const void *pointer;
6991 struct glFogCoordPointerEXT_params
6993 TEB *teb;
6994 GLenum type;
6995 GLsizei stride;
6996 const void *pointer;
6999 struct glFogCoordPointerListIBM_params
7001 TEB *teb;
7002 GLenum type;
7003 GLint stride;
7004 const void **pointer;
7005 GLint ptrstride;
7008 struct glFogCoordd_params
7010 TEB *teb;
7011 GLdouble coord;
7014 struct glFogCoorddEXT_params
7016 TEB *teb;
7017 GLdouble coord;
7020 struct glFogCoorddv_params
7022 TEB *teb;
7023 const GLdouble *coord;
7026 struct glFogCoorddvEXT_params
7028 TEB *teb;
7029 const GLdouble *coord;
7032 struct glFogCoordf_params
7034 TEB *teb;
7035 GLfloat coord;
7038 struct glFogCoordfEXT_params
7040 TEB *teb;
7041 GLfloat coord;
7044 struct glFogCoordfv_params
7046 TEB *teb;
7047 const GLfloat *coord;
7050 struct glFogCoordfvEXT_params
7052 TEB *teb;
7053 const GLfloat *coord;
7056 struct glFogCoordhNV_params
7058 TEB *teb;
7059 GLhalfNV fog;
7062 struct glFogCoordhvNV_params
7064 TEB *teb;
7065 const GLhalfNV *fog;
7068 struct glFogFuncSGIS_params
7070 TEB *teb;
7071 GLsizei n;
7072 const GLfloat *points;
7075 struct glFogxOES_params
7077 TEB *teb;
7078 GLenum pname;
7079 GLfixed param;
7082 struct glFogxvOES_params
7084 TEB *teb;
7085 GLenum pname;
7086 const GLfixed *param;
7089 struct glFragmentColorMaterialSGIX_params
7091 TEB *teb;
7092 GLenum face;
7093 GLenum mode;
7096 struct glFragmentCoverageColorNV_params
7098 TEB *teb;
7099 GLuint color;
7102 struct glFragmentLightModelfSGIX_params
7104 TEB *teb;
7105 GLenum pname;
7106 GLfloat param;
7109 struct glFragmentLightModelfvSGIX_params
7111 TEB *teb;
7112 GLenum pname;
7113 const GLfloat *params;
7116 struct glFragmentLightModeliSGIX_params
7118 TEB *teb;
7119 GLenum pname;
7120 GLint param;
7123 struct glFragmentLightModelivSGIX_params
7125 TEB *teb;
7126 GLenum pname;
7127 const GLint *params;
7130 struct glFragmentLightfSGIX_params
7132 TEB *teb;
7133 GLenum light;
7134 GLenum pname;
7135 GLfloat param;
7138 struct glFragmentLightfvSGIX_params
7140 TEB *teb;
7141 GLenum light;
7142 GLenum pname;
7143 const GLfloat *params;
7146 struct glFragmentLightiSGIX_params
7148 TEB *teb;
7149 GLenum light;
7150 GLenum pname;
7151 GLint param;
7154 struct glFragmentLightivSGIX_params
7156 TEB *teb;
7157 GLenum light;
7158 GLenum pname;
7159 const GLint *params;
7162 struct glFragmentMaterialfSGIX_params
7164 TEB *teb;
7165 GLenum face;
7166 GLenum pname;
7167 GLfloat param;
7170 struct glFragmentMaterialfvSGIX_params
7172 TEB *teb;
7173 GLenum face;
7174 GLenum pname;
7175 const GLfloat *params;
7178 struct glFragmentMaterialiSGIX_params
7180 TEB *teb;
7181 GLenum face;
7182 GLenum pname;
7183 GLint param;
7186 struct glFragmentMaterialivSGIX_params
7188 TEB *teb;
7189 GLenum face;
7190 GLenum pname;
7191 const GLint *params;
7194 struct glFrameTerminatorGREMEDY_params
7196 TEB *teb;
7199 struct glFrameZoomSGIX_params
7201 TEB *teb;
7202 GLint factor;
7205 struct glFramebufferDrawBufferEXT_params
7207 TEB *teb;
7208 GLuint framebuffer;
7209 GLenum mode;
7212 struct glFramebufferDrawBuffersEXT_params
7214 TEB *teb;
7215 GLuint framebuffer;
7216 GLsizei n;
7217 const GLenum *bufs;
7220 struct glFramebufferFetchBarrierEXT_params
7222 TEB *teb;
7225 struct glFramebufferParameteri_params
7227 TEB *teb;
7228 GLenum target;
7229 GLenum pname;
7230 GLint param;
7233 struct glFramebufferParameteriMESA_params
7235 TEB *teb;
7236 GLenum target;
7237 GLenum pname;
7238 GLint param;
7241 struct glFramebufferReadBufferEXT_params
7243 TEB *teb;
7244 GLuint framebuffer;
7245 GLenum mode;
7248 struct glFramebufferRenderbuffer_params
7250 TEB *teb;
7251 GLenum target;
7252 GLenum attachment;
7253 GLenum renderbuffertarget;
7254 GLuint renderbuffer;
7257 struct glFramebufferRenderbufferEXT_params
7259 TEB *teb;
7260 GLenum target;
7261 GLenum attachment;
7262 GLenum renderbuffertarget;
7263 GLuint renderbuffer;
7266 struct glFramebufferSampleLocationsfvARB_params
7268 TEB *teb;
7269 GLenum target;
7270 GLuint start;
7271 GLsizei count;
7272 const GLfloat *v;
7275 struct glFramebufferSampleLocationsfvNV_params
7277 TEB *teb;
7278 GLenum target;
7279 GLuint start;
7280 GLsizei count;
7281 const GLfloat *v;
7284 struct glFramebufferSamplePositionsfvAMD_params
7286 TEB *teb;
7287 GLenum target;
7288 GLuint numsamples;
7289 GLuint pixelindex;
7290 const GLfloat *values;
7293 struct glFramebufferTexture_params
7295 TEB *teb;
7296 GLenum target;
7297 GLenum attachment;
7298 GLuint texture;
7299 GLint level;
7302 struct glFramebufferTexture1D_params
7304 TEB *teb;
7305 GLenum target;
7306 GLenum attachment;
7307 GLenum textarget;
7308 GLuint texture;
7309 GLint level;
7312 struct glFramebufferTexture1DEXT_params
7314 TEB *teb;
7315 GLenum target;
7316 GLenum attachment;
7317 GLenum textarget;
7318 GLuint texture;
7319 GLint level;
7322 struct glFramebufferTexture2D_params
7324 TEB *teb;
7325 GLenum target;
7326 GLenum attachment;
7327 GLenum textarget;
7328 GLuint texture;
7329 GLint level;
7332 struct glFramebufferTexture2DEXT_params
7334 TEB *teb;
7335 GLenum target;
7336 GLenum attachment;
7337 GLenum textarget;
7338 GLuint texture;
7339 GLint level;
7342 struct glFramebufferTexture3D_params
7344 TEB *teb;
7345 GLenum target;
7346 GLenum attachment;
7347 GLenum textarget;
7348 GLuint texture;
7349 GLint level;
7350 GLint zoffset;
7353 struct glFramebufferTexture3DEXT_params
7355 TEB *teb;
7356 GLenum target;
7357 GLenum attachment;
7358 GLenum textarget;
7359 GLuint texture;
7360 GLint level;
7361 GLint zoffset;
7364 struct glFramebufferTextureARB_params
7366 TEB *teb;
7367 GLenum target;
7368 GLenum attachment;
7369 GLuint texture;
7370 GLint level;
7373 struct glFramebufferTextureEXT_params
7375 TEB *teb;
7376 GLenum target;
7377 GLenum attachment;
7378 GLuint texture;
7379 GLint level;
7382 struct glFramebufferTextureFaceARB_params
7384 TEB *teb;
7385 GLenum target;
7386 GLenum attachment;
7387 GLuint texture;
7388 GLint level;
7389 GLenum face;
7392 struct glFramebufferTextureFaceEXT_params
7394 TEB *teb;
7395 GLenum target;
7396 GLenum attachment;
7397 GLuint texture;
7398 GLint level;
7399 GLenum face;
7402 struct glFramebufferTextureLayer_params
7404 TEB *teb;
7405 GLenum target;
7406 GLenum attachment;
7407 GLuint texture;
7408 GLint level;
7409 GLint layer;
7412 struct glFramebufferTextureLayerARB_params
7414 TEB *teb;
7415 GLenum target;
7416 GLenum attachment;
7417 GLuint texture;
7418 GLint level;
7419 GLint layer;
7422 struct glFramebufferTextureLayerEXT_params
7424 TEB *teb;
7425 GLenum target;
7426 GLenum attachment;
7427 GLuint texture;
7428 GLint level;
7429 GLint layer;
7432 struct glFramebufferTextureMultiviewOVR_params
7434 TEB *teb;
7435 GLenum target;
7436 GLenum attachment;
7437 GLuint texture;
7438 GLint level;
7439 GLint baseViewIndex;
7440 GLsizei numViews;
7443 struct glFreeObjectBufferATI_params
7445 TEB *teb;
7446 GLuint buffer;
7449 struct glFrustumfOES_params
7451 TEB *teb;
7452 GLfloat l;
7453 GLfloat r;
7454 GLfloat b;
7455 GLfloat t;
7456 GLfloat n;
7457 GLfloat f;
7460 struct glFrustumxOES_params
7462 TEB *teb;
7463 GLfixed l;
7464 GLfixed r;
7465 GLfixed b;
7466 GLfixed t;
7467 GLfixed n;
7468 GLfixed f;
7471 struct glGenAsyncMarkersSGIX_params
7473 TEB *teb;
7474 GLsizei range;
7475 GLuint ret;
7478 struct glGenBuffers_params
7480 TEB *teb;
7481 GLsizei n;
7482 GLuint *buffers;
7485 struct glGenBuffersARB_params
7487 TEB *teb;
7488 GLsizei n;
7489 GLuint *buffers;
7492 struct glGenFencesAPPLE_params
7494 TEB *teb;
7495 GLsizei n;
7496 GLuint *fences;
7499 struct glGenFencesNV_params
7501 TEB *teb;
7502 GLsizei n;
7503 GLuint *fences;
7506 struct glGenFragmentShadersATI_params
7508 TEB *teb;
7509 GLuint range;
7510 GLuint ret;
7513 struct glGenFramebuffers_params
7515 TEB *teb;
7516 GLsizei n;
7517 GLuint *framebuffers;
7520 struct glGenFramebuffersEXT_params
7522 TEB *teb;
7523 GLsizei n;
7524 GLuint *framebuffers;
7527 struct glGenNamesAMD_params
7529 TEB *teb;
7530 GLenum identifier;
7531 GLuint num;
7532 GLuint *names;
7535 struct glGenOcclusionQueriesNV_params
7537 TEB *teb;
7538 GLsizei n;
7539 GLuint *ids;
7542 struct glGenPathsNV_params
7544 TEB *teb;
7545 GLsizei range;
7546 GLuint ret;
7549 struct glGenPerfMonitorsAMD_params
7551 TEB *teb;
7552 GLsizei n;
7553 GLuint *monitors;
7556 struct glGenProgramPipelines_params
7558 TEB *teb;
7559 GLsizei n;
7560 GLuint *pipelines;
7563 struct glGenProgramsARB_params
7565 TEB *teb;
7566 GLsizei n;
7567 GLuint *programs;
7570 struct glGenProgramsNV_params
7572 TEB *teb;
7573 GLsizei n;
7574 GLuint *programs;
7577 struct glGenQueries_params
7579 TEB *teb;
7580 GLsizei n;
7581 GLuint *ids;
7584 struct glGenQueriesARB_params
7586 TEB *teb;
7587 GLsizei n;
7588 GLuint *ids;
7591 struct glGenQueryResourceTagNV_params
7593 TEB *teb;
7594 GLsizei n;
7595 GLint *tagIds;
7598 struct glGenRenderbuffers_params
7600 TEB *teb;
7601 GLsizei n;
7602 GLuint *renderbuffers;
7605 struct glGenRenderbuffersEXT_params
7607 TEB *teb;
7608 GLsizei n;
7609 GLuint *renderbuffers;
7612 struct glGenSamplers_params
7614 TEB *teb;
7615 GLsizei count;
7616 GLuint *samplers;
7619 struct glGenSemaphoresEXT_params
7621 TEB *teb;
7622 GLsizei n;
7623 GLuint *semaphores;
7626 struct glGenSymbolsEXT_params
7628 TEB *teb;
7629 GLenum datatype;
7630 GLenum storagetype;
7631 GLenum range;
7632 GLuint components;
7633 GLuint ret;
7636 struct glGenTexturesEXT_params
7638 TEB *teb;
7639 GLsizei n;
7640 GLuint *textures;
7643 struct glGenTransformFeedbacks_params
7645 TEB *teb;
7646 GLsizei n;
7647 GLuint *ids;
7650 struct glGenTransformFeedbacksNV_params
7652 TEB *teb;
7653 GLsizei n;
7654 GLuint *ids;
7657 struct glGenVertexArrays_params
7659 TEB *teb;
7660 GLsizei n;
7661 GLuint *arrays;
7664 struct glGenVertexArraysAPPLE_params
7666 TEB *teb;
7667 GLsizei n;
7668 GLuint *arrays;
7671 struct glGenVertexShadersEXT_params
7673 TEB *teb;
7674 GLuint range;
7675 GLuint ret;
7678 struct glGenerateMipmap_params
7680 TEB *teb;
7681 GLenum target;
7684 struct glGenerateMipmapEXT_params
7686 TEB *teb;
7687 GLenum target;
7690 struct glGenerateMultiTexMipmapEXT_params
7692 TEB *teb;
7693 GLenum texunit;
7694 GLenum target;
7697 struct glGenerateTextureMipmap_params
7699 TEB *teb;
7700 GLuint texture;
7703 struct glGenerateTextureMipmapEXT_params
7705 TEB *teb;
7706 GLuint texture;
7707 GLenum target;
7710 struct glGetActiveAtomicCounterBufferiv_params
7712 TEB *teb;
7713 GLuint program;
7714 GLuint bufferIndex;
7715 GLenum pname;
7716 GLint *params;
7719 struct glGetActiveAttrib_params
7721 TEB *teb;
7722 GLuint program;
7723 GLuint index;
7724 GLsizei bufSize;
7725 GLsizei *length;
7726 GLint *size;
7727 GLenum *type;
7728 GLchar *name;
7731 struct glGetActiveAttribARB_params
7733 TEB *teb;
7734 GLhandleARB programObj;
7735 GLuint index;
7736 GLsizei maxLength;
7737 GLsizei *length;
7738 GLint *size;
7739 GLenum *type;
7740 GLcharARB *name;
7743 struct glGetActiveSubroutineName_params
7745 TEB *teb;
7746 GLuint program;
7747 GLenum shadertype;
7748 GLuint index;
7749 GLsizei bufSize;
7750 GLsizei *length;
7751 GLchar *name;
7754 struct glGetActiveSubroutineUniformName_params
7756 TEB *teb;
7757 GLuint program;
7758 GLenum shadertype;
7759 GLuint index;
7760 GLsizei bufSize;
7761 GLsizei *length;
7762 GLchar *name;
7765 struct glGetActiveSubroutineUniformiv_params
7767 TEB *teb;
7768 GLuint program;
7769 GLenum shadertype;
7770 GLuint index;
7771 GLenum pname;
7772 GLint *values;
7775 struct glGetActiveUniform_params
7777 TEB *teb;
7778 GLuint program;
7779 GLuint index;
7780 GLsizei bufSize;
7781 GLsizei *length;
7782 GLint *size;
7783 GLenum *type;
7784 GLchar *name;
7787 struct glGetActiveUniformARB_params
7789 TEB *teb;
7790 GLhandleARB programObj;
7791 GLuint index;
7792 GLsizei maxLength;
7793 GLsizei *length;
7794 GLint *size;
7795 GLenum *type;
7796 GLcharARB *name;
7799 struct glGetActiveUniformBlockName_params
7801 TEB *teb;
7802 GLuint program;
7803 GLuint uniformBlockIndex;
7804 GLsizei bufSize;
7805 GLsizei *length;
7806 GLchar *uniformBlockName;
7809 struct glGetActiveUniformBlockiv_params
7811 TEB *teb;
7812 GLuint program;
7813 GLuint uniformBlockIndex;
7814 GLenum pname;
7815 GLint *params;
7818 struct glGetActiveUniformName_params
7820 TEB *teb;
7821 GLuint program;
7822 GLuint uniformIndex;
7823 GLsizei bufSize;
7824 GLsizei *length;
7825 GLchar *uniformName;
7828 struct glGetActiveUniformsiv_params
7830 TEB *teb;
7831 GLuint program;
7832 GLsizei uniformCount;
7833 const GLuint *uniformIndices;
7834 GLenum pname;
7835 GLint *params;
7838 struct glGetActiveVaryingNV_params
7840 TEB *teb;
7841 GLuint program;
7842 GLuint index;
7843 GLsizei bufSize;
7844 GLsizei *length;
7845 GLsizei *size;
7846 GLenum *type;
7847 GLchar *name;
7850 struct glGetArrayObjectfvATI_params
7852 TEB *teb;
7853 GLenum array;
7854 GLenum pname;
7855 GLfloat *params;
7858 struct glGetArrayObjectivATI_params
7860 TEB *teb;
7861 GLenum array;
7862 GLenum pname;
7863 GLint *params;
7866 struct glGetAttachedObjectsARB_params
7868 TEB *teb;
7869 GLhandleARB containerObj;
7870 GLsizei maxCount;
7871 GLsizei *count;
7872 GLhandleARB *obj;
7875 struct glGetAttachedShaders_params
7877 TEB *teb;
7878 GLuint program;
7879 GLsizei maxCount;
7880 GLsizei *count;
7881 GLuint *shaders;
7884 struct glGetAttribLocation_params
7886 TEB *teb;
7887 GLuint program;
7888 const GLchar *name;
7889 GLint ret;
7892 struct glGetAttribLocationARB_params
7894 TEB *teb;
7895 GLhandleARB programObj;
7896 const GLcharARB *name;
7897 GLint ret;
7900 struct glGetBooleanIndexedvEXT_params
7902 TEB *teb;
7903 GLenum target;
7904 GLuint index;
7905 GLboolean *data;
7908 struct glGetBooleani_v_params
7910 TEB *teb;
7911 GLenum target;
7912 GLuint index;
7913 GLboolean *data;
7916 struct glGetBufferParameteri64v_params
7918 TEB *teb;
7919 GLenum target;
7920 GLenum pname;
7921 GLint64 *params;
7924 struct glGetBufferParameteriv_params
7926 TEB *teb;
7927 GLenum target;
7928 GLenum pname;
7929 GLint *params;
7932 struct glGetBufferParameterivARB_params
7934 TEB *teb;
7935 GLenum target;
7936 GLenum pname;
7937 GLint *params;
7940 struct glGetBufferParameterui64vNV_params
7942 TEB *teb;
7943 GLenum target;
7944 GLenum pname;
7945 GLuint64EXT *params;
7948 struct glGetBufferPointerv_params
7950 TEB *teb;
7951 GLenum target;
7952 GLenum pname;
7953 void **params;
7956 struct glGetBufferPointervARB_params
7958 TEB *teb;
7959 GLenum target;
7960 GLenum pname;
7961 void **params;
7964 struct glGetBufferSubData_params
7966 TEB *teb;
7967 GLenum target;
7968 GLintptr offset;
7969 GLsizeiptr size;
7970 void *data;
7973 struct glGetBufferSubDataARB_params
7975 TEB *teb;
7976 GLenum target;
7977 GLintptrARB offset;
7978 GLsizeiptrARB size;
7979 void *data;
7982 struct glGetClipPlanefOES_params
7984 TEB *teb;
7985 GLenum plane;
7986 GLfloat *equation;
7989 struct glGetClipPlanexOES_params
7991 TEB *teb;
7992 GLenum plane;
7993 GLfixed *equation;
7996 struct glGetColorTable_params
7998 TEB *teb;
7999 GLenum target;
8000 GLenum format;
8001 GLenum type;
8002 void *table;
8005 struct glGetColorTableEXT_params
8007 TEB *teb;
8008 GLenum target;
8009 GLenum format;
8010 GLenum type;
8011 void *data;
8014 struct glGetColorTableParameterfv_params
8016 TEB *teb;
8017 GLenum target;
8018 GLenum pname;
8019 GLfloat *params;
8022 struct glGetColorTableParameterfvEXT_params
8024 TEB *teb;
8025 GLenum target;
8026 GLenum pname;
8027 GLfloat *params;
8030 struct glGetColorTableParameterfvSGI_params
8032 TEB *teb;
8033 GLenum target;
8034 GLenum pname;
8035 GLfloat *params;
8038 struct glGetColorTableParameteriv_params
8040 TEB *teb;
8041 GLenum target;
8042 GLenum pname;
8043 GLint *params;
8046 struct glGetColorTableParameterivEXT_params
8048 TEB *teb;
8049 GLenum target;
8050 GLenum pname;
8051 GLint *params;
8054 struct glGetColorTableParameterivSGI_params
8056 TEB *teb;
8057 GLenum target;
8058 GLenum pname;
8059 GLint *params;
8062 struct glGetColorTableSGI_params
8064 TEB *teb;
8065 GLenum target;
8066 GLenum format;
8067 GLenum type;
8068 void *table;
8071 struct glGetCombinerInputParameterfvNV_params
8073 TEB *teb;
8074 GLenum stage;
8075 GLenum portion;
8076 GLenum variable;
8077 GLenum pname;
8078 GLfloat *params;
8081 struct glGetCombinerInputParameterivNV_params
8083 TEB *teb;
8084 GLenum stage;
8085 GLenum portion;
8086 GLenum variable;
8087 GLenum pname;
8088 GLint *params;
8091 struct glGetCombinerOutputParameterfvNV_params
8093 TEB *teb;
8094 GLenum stage;
8095 GLenum portion;
8096 GLenum pname;
8097 GLfloat *params;
8100 struct glGetCombinerOutputParameterivNV_params
8102 TEB *teb;
8103 GLenum stage;
8104 GLenum portion;
8105 GLenum pname;
8106 GLint *params;
8109 struct glGetCombinerStageParameterfvNV_params
8111 TEB *teb;
8112 GLenum stage;
8113 GLenum pname;
8114 GLfloat *params;
8117 struct glGetCommandHeaderNV_params
8119 TEB *teb;
8120 GLenum tokenID;
8121 GLuint size;
8122 GLuint ret;
8125 struct glGetCompressedMultiTexImageEXT_params
8127 TEB *teb;
8128 GLenum texunit;
8129 GLenum target;
8130 GLint lod;
8131 void *img;
8134 struct glGetCompressedTexImage_params
8136 TEB *teb;
8137 GLenum target;
8138 GLint level;
8139 void *img;
8142 struct glGetCompressedTexImageARB_params
8144 TEB *teb;
8145 GLenum target;
8146 GLint level;
8147 void *img;
8150 struct glGetCompressedTextureImage_params
8152 TEB *teb;
8153 GLuint texture;
8154 GLint level;
8155 GLsizei bufSize;
8156 void *pixels;
8159 struct glGetCompressedTextureImageEXT_params
8161 TEB *teb;
8162 GLuint texture;
8163 GLenum target;
8164 GLint lod;
8165 void *img;
8168 struct glGetCompressedTextureSubImage_params
8170 TEB *teb;
8171 GLuint texture;
8172 GLint level;
8173 GLint xoffset;
8174 GLint yoffset;
8175 GLint zoffset;
8176 GLsizei width;
8177 GLsizei height;
8178 GLsizei depth;
8179 GLsizei bufSize;
8180 void *pixels;
8183 struct glGetConvolutionFilter_params
8185 TEB *teb;
8186 GLenum target;
8187 GLenum format;
8188 GLenum type;
8189 void *image;
8192 struct glGetConvolutionFilterEXT_params
8194 TEB *teb;
8195 GLenum target;
8196 GLenum format;
8197 GLenum type;
8198 void *image;
8201 struct glGetConvolutionParameterfv_params
8203 TEB *teb;
8204 GLenum target;
8205 GLenum pname;
8206 GLfloat *params;
8209 struct glGetConvolutionParameterfvEXT_params
8211 TEB *teb;
8212 GLenum target;
8213 GLenum pname;
8214 GLfloat *params;
8217 struct glGetConvolutionParameteriv_params
8219 TEB *teb;
8220 GLenum target;
8221 GLenum pname;
8222 GLint *params;
8225 struct glGetConvolutionParameterivEXT_params
8227 TEB *teb;
8228 GLenum target;
8229 GLenum pname;
8230 GLint *params;
8233 struct glGetConvolutionParameterxvOES_params
8235 TEB *teb;
8236 GLenum target;
8237 GLenum pname;
8238 GLfixed *params;
8241 struct glGetCoverageModulationTableNV_params
8243 TEB *teb;
8244 GLsizei bufSize;
8245 GLfloat *v;
8248 struct glGetDebugMessageLog_params
8250 TEB *teb;
8251 GLuint count;
8252 GLsizei bufSize;
8253 GLenum *sources;
8254 GLenum *types;
8255 GLuint *ids;
8256 GLenum *severities;
8257 GLsizei *lengths;
8258 GLchar *messageLog;
8259 GLuint ret;
8262 struct glGetDebugMessageLogAMD_params
8264 TEB *teb;
8265 GLuint count;
8266 GLsizei bufSize;
8267 GLenum *categories;
8268 GLuint *severities;
8269 GLuint *ids;
8270 GLsizei *lengths;
8271 GLchar *message;
8272 GLuint ret;
8275 struct glGetDebugMessageLogARB_params
8277 TEB *teb;
8278 GLuint count;
8279 GLsizei bufSize;
8280 GLenum *sources;
8281 GLenum *types;
8282 GLuint *ids;
8283 GLenum *severities;
8284 GLsizei *lengths;
8285 GLchar *messageLog;
8286 GLuint ret;
8289 struct glGetDetailTexFuncSGIS_params
8291 TEB *teb;
8292 GLenum target;
8293 GLfloat *points;
8296 struct glGetDoubleIndexedvEXT_params
8298 TEB *teb;
8299 GLenum target;
8300 GLuint index;
8301 GLdouble *data;
8304 struct glGetDoublei_v_params
8306 TEB *teb;
8307 GLenum target;
8308 GLuint index;
8309 GLdouble *data;
8312 struct glGetDoublei_vEXT_params
8314 TEB *teb;
8315 GLenum pname;
8316 GLuint index;
8317 GLdouble *params;
8320 struct glGetFenceivNV_params
8322 TEB *teb;
8323 GLuint fence;
8324 GLenum pname;
8325 GLint *params;
8328 struct glGetFinalCombinerInputParameterfvNV_params
8330 TEB *teb;
8331 GLenum variable;
8332 GLenum pname;
8333 GLfloat *params;
8336 struct glGetFinalCombinerInputParameterivNV_params
8338 TEB *teb;
8339 GLenum variable;
8340 GLenum pname;
8341 GLint *params;
8344 struct glGetFirstPerfQueryIdINTEL_params
8346 TEB *teb;
8347 GLuint *queryId;
8350 struct glGetFixedvOES_params
8352 TEB *teb;
8353 GLenum pname;
8354 GLfixed *params;
8357 struct glGetFloatIndexedvEXT_params
8359 TEB *teb;
8360 GLenum target;
8361 GLuint index;
8362 GLfloat *data;
8365 struct glGetFloati_v_params
8367 TEB *teb;
8368 GLenum target;
8369 GLuint index;
8370 GLfloat *data;
8373 struct glGetFloati_vEXT_params
8375 TEB *teb;
8376 GLenum pname;
8377 GLuint index;
8378 GLfloat *params;
8381 struct glGetFogFuncSGIS_params
8383 TEB *teb;
8384 GLfloat *points;
8387 struct glGetFragDataIndex_params
8389 TEB *teb;
8390 GLuint program;
8391 const GLchar *name;
8392 GLint ret;
8395 struct glGetFragDataLocation_params
8397 TEB *teb;
8398 GLuint program;
8399 const GLchar *name;
8400 GLint ret;
8403 struct glGetFragDataLocationEXT_params
8405 TEB *teb;
8406 GLuint program;
8407 const GLchar *name;
8408 GLint ret;
8411 struct glGetFragmentLightfvSGIX_params
8413 TEB *teb;
8414 GLenum light;
8415 GLenum pname;
8416 GLfloat *params;
8419 struct glGetFragmentLightivSGIX_params
8421 TEB *teb;
8422 GLenum light;
8423 GLenum pname;
8424 GLint *params;
8427 struct glGetFragmentMaterialfvSGIX_params
8429 TEB *teb;
8430 GLenum face;
8431 GLenum pname;
8432 GLfloat *params;
8435 struct glGetFragmentMaterialivSGIX_params
8437 TEB *teb;
8438 GLenum face;
8439 GLenum pname;
8440 GLint *params;
8443 struct glGetFramebufferAttachmentParameteriv_params
8445 TEB *teb;
8446 GLenum target;
8447 GLenum attachment;
8448 GLenum pname;
8449 GLint *params;
8452 struct glGetFramebufferAttachmentParameterivEXT_params
8454 TEB *teb;
8455 GLenum target;
8456 GLenum attachment;
8457 GLenum pname;
8458 GLint *params;
8461 struct glGetFramebufferParameterfvAMD_params
8463 TEB *teb;
8464 GLenum target;
8465 GLenum pname;
8466 GLuint numsamples;
8467 GLuint pixelindex;
8468 GLsizei size;
8469 GLfloat *values;
8472 struct glGetFramebufferParameteriv_params
8474 TEB *teb;
8475 GLenum target;
8476 GLenum pname;
8477 GLint *params;
8480 struct glGetFramebufferParameterivEXT_params
8482 TEB *teb;
8483 GLuint framebuffer;
8484 GLenum pname;
8485 GLint *params;
8488 struct glGetFramebufferParameterivMESA_params
8490 TEB *teb;
8491 GLenum target;
8492 GLenum pname;
8493 GLint *params;
8496 struct glGetGraphicsResetStatus_params
8498 TEB *teb;
8499 GLenum ret;
8502 struct glGetGraphicsResetStatusARB_params
8504 TEB *teb;
8505 GLenum ret;
8508 struct glGetHandleARB_params
8510 TEB *teb;
8511 GLenum pname;
8512 GLhandleARB ret;
8515 struct glGetHistogram_params
8517 TEB *teb;
8518 GLenum target;
8519 GLboolean reset;
8520 GLenum format;
8521 GLenum type;
8522 void *values;
8525 struct glGetHistogramEXT_params
8527 TEB *teb;
8528 GLenum target;
8529 GLboolean reset;
8530 GLenum format;
8531 GLenum type;
8532 void *values;
8535 struct glGetHistogramParameterfv_params
8537 TEB *teb;
8538 GLenum target;
8539 GLenum pname;
8540 GLfloat *params;
8543 struct glGetHistogramParameterfvEXT_params
8545 TEB *teb;
8546 GLenum target;
8547 GLenum pname;
8548 GLfloat *params;
8551 struct glGetHistogramParameteriv_params
8553 TEB *teb;
8554 GLenum target;
8555 GLenum pname;
8556 GLint *params;
8559 struct glGetHistogramParameterivEXT_params
8561 TEB *teb;
8562 GLenum target;
8563 GLenum pname;
8564 GLint *params;
8567 struct glGetHistogramParameterxvOES_params
8569 TEB *teb;
8570 GLenum target;
8571 GLenum pname;
8572 GLfixed *params;
8575 struct glGetImageHandleARB_params
8577 TEB *teb;
8578 GLuint texture;
8579 GLint level;
8580 GLboolean layered;
8581 GLint layer;
8582 GLenum format;
8583 GLuint64 ret;
8586 struct glGetImageHandleNV_params
8588 TEB *teb;
8589 GLuint texture;
8590 GLint level;
8591 GLboolean layered;
8592 GLint layer;
8593 GLenum format;
8594 GLuint64 ret;
8597 struct glGetImageTransformParameterfvHP_params
8599 TEB *teb;
8600 GLenum target;
8601 GLenum pname;
8602 GLfloat *params;
8605 struct glGetImageTransformParameterivHP_params
8607 TEB *teb;
8608 GLenum target;
8609 GLenum pname;
8610 GLint *params;
8613 struct glGetInfoLogARB_params
8615 TEB *teb;
8616 GLhandleARB obj;
8617 GLsizei maxLength;
8618 GLsizei *length;
8619 GLcharARB *infoLog;
8622 struct glGetInstrumentsSGIX_params
8624 TEB *teb;
8625 GLint ret;
8628 struct glGetInteger64i_v_params
8630 TEB *teb;
8631 GLenum target;
8632 GLuint index;
8633 GLint64 *data;
8636 struct glGetInteger64v_params
8638 TEB *teb;
8639 GLenum pname;
8640 GLint64 *data;
8643 struct glGetIntegerIndexedvEXT_params
8645 TEB *teb;
8646 GLenum target;
8647 GLuint index;
8648 GLint *data;
8651 struct glGetIntegeri_v_params
8653 TEB *teb;
8654 GLenum target;
8655 GLuint index;
8656 GLint *data;
8659 struct glGetIntegerui64i_vNV_params
8661 TEB *teb;
8662 GLenum value;
8663 GLuint index;
8664 GLuint64EXT *result;
8667 struct glGetIntegerui64vNV_params
8669 TEB *teb;
8670 GLenum value;
8671 GLuint64EXT *result;
8674 struct glGetInternalformatSampleivNV_params
8676 TEB *teb;
8677 GLenum target;
8678 GLenum internalformat;
8679 GLsizei samples;
8680 GLenum pname;
8681 GLsizei count;
8682 GLint *params;
8685 struct glGetInternalformati64v_params
8687 TEB *teb;
8688 GLenum target;
8689 GLenum internalformat;
8690 GLenum pname;
8691 GLsizei count;
8692 GLint64 *params;
8695 struct glGetInternalformativ_params
8697 TEB *teb;
8698 GLenum target;
8699 GLenum internalformat;
8700 GLenum pname;
8701 GLsizei count;
8702 GLint *params;
8705 struct glGetInvariantBooleanvEXT_params
8707 TEB *teb;
8708 GLuint id;
8709 GLenum value;
8710 GLboolean *data;
8713 struct glGetInvariantFloatvEXT_params
8715 TEB *teb;
8716 GLuint id;
8717 GLenum value;
8718 GLfloat *data;
8721 struct glGetInvariantIntegervEXT_params
8723 TEB *teb;
8724 GLuint id;
8725 GLenum value;
8726 GLint *data;
8729 struct glGetLightxOES_params
8731 TEB *teb;
8732 GLenum light;
8733 GLenum pname;
8734 GLfixed *params;
8737 struct glGetListParameterfvSGIX_params
8739 TEB *teb;
8740 GLuint list;
8741 GLenum pname;
8742 GLfloat *params;
8745 struct glGetListParameterivSGIX_params
8747 TEB *teb;
8748 GLuint list;
8749 GLenum pname;
8750 GLint *params;
8753 struct glGetLocalConstantBooleanvEXT_params
8755 TEB *teb;
8756 GLuint id;
8757 GLenum value;
8758 GLboolean *data;
8761 struct glGetLocalConstantFloatvEXT_params
8763 TEB *teb;
8764 GLuint id;
8765 GLenum value;
8766 GLfloat *data;
8769 struct glGetLocalConstantIntegervEXT_params
8771 TEB *teb;
8772 GLuint id;
8773 GLenum value;
8774 GLint *data;
8777 struct glGetMapAttribParameterfvNV_params
8779 TEB *teb;
8780 GLenum target;
8781 GLuint index;
8782 GLenum pname;
8783 GLfloat *params;
8786 struct glGetMapAttribParameterivNV_params
8788 TEB *teb;
8789 GLenum target;
8790 GLuint index;
8791 GLenum pname;
8792 GLint *params;
8795 struct glGetMapControlPointsNV_params
8797 TEB *teb;
8798 GLenum target;
8799 GLuint index;
8800 GLenum type;
8801 GLsizei ustride;
8802 GLsizei vstride;
8803 GLboolean packed;
8804 void *points;
8807 struct glGetMapParameterfvNV_params
8809 TEB *teb;
8810 GLenum target;
8811 GLenum pname;
8812 GLfloat *params;
8815 struct glGetMapParameterivNV_params
8817 TEB *teb;
8818 GLenum target;
8819 GLenum pname;
8820 GLint *params;
8823 struct glGetMapxvOES_params
8825 TEB *teb;
8826 GLenum target;
8827 GLenum query;
8828 GLfixed *v;
8831 struct glGetMaterialxOES_params
8833 TEB *teb;
8834 GLenum face;
8835 GLenum pname;
8836 GLfixed param;
8839 struct glGetMemoryObjectDetachedResourcesuivNV_params
8841 TEB *teb;
8842 GLuint memory;
8843 GLenum pname;
8844 GLint first;
8845 GLsizei count;
8846 GLuint *params;
8849 struct glGetMemoryObjectParameterivEXT_params
8851 TEB *teb;
8852 GLuint memoryObject;
8853 GLenum pname;
8854 GLint *params;
8857 struct glGetMinmax_params
8859 TEB *teb;
8860 GLenum target;
8861 GLboolean reset;
8862 GLenum format;
8863 GLenum type;
8864 void *values;
8867 struct glGetMinmaxEXT_params
8869 TEB *teb;
8870 GLenum target;
8871 GLboolean reset;
8872 GLenum format;
8873 GLenum type;
8874 void *values;
8877 struct glGetMinmaxParameterfv_params
8879 TEB *teb;
8880 GLenum target;
8881 GLenum pname;
8882 GLfloat *params;
8885 struct glGetMinmaxParameterfvEXT_params
8887 TEB *teb;
8888 GLenum target;
8889 GLenum pname;
8890 GLfloat *params;
8893 struct glGetMinmaxParameteriv_params
8895 TEB *teb;
8896 GLenum target;
8897 GLenum pname;
8898 GLint *params;
8901 struct glGetMinmaxParameterivEXT_params
8903 TEB *teb;
8904 GLenum target;
8905 GLenum pname;
8906 GLint *params;
8909 struct glGetMultiTexEnvfvEXT_params
8911 TEB *teb;
8912 GLenum texunit;
8913 GLenum target;
8914 GLenum pname;
8915 GLfloat *params;
8918 struct glGetMultiTexEnvivEXT_params
8920 TEB *teb;
8921 GLenum texunit;
8922 GLenum target;
8923 GLenum pname;
8924 GLint *params;
8927 struct glGetMultiTexGendvEXT_params
8929 TEB *teb;
8930 GLenum texunit;
8931 GLenum coord;
8932 GLenum pname;
8933 GLdouble *params;
8936 struct glGetMultiTexGenfvEXT_params
8938 TEB *teb;
8939 GLenum texunit;
8940 GLenum coord;
8941 GLenum pname;
8942 GLfloat *params;
8945 struct glGetMultiTexGenivEXT_params
8947 TEB *teb;
8948 GLenum texunit;
8949 GLenum coord;
8950 GLenum pname;
8951 GLint *params;
8954 struct glGetMultiTexImageEXT_params
8956 TEB *teb;
8957 GLenum texunit;
8958 GLenum target;
8959 GLint level;
8960 GLenum format;
8961 GLenum type;
8962 void *pixels;
8965 struct glGetMultiTexLevelParameterfvEXT_params
8967 TEB *teb;
8968 GLenum texunit;
8969 GLenum target;
8970 GLint level;
8971 GLenum pname;
8972 GLfloat *params;
8975 struct glGetMultiTexLevelParameterivEXT_params
8977 TEB *teb;
8978 GLenum texunit;
8979 GLenum target;
8980 GLint level;
8981 GLenum pname;
8982 GLint *params;
8985 struct glGetMultiTexParameterIivEXT_params
8987 TEB *teb;
8988 GLenum texunit;
8989 GLenum target;
8990 GLenum pname;
8991 GLint *params;
8994 struct glGetMultiTexParameterIuivEXT_params
8996 TEB *teb;
8997 GLenum texunit;
8998 GLenum target;
8999 GLenum pname;
9000 GLuint *params;
9003 struct glGetMultiTexParameterfvEXT_params
9005 TEB *teb;
9006 GLenum texunit;
9007 GLenum target;
9008 GLenum pname;
9009 GLfloat *params;
9012 struct glGetMultiTexParameterivEXT_params
9014 TEB *teb;
9015 GLenum texunit;
9016 GLenum target;
9017 GLenum pname;
9018 GLint *params;
9021 struct glGetMultisamplefv_params
9023 TEB *teb;
9024 GLenum pname;
9025 GLuint index;
9026 GLfloat *val;
9029 struct glGetMultisamplefvNV_params
9031 TEB *teb;
9032 GLenum pname;
9033 GLuint index;
9034 GLfloat *val;
9037 struct glGetNamedBufferParameteri64v_params
9039 TEB *teb;
9040 GLuint buffer;
9041 GLenum pname;
9042 GLint64 *params;
9045 struct glGetNamedBufferParameteriv_params
9047 TEB *teb;
9048 GLuint buffer;
9049 GLenum pname;
9050 GLint *params;
9053 struct glGetNamedBufferParameterivEXT_params
9055 TEB *teb;
9056 GLuint buffer;
9057 GLenum pname;
9058 GLint *params;
9061 struct glGetNamedBufferParameterui64vNV_params
9063 TEB *teb;
9064 GLuint buffer;
9065 GLenum pname;
9066 GLuint64EXT *params;
9069 struct glGetNamedBufferPointerv_params
9071 TEB *teb;
9072 GLuint buffer;
9073 GLenum pname;
9074 void **params;
9077 struct glGetNamedBufferPointervEXT_params
9079 TEB *teb;
9080 GLuint buffer;
9081 GLenum pname;
9082 void **params;
9085 struct glGetNamedBufferSubData_params
9087 TEB *teb;
9088 GLuint buffer;
9089 GLintptr offset;
9090 GLsizeiptr size;
9091 void *data;
9094 struct glGetNamedBufferSubDataEXT_params
9096 TEB *teb;
9097 GLuint buffer;
9098 GLintptr offset;
9099 GLsizeiptr size;
9100 void *data;
9103 struct glGetNamedFramebufferAttachmentParameteriv_params
9105 TEB *teb;
9106 GLuint framebuffer;
9107 GLenum attachment;
9108 GLenum pname;
9109 GLint *params;
9112 struct glGetNamedFramebufferAttachmentParameterivEXT_params
9114 TEB *teb;
9115 GLuint framebuffer;
9116 GLenum attachment;
9117 GLenum pname;
9118 GLint *params;
9121 struct glGetNamedFramebufferParameterfvAMD_params
9123 TEB *teb;
9124 GLuint framebuffer;
9125 GLenum pname;
9126 GLuint numsamples;
9127 GLuint pixelindex;
9128 GLsizei size;
9129 GLfloat *values;
9132 struct glGetNamedFramebufferParameteriv_params
9134 TEB *teb;
9135 GLuint framebuffer;
9136 GLenum pname;
9137 GLint *param;
9140 struct glGetNamedFramebufferParameterivEXT_params
9142 TEB *teb;
9143 GLuint framebuffer;
9144 GLenum pname;
9145 GLint *params;
9148 struct glGetNamedProgramLocalParameterIivEXT_params
9150 TEB *teb;
9151 GLuint program;
9152 GLenum target;
9153 GLuint index;
9154 GLint *params;
9157 struct glGetNamedProgramLocalParameterIuivEXT_params
9159 TEB *teb;
9160 GLuint program;
9161 GLenum target;
9162 GLuint index;
9163 GLuint *params;
9166 struct glGetNamedProgramLocalParameterdvEXT_params
9168 TEB *teb;
9169 GLuint program;
9170 GLenum target;
9171 GLuint index;
9172 GLdouble *params;
9175 struct glGetNamedProgramLocalParameterfvEXT_params
9177 TEB *teb;
9178 GLuint program;
9179 GLenum target;
9180 GLuint index;
9181 GLfloat *params;
9184 struct glGetNamedProgramStringEXT_params
9186 TEB *teb;
9187 GLuint program;
9188 GLenum target;
9189 GLenum pname;
9190 void *string;
9193 struct glGetNamedProgramivEXT_params
9195 TEB *teb;
9196 GLuint program;
9197 GLenum target;
9198 GLenum pname;
9199 GLint *params;
9202 struct glGetNamedRenderbufferParameteriv_params
9204 TEB *teb;
9205 GLuint renderbuffer;
9206 GLenum pname;
9207 GLint *params;
9210 struct glGetNamedRenderbufferParameterivEXT_params
9212 TEB *teb;
9213 GLuint renderbuffer;
9214 GLenum pname;
9215 GLint *params;
9218 struct glGetNamedStringARB_params
9220 TEB *teb;
9221 GLint namelen;
9222 const GLchar *name;
9223 GLsizei bufSize;
9224 GLint *stringlen;
9225 GLchar *string;
9228 struct glGetNamedStringivARB_params
9230 TEB *teb;
9231 GLint namelen;
9232 const GLchar *name;
9233 GLenum pname;
9234 GLint *params;
9237 struct glGetNextPerfQueryIdINTEL_params
9239 TEB *teb;
9240 GLuint queryId;
9241 GLuint *nextQueryId;
9244 struct glGetObjectBufferfvATI_params
9246 TEB *teb;
9247 GLuint buffer;
9248 GLenum pname;
9249 GLfloat *params;
9252 struct glGetObjectBufferivATI_params
9254 TEB *teb;
9255 GLuint buffer;
9256 GLenum pname;
9257 GLint *params;
9260 struct glGetObjectLabel_params
9262 TEB *teb;
9263 GLenum identifier;
9264 GLuint name;
9265 GLsizei bufSize;
9266 GLsizei *length;
9267 GLchar *label;
9270 struct glGetObjectLabelEXT_params
9272 TEB *teb;
9273 GLenum type;
9274 GLuint object;
9275 GLsizei bufSize;
9276 GLsizei *length;
9277 GLchar *label;
9280 struct glGetObjectParameterfvARB_params
9282 TEB *teb;
9283 GLhandleARB obj;
9284 GLenum pname;
9285 GLfloat *params;
9288 struct glGetObjectParameterivAPPLE_params
9290 TEB *teb;
9291 GLenum objectType;
9292 GLuint name;
9293 GLenum pname;
9294 GLint *params;
9297 struct glGetObjectParameterivARB_params
9299 TEB *teb;
9300 GLhandleARB obj;
9301 GLenum pname;
9302 GLint *params;
9305 struct glGetObjectPtrLabel_params
9307 TEB *teb;
9308 const void *ptr;
9309 GLsizei bufSize;
9310 GLsizei *length;
9311 GLchar *label;
9314 struct glGetOcclusionQueryivNV_params
9316 TEB *teb;
9317 GLuint id;
9318 GLenum pname;
9319 GLint *params;
9322 struct glGetOcclusionQueryuivNV_params
9324 TEB *teb;
9325 GLuint id;
9326 GLenum pname;
9327 GLuint *params;
9330 struct glGetPathColorGenfvNV_params
9332 TEB *teb;
9333 GLenum color;
9334 GLenum pname;
9335 GLfloat *value;
9338 struct glGetPathColorGenivNV_params
9340 TEB *teb;
9341 GLenum color;
9342 GLenum pname;
9343 GLint *value;
9346 struct glGetPathCommandsNV_params
9348 TEB *teb;
9349 GLuint path;
9350 GLubyte *commands;
9353 struct glGetPathCoordsNV_params
9355 TEB *teb;
9356 GLuint path;
9357 GLfloat *coords;
9360 struct glGetPathDashArrayNV_params
9362 TEB *teb;
9363 GLuint path;
9364 GLfloat *dashArray;
9367 struct glGetPathLengthNV_params
9369 TEB *teb;
9370 GLuint path;
9371 GLsizei startSegment;
9372 GLsizei numSegments;
9373 GLfloat ret;
9376 struct glGetPathMetricRangeNV_params
9378 TEB *teb;
9379 GLbitfield metricQueryMask;
9380 GLuint firstPathName;
9381 GLsizei numPaths;
9382 GLsizei stride;
9383 GLfloat *metrics;
9386 struct glGetPathMetricsNV_params
9388 TEB *teb;
9389 GLbitfield metricQueryMask;
9390 GLsizei numPaths;
9391 GLenum pathNameType;
9392 const void *paths;
9393 GLuint pathBase;
9394 GLsizei stride;
9395 GLfloat *metrics;
9398 struct glGetPathParameterfvNV_params
9400 TEB *teb;
9401 GLuint path;
9402 GLenum pname;
9403 GLfloat *value;
9406 struct glGetPathParameterivNV_params
9408 TEB *teb;
9409 GLuint path;
9410 GLenum pname;
9411 GLint *value;
9414 struct glGetPathSpacingNV_params
9416 TEB *teb;
9417 GLenum pathListMode;
9418 GLsizei numPaths;
9419 GLenum pathNameType;
9420 const void *paths;
9421 GLuint pathBase;
9422 GLfloat advanceScale;
9423 GLfloat kerningScale;
9424 GLenum transformType;
9425 GLfloat *returnedSpacing;
9428 struct glGetPathTexGenfvNV_params
9430 TEB *teb;
9431 GLenum texCoordSet;
9432 GLenum pname;
9433 GLfloat *value;
9436 struct glGetPathTexGenivNV_params
9438 TEB *teb;
9439 GLenum texCoordSet;
9440 GLenum pname;
9441 GLint *value;
9444 struct glGetPerfCounterInfoINTEL_params
9446 TEB *teb;
9447 GLuint queryId;
9448 GLuint counterId;
9449 GLuint counterNameLength;
9450 GLchar *counterName;
9451 GLuint counterDescLength;
9452 GLchar *counterDesc;
9453 GLuint *counterOffset;
9454 GLuint *counterDataSize;
9455 GLuint *counterTypeEnum;
9456 GLuint *counterDataTypeEnum;
9457 GLuint64 *rawCounterMaxValue;
9460 struct glGetPerfMonitorCounterDataAMD_params
9462 TEB *teb;
9463 GLuint monitor;
9464 GLenum pname;
9465 GLsizei dataSize;
9466 GLuint *data;
9467 GLint *bytesWritten;
9470 struct glGetPerfMonitorCounterInfoAMD_params
9472 TEB *teb;
9473 GLuint group;
9474 GLuint counter;
9475 GLenum pname;
9476 void *data;
9479 struct glGetPerfMonitorCounterStringAMD_params
9481 TEB *teb;
9482 GLuint group;
9483 GLuint counter;
9484 GLsizei bufSize;
9485 GLsizei *length;
9486 GLchar *counterString;
9489 struct glGetPerfMonitorCountersAMD_params
9491 TEB *teb;
9492 GLuint group;
9493 GLint *numCounters;
9494 GLint *maxActiveCounters;
9495 GLsizei counterSize;
9496 GLuint *counters;
9499 struct glGetPerfMonitorGroupStringAMD_params
9501 TEB *teb;
9502 GLuint group;
9503 GLsizei bufSize;
9504 GLsizei *length;
9505 GLchar *groupString;
9508 struct glGetPerfMonitorGroupsAMD_params
9510 TEB *teb;
9511 GLint *numGroups;
9512 GLsizei groupsSize;
9513 GLuint *groups;
9516 struct glGetPerfQueryDataINTEL_params
9518 TEB *teb;
9519 GLuint queryHandle;
9520 GLuint flags;
9521 GLsizei dataSize;
9522 void *data;
9523 GLuint *bytesWritten;
9526 struct glGetPerfQueryIdByNameINTEL_params
9528 TEB *teb;
9529 GLchar *queryName;
9530 GLuint *queryId;
9533 struct glGetPerfQueryInfoINTEL_params
9535 TEB *teb;
9536 GLuint queryId;
9537 GLuint queryNameLength;
9538 GLchar *queryName;
9539 GLuint *dataSize;
9540 GLuint *noCounters;
9541 GLuint *noInstances;
9542 GLuint *capsMask;
9545 struct glGetPixelMapxv_params
9547 TEB *teb;
9548 GLenum map;
9549 GLint size;
9550 GLfixed *values;
9553 struct glGetPixelTexGenParameterfvSGIS_params
9555 TEB *teb;
9556 GLenum pname;
9557 GLfloat *params;
9560 struct glGetPixelTexGenParameterivSGIS_params
9562 TEB *teb;
9563 GLenum pname;
9564 GLint *params;
9567 struct glGetPixelTransformParameterfvEXT_params
9569 TEB *teb;
9570 GLenum target;
9571 GLenum pname;
9572 GLfloat *params;
9575 struct glGetPixelTransformParameterivEXT_params
9577 TEB *teb;
9578 GLenum target;
9579 GLenum pname;
9580 GLint *params;
9583 struct glGetPointerIndexedvEXT_params
9585 TEB *teb;
9586 GLenum target;
9587 GLuint index;
9588 void **data;
9591 struct glGetPointeri_vEXT_params
9593 TEB *teb;
9594 GLenum pname;
9595 GLuint index;
9596 void **params;
9599 struct glGetPointervEXT_params
9601 TEB *teb;
9602 GLenum pname;
9603 void **params;
9606 struct glGetProgramBinary_params
9608 TEB *teb;
9609 GLuint program;
9610 GLsizei bufSize;
9611 GLsizei *length;
9612 GLenum *binaryFormat;
9613 void *binary;
9616 struct glGetProgramEnvParameterIivNV_params
9618 TEB *teb;
9619 GLenum target;
9620 GLuint index;
9621 GLint *params;
9624 struct glGetProgramEnvParameterIuivNV_params
9626 TEB *teb;
9627 GLenum target;
9628 GLuint index;
9629 GLuint *params;
9632 struct glGetProgramEnvParameterdvARB_params
9634 TEB *teb;
9635 GLenum target;
9636 GLuint index;
9637 GLdouble *params;
9640 struct glGetProgramEnvParameterfvARB_params
9642 TEB *teb;
9643 GLenum target;
9644 GLuint index;
9645 GLfloat *params;
9648 struct glGetProgramInfoLog_params
9650 TEB *teb;
9651 GLuint program;
9652 GLsizei bufSize;
9653 GLsizei *length;
9654 GLchar *infoLog;
9657 struct glGetProgramInterfaceiv_params
9659 TEB *teb;
9660 GLuint program;
9661 GLenum programInterface;
9662 GLenum pname;
9663 GLint *params;
9666 struct glGetProgramLocalParameterIivNV_params
9668 TEB *teb;
9669 GLenum target;
9670 GLuint index;
9671 GLint *params;
9674 struct glGetProgramLocalParameterIuivNV_params
9676 TEB *teb;
9677 GLenum target;
9678 GLuint index;
9679 GLuint *params;
9682 struct glGetProgramLocalParameterdvARB_params
9684 TEB *teb;
9685 GLenum target;
9686 GLuint index;
9687 GLdouble *params;
9690 struct glGetProgramLocalParameterfvARB_params
9692 TEB *teb;
9693 GLenum target;
9694 GLuint index;
9695 GLfloat *params;
9698 struct glGetProgramNamedParameterdvNV_params
9700 TEB *teb;
9701 GLuint id;
9702 GLsizei len;
9703 const GLubyte *name;
9704 GLdouble *params;
9707 struct glGetProgramNamedParameterfvNV_params
9709 TEB *teb;
9710 GLuint id;
9711 GLsizei len;
9712 const GLubyte *name;
9713 GLfloat *params;
9716 struct glGetProgramParameterdvNV_params
9718 TEB *teb;
9719 GLenum target;
9720 GLuint index;
9721 GLenum pname;
9722 GLdouble *params;
9725 struct glGetProgramParameterfvNV_params
9727 TEB *teb;
9728 GLenum target;
9729 GLuint index;
9730 GLenum pname;
9731 GLfloat *params;
9734 struct glGetProgramPipelineInfoLog_params
9736 TEB *teb;
9737 GLuint pipeline;
9738 GLsizei bufSize;
9739 GLsizei *length;
9740 GLchar *infoLog;
9743 struct glGetProgramPipelineiv_params
9745 TEB *teb;
9746 GLuint pipeline;
9747 GLenum pname;
9748 GLint *params;
9751 struct glGetProgramResourceIndex_params
9753 TEB *teb;
9754 GLuint program;
9755 GLenum programInterface;
9756 const GLchar *name;
9757 GLuint ret;
9760 struct glGetProgramResourceLocation_params
9762 TEB *teb;
9763 GLuint program;
9764 GLenum programInterface;
9765 const GLchar *name;
9766 GLint ret;
9769 struct glGetProgramResourceLocationIndex_params
9771 TEB *teb;
9772 GLuint program;
9773 GLenum programInterface;
9774 const GLchar *name;
9775 GLint ret;
9778 struct glGetProgramResourceName_params
9780 TEB *teb;
9781 GLuint program;
9782 GLenum programInterface;
9783 GLuint index;
9784 GLsizei bufSize;
9785 GLsizei *length;
9786 GLchar *name;
9789 struct glGetProgramResourcefvNV_params
9791 TEB *teb;
9792 GLuint program;
9793 GLenum programInterface;
9794 GLuint index;
9795 GLsizei propCount;
9796 const GLenum *props;
9797 GLsizei count;
9798 GLsizei *length;
9799 GLfloat *params;
9802 struct glGetProgramResourceiv_params
9804 TEB *teb;
9805 GLuint program;
9806 GLenum programInterface;
9807 GLuint index;
9808 GLsizei propCount;
9809 const GLenum *props;
9810 GLsizei count;
9811 GLsizei *length;
9812 GLint *params;
9815 struct glGetProgramStageiv_params
9817 TEB *teb;
9818 GLuint program;
9819 GLenum shadertype;
9820 GLenum pname;
9821 GLint *values;
9824 struct glGetProgramStringARB_params
9826 TEB *teb;
9827 GLenum target;
9828 GLenum pname;
9829 void *string;
9832 struct glGetProgramStringNV_params
9834 TEB *teb;
9835 GLuint id;
9836 GLenum pname;
9837 GLubyte *program;
9840 struct glGetProgramSubroutineParameteruivNV_params
9842 TEB *teb;
9843 GLenum target;
9844 GLuint index;
9845 GLuint *param;
9848 struct glGetProgramiv_params
9850 TEB *teb;
9851 GLuint program;
9852 GLenum pname;
9853 GLint *params;
9856 struct glGetProgramivARB_params
9858 TEB *teb;
9859 GLenum target;
9860 GLenum pname;
9861 GLint *params;
9864 struct glGetProgramivNV_params
9866 TEB *teb;
9867 GLuint id;
9868 GLenum pname;
9869 GLint *params;
9872 struct glGetQueryBufferObjecti64v_params
9874 TEB *teb;
9875 GLuint id;
9876 GLuint buffer;
9877 GLenum pname;
9878 GLintptr offset;
9881 struct glGetQueryBufferObjectiv_params
9883 TEB *teb;
9884 GLuint id;
9885 GLuint buffer;
9886 GLenum pname;
9887 GLintptr offset;
9890 struct glGetQueryBufferObjectui64v_params
9892 TEB *teb;
9893 GLuint id;
9894 GLuint buffer;
9895 GLenum pname;
9896 GLintptr offset;
9899 struct glGetQueryBufferObjectuiv_params
9901 TEB *teb;
9902 GLuint id;
9903 GLuint buffer;
9904 GLenum pname;
9905 GLintptr offset;
9908 struct glGetQueryIndexediv_params
9910 TEB *teb;
9911 GLenum target;
9912 GLuint index;
9913 GLenum pname;
9914 GLint *params;
9917 struct glGetQueryObjecti64v_params
9919 TEB *teb;
9920 GLuint id;
9921 GLenum pname;
9922 GLint64 *params;
9925 struct glGetQueryObjecti64vEXT_params
9927 TEB *teb;
9928 GLuint id;
9929 GLenum pname;
9930 GLint64 *params;
9933 struct glGetQueryObjectiv_params
9935 TEB *teb;
9936 GLuint id;
9937 GLenum pname;
9938 GLint *params;
9941 struct glGetQueryObjectivARB_params
9943 TEB *teb;
9944 GLuint id;
9945 GLenum pname;
9946 GLint *params;
9949 struct glGetQueryObjectui64v_params
9951 TEB *teb;
9952 GLuint id;
9953 GLenum pname;
9954 GLuint64 *params;
9957 struct glGetQueryObjectui64vEXT_params
9959 TEB *teb;
9960 GLuint id;
9961 GLenum pname;
9962 GLuint64 *params;
9965 struct glGetQueryObjectuiv_params
9967 TEB *teb;
9968 GLuint id;
9969 GLenum pname;
9970 GLuint *params;
9973 struct glGetQueryObjectuivARB_params
9975 TEB *teb;
9976 GLuint id;
9977 GLenum pname;
9978 GLuint *params;
9981 struct glGetQueryiv_params
9983 TEB *teb;
9984 GLenum target;
9985 GLenum pname;
9986 GLint *params;
9989 struct glGetQueryivARB_params
9991 TEB *teb;
9992 GLenum target;
9993 GLenum pname;
9994 GLint *params;
9997 struct glGetRenderbufferParameteriv_params
9999 TEB *teb;
10000 GLenum target;
10001 GLenum pname;
10002 GLint *params;
10005 struct glGetRenderbufferParameterivEXT_params
10007 TEB *teb;
10008 GLenum target;
10009 GLenum pname;
10010 GLint *params;
10013 struct glGetSamplerParameterIiv_params
10015 TEB *teb;
10016 GLuint sampler;
10017 GLenum pname;
10018 GLint *params;
10021 struct glGetSamplerParameterIuiv_params
10023 TEB *teb;
10024 GLuint sampler;
10025 GLenum pname;
10026 GLuint *params;
10029 struct glGetSamplerParameterfv_params
10031 TEB *teb;
10032 GLuint sampler;
10033 GLenum pname;
10034 GLfloat *params;
10037 struct glGetSamplerParameteriv_params
10039 TEB *teb;
10040 GLuint sampler;
10041 GLenum pname;
10042 GLint *params;
10045 struct glGetSemaphoreParameterui64vEXT_params
10047 TEB *teb;
10048 GLuint semaphore;
10049 GLenum pname;
10050 GLuint64 *params;
10053 struct glGetSeparableFilter_params
10055 TEB *teb;
10056 GLenum target;
10057 GLenum format;
10058 GLenum type;
10059 void *row;
10060 void *column;
10061 void *span;
10064 struct glGetSeparableFilterEXT_params
10066 TEB *teb;
10067 GLenum target;
10068 GLenum format;
10069 GLenum type;
10070 void *row;
10071 void *column;
10072 void *span;
10075 struct glGetShaderInfoLog_params
10077 TEB *teb;
10078 GLuint shader;
10079 GLsizei bufSize;
10080 GLsizei *length;
10081 GLchar *infoLog;
10084 struct glGetShaderPrecisionFormat_params
10086 TEB *teb;
10087 GLenum shadertype;
10088 GLenum precisiontype;
10089 GLint *range;
10090 GLint *precision;
10093 struct glGetShaderSource_params
10095 TEB *teb;
10096 GLuint shader;
10097 GLsizei bufSize;
10098 GLsizei *length;
10099 GLchar *source;
10102 struct glGetShaderSourceARB_params
10104 TEB *teb;
10105 GLhandleARB obj;
10106 GLsizei maxLength;
10107 GLsizei *length;
10108 GLcharARB *source;
10111 struct glGetShaderiv_params
10113 TEB *teb;
10114 GLuint shader;
10115 GLenum pname;
10116 GLint *params;
10119 struct glGetShadingRateImagePaletteNV_params
10121 TEB *teb;
10122 GLuint viewport;
10123 GLuint entry;
10124 GLenum *rate;
10127 struct glGetShadingRateSampleLocationivNV_params
10129 TEB *teb;
10130 GLenum rate;
10131 GLuint samples;
10132 GLuint index;
10133 GLint *location;
10136 struct glGetSharpenTexFuncSGIS_params
10138 TEB *teb;
10139 GLenum target;
10140 GLfloat *points;
10143 struct glGetStageIndexNV_params
10145 TEB *teb;
10146 GLenum shadertype;
10147 GLushort ret;
10150 struct glGetStringi_params
10152 TEB *teb;
10153 GLenum name;
10154 GLuint index;
10155 const GLubyte *ret;
10158 struct glGetSubroutineIndex_params
10160 TEB *teb;
10161 GLuint program;
10162 GLenum shadertype;
10163 const GLchar *name;
10164 GLuint ret;
10167 struct glGetSubroutineUniformLocation_params
10169 TEB *teb;
10170 GLuint program;
10171 GLenum shadertype;
10172 const GLchar *name;
10173 GLint ret;
10176 struct glGetSynciv_params
10178 TEB *teb;
10179 GLsync sync;
10180 GLenum pname;
10181 GLsizei count;
10182 GLsizei *length;
10183 GLint *values;
10186 struct glGetTexBumpParameterfvATI_params
10188 TEB *teb;
10189 GLenum pname;
10190 GLfloat *param;
10193 struct glGetTexBumpParameterivATI_params
10195 TEB *teb;
10196 GLenum pname;
10197 GLint *param;
10200 struct glGetTexEnvxvOES_params
10202 TEB *teb;
10203 GLenum target;
10204 GLenum pname;
10205 GLfixed *params;
10208 struct glGetTexFilterFuncSGIS_params
10210 TEB *teb;
10211 GLenum target;
10212 GLenum filter;
10213 GLfloat *weights;
10216 struct glGetTexGenxvOES_params
10218 TEB *teb;
10219 GLenum coord;
10220 GLenum pname;
10221 GLfixed *params;
10224 struct glGetTexLevelParameterxvOES_params
10226 TEB *teb;
10227 GLenum target;
10228 GLint level;
10229 GLenum pname;
10230 GLfixed *params;
10233 struct glGetTexParameterIiv_params
10235 TEB *teb;
10236 GLenum target;
10237 GLenum pname;
10238 GLint *params;
10241 struct glGetTexParameterIivEXT_params
10243 TEB *teb;
10244 GLenum target;
10245 GLenum pname;
10246 GLint *params;
10249 struct glGetTexParameterIuiv_params
10251 TEB *teb;
10252 GLenum target;
10253 GLenum pname;
10254 GLuint *params;
10257 struct glGetTexParameterIuivEXT_params
10259 TEB *teb;
10260 GLenum target;
10261 GLenum pname;
10262 GLuint *params;
10265 struct glGetTexParameterPointervAPPLE_params
10267 TEB *teb;
10268 GLenum target;
10269 GLenum pname;
10270 void **params;
10273 struct glGetTexParameterxvOES_params
10275 TEB *teb;
10276 GLenum target;
10277 GLenum pname;
10278 GLfixed *params;
10281 struct glGetTextureHandleARB_params
10283 TEB *teb;
10284 GLuint texture;
10285 GLuint64 ret;
10288 struct glGetTextureHandleNV_params
10290 TEB *teb;
10291 GLuint texture;
10292 GLuint64 ret;
10295 struct glGetTextureImage_params
10297 TEB *teb;
10298 GLuint texture;
10299 GLint level;
10300 GLenum format;
10301 GLenum type;
10302 GLsizei bufSize;
10303 void *pixels;
10306 struct glGetTextureImageEXT_params
10308 TEB *teb;
10309 GLuint texture;
10310 GLenum target;
10311 GLint level;
10312 GLenum format;
10313 GLenum type;
10314 void *pixels;
10317 struct glGetTextureLevelParameterfv_params
10319 TEB *teb;
10320 GLuint texture;
10321 GLint level;
10322 GLenum pname;
10323 GLfloat *params;
10326 struct glGetTextureLevelParameterfvEXT_params
10328 TEB *teb;
10329 GLuint texture;
10330 GLenum target;
10331 GLint level;
10332 GLenum pname;
10333 GLfloat *params;
10336 struct glGetTextureLevelParameteriv_params
10338 TEB *teb;
10339 GLuint texture;
10340 GLint level;
10341 GLenum pname;
10342 GLint *params;
10345 struct glGetTextureLevelParameterivEXT_params
10347 TEB *teb;
10348 GLuint texture;
10349 GLenum target;
10350 GLint level;
10351 GLenum pname;
10352 GLint *params;
10355 struct glGetTextureParameterIiv_params
10357 TEB *teb;
10358 GLuint texture;
10359 GLenum pname;
10360 GLint *params;
10363 struct glGetTextureParameterIivEXT_params
10365 TEB *teb;
10366 GLuint texture;
10367 GLenum target;
10368 GLenum pname;
10369 GLint *params;
10372 struct glGetTextureParameterIuiv_params
10374 TEB *teb;
10375 GLuint texture;
10376 GLenum pname;
10377 GLuint *params;
10380 struct glGetTextureParameterIuivEXT_params
10382 TEB *teb;
10383 GLuint texture;
10384 GLenum target;
10385 GLenum pname;
10386 GLuint *params;
10389 struct glGetTextureParameterfv_params
10391 TEB *teb;
10392 GLuint texture;
10393 GLenum pname;
10394 GLfloat *params;
10397 struct glGetTextureParameterfvEXT_params
10399 TEB *teb;
10400 GLuint texture;
10401 GLenum target;
10402 GLenum pname;
10403 GLfloat *params;
10406 struct glGetTextureParameteriv_params
10408 TEB *teb;
10409 GLuint texture;
10410 GLenum pname;
10411 GLint *params;
10414 struct glGetTextureParameterivEXT_params
10416 TEB *teb;
10417 GLuint texture;
10418 GLenum target;
10419 GLenum pname;
10420 GLint *params;
10423 struct glGetTextureSamplerHandleARB_params
10425 TEB *teb;
10426 GLuint texture;
10427 GLuint sampler;
10428 GLuint64 ret;
10431 struct glGetTextureSamplerHandleNV_params
10433 TEB *teb;
10434 GLuint texture;
10435 GLuint sampler;
10436 GLuint64 ret;
10439 struct glGetTextureSubImage_params
10441 TEB *teb;
10442 GLuint texture;
10443 GLint level;
10444 GLint xoffset;
10445 GLint yoffset;
10446 GLint zoffset;
10447 GLsizei width;
10448 GLsizei height;
10449 GLsizei depth;
10450 GLenum format;
10451 GLenum type;
10452 GLsizei bufSize;
10453 void *pixels;
10456 struct glGetTrackMatrixivNV_params
10458 TEB *teb;
10459 GLenum target;
10460 GLuint address;
10461 GLenum pname;
10462 GLint *params;
10465 struct glGetTransformFeedbackVarying_params
10467 TEB *teb;
10468 GLuint program;
10469 GLuint index;
10470 GLsizei bufSize;
10471 GLsizei *length;
10472 GLsizei *size;
10473 GLenum *type;
10474 GLchar *name;
10477 struct glGetTransformFeedbackVaryingEXT_params
10479 TEB *teb;
10480 GLuint program;
10481 GLuint index;
10482 GLsizei bufSize;
10483 GLsizei *length;
10484 GLsizei *size;
10485 GLenum *type;
10486 GLchar *name;
10489 struct glGetTransformFeedbackVaryingNV_params
10491 TEB *teb;
10492 GLuint program;
10493 GLuint index;
10494 GLint *location;
10497 struct glGetTransformFeedbacki64_v_params
10499 TEB *teb;
10500 GLuint xfb;
10501 GLenum pname;
10502 GLuint index;
10503 GLint64 *param;
10506 struct glGetTransformFeedbacki_v_params
10508 TEB *teb;
10509 GLuint xfb;
10510 GLenum pname;
10511 GLuint index;
10512 GLint *param;
10515 struct glGetTransformFeedbackiv_params
10517 TEB *teb;
10518 GLuint xfb;
10519 GLenum pname;
10520 GLint *param;
10523 struct glGetUniformBlockIndex_params
10525 TEB *teb;
10526 GLuint program;
10527 const GLchar *uniformBlockName;
10528 GLuint ret;
10531 struct glGetUniformBufferSizeEXT_params
10533 TEB *teb;
10534 GLuint program;
10535 GLint location;
10536 GLint ret;
10539 struct glGetUniformIndices_params
10541 TEB *teb;
10542 GLuint program;
10543 GLsizei uniformCount;
10544 const GLchar *const*uniformNames;
10545 GLuint *uniformIndices;
10548 struct glGetUniformLocation_params
10550 TEB *teb;
10551 GLuint program;
10552 const GLchar *name;
10553 GLint ret;
10556 struct glGetUniformLocationARB_params
10558 TEB *teb;
10559 GLhandleARB programObj;
10560 const GLcharARB *name;
10561 GLint ret;
10564 struct glGetUniformOffsetEXT_params
10566 TEB *teb;
10567 GLuint program;
10568 GLint location;
10569 GLintptr ret;
10572 struct glGetUniformSubroutineuiv_params
10574 TEB *teb;
10575 GLenum shadertype;
10576 GLint location;
10577 GLuint *params;
10580 struct glGetUniformdv_params
10582 TEB *teb;
10583 GLuint program;
10584 GLint location;
10585 GLdouble *params;
10588 struct glGetUniformfv_params
10590 TEB *teb;
10591 GLuint program;
10592 GLint location;
10593 GLfloat *params;
10596 struct glGetUniformfvARB_params
10598 TEB *teb;
10599 GLhandleARB programObj;
10600 GLint location;
10601 GLfloat *params;
10604 struct glGetUniformi64vARB_params
10606 TEB *teb;
10607 GLuint program;
10608 GLint location;
10609 GLint64 *params;
10612 struct glGetUniformi64vNV_params
10614 TEB *teb;
10615 GLuint program;
10616 GLint location;
10617 GLint64EXT *params;
10620 struct glGetUniformiv_params
10622 TEB *teb;
10623 GLuint program;
10624 GLint location;
10625 GLint *params;
10628 struct glGetUniformivARB_params
10630 TEB *teb;
10631 GLhandleARB programObj;
10632 GLint location;
10633 GLint *params;
10636 struct glGetUniformui64vARB_params
10638 TEB *teb;
10639 GLuint program;
10640 GLint location;
10641 GLuint64 *params;
10644 struct glGetUniformui64vNV_params
10646 TEB *teb;
10647 GLuint program;
10648 GLint location;
10649 GLuint64EXT *params;
10652 struct glGetUniformuiv_params
10654 TEB *teb;
10655 GLuint program;
10656 GLint location;
10657 GLuint *params;
10660 struct glGetUniformuivEXT_params
10662 TEB *teb;
10663 GLuint program;
10664 GLint location;
10665 GLuint *params;
10668 struct glGetUnsignedBytei_vEXT_params
10670 TEB *teb;
10671 GLenum target;
10672 GLuint index;
10673 GLubyte *data;
10676 struct glGetUnsignedBytevEXT_params
10678 TEB *teb;
10679 GLenum pname;
10680 GLubyte *data;
10683 struct glGetVariantArrayObjectfvATI_params
10685 TEB *teb;
10686 GLuint id;
10687 GLenum pname;
10688 GLfloat *params;
10691 struct glGetVariantArrayObjectivATI_params
10693 TEB *teb;
10694 GLuint id;
10695 GLenum pname;
10696 GLint *params;
10699 struct glGetVariantBooleanvEXT_params
10701 TEB *teb;
10702 GLuint id;
10703 GLenum value;
10704 GLboolean *data;
10707 struct glGetVariantFloatvEXT_params
10709 TEB *teb;
10710 GLuint id;
10711 GLenum value;
10712 GLfloat *data;
10715 struct glGetVariantIntegervEXT_params
10717 TEB *teb;
10718 GLuint id;
10719 GLenum value;
10720 GLint *data;
10723 struct glGetVariantPointervEXT_params
10725 TEB *teb;
10726 GLuint id;
10727 GLenum value;
10728 void **data;
10731 struct glGetVaryingLocationNV_params
10733 TEB *teb;
10734 GLuint program;
10735 const GLchar *name;
10736 GLint ret;
10739 struct glGetVertexArrayIndexed64iv_params
10741 TEB *teb;
10742 GLuint vaobj;
10743 GLuint index;
10744 GLenum pname;
10745 GLint64 *param;
10748 struct glGetVertexArrayIndexediv_params
10750 TEB *teb;
10751 GLuint vaobj;
10752 GLuint index;
10753 GLenum pname;
10754 GLint *param;
10757 struct glGetVertexArrayIntegeri_vEXT_params
10759 TEB *teb;
10760 GLuint vaobj;
10761 GLuint index;
10762 GLenum pname;
10763 GLint *param;
10766 struct glGetVertexArrayIntegervEXT_params
10768 TEB *teb;
10769 GLuint vaobj;
10770 GLenum pname;
10771 GLint *param;
10774 struct glGetVertexArrayPointeri_vEXT_params
10776 TEB *teb;
10777 GLuint vaobj;
10778 GLuint index;
10779 GLenum pname;
10780 void **param;
10783 struct glGetVertexArrayPointervEXT_params
10785 TEB *teb;
10786 GLuint vaobj;
10787 GLenum pname;
10788 void **param;
10791 struct glGetVertexArrayiv_params
10793 TEB *teb;
10794 GLuint vaobj;
10795 GLenum pname;
10796 GLint *param;
10799 struct glGetVertexAttribArrayObjectfvATI_params
10801 TEB *teb;
10802 GLuint index;
10803 GLenum pname;
10804 GLfloat *params;
10807 struct glGetVertexAttribArrayObjectivATI_params
10809 TEB *teb;
10810 GLuint index;
10811 GLenum pname;
10812 GLint *params;
10815 struct glGetVertexAttribIiv_params
10817 TEB *teb;
10818 GLuint index;
10819 GLenum pname;
10820 GLint *params;
10823 struct glGetVertexAttribIivEXT_params
10825 TEB *teb;
10826 GLuint index;
10827 GLenum pname;
10828 GLint *params;
10831 struct glGetVertexAttribIuiv_params
10833 TEB *teb;
10834 GLuint index;
10835 GLenum pname;
10836 GLuint *params;
10839 struct glGetVertexAttribIuivEXT_params
10841 TEB *teb;
10842 GLuint index;
10843 GLenum pname;
10844 GLuint *params;
10847 struct glGetVertexAttribLdv_params
10849 TEB *teb;
10850 GLuint index;
10851 GLenum pname;
10852 GLdouble *params;
10855 struct glGetVertexAttribLdvEXT_params
10857 TEB *teb;
10858 GLuint index;
10859 GLenum pname;
10860 GLdouble *params;
10863 struct glGetVertexAttribLi64vNV_params
10865 TEB *teb;
10866 GLuint index;
10867 GLenum pname;
10868 GLint64EXT *params;
10871 struct glGetVertexAttribLui64vARB_params
10873 TEB *teb;
10874 GLuint index;
10875 GLenum pname;
10876 GLuint64EXT *params;
10879 struct glGetVertexAttribLui64vNV_params
10881 TEB *teb;
10882 GLuint index;
10883 GLenum pname;
10884 GLuint64EXT *params;
10887 struct glGetVertexAttribPointerv_params
10889 TEB *teb;
10890 GLuint index;
10891 GLenum pname;
10892 void **pointer;
10895 struct glGetVertexAttribPointervARB_params
10897 TEB *teb;
10898 GLuint index;
10899 GLenum pname;
10900 void **pointer;
10903 struct glGetVertexAttribPointervNV_params
10905 TEB *teb;
10906 GLuint index;
10907 GLenum pname;
10908 void **pointer;
10911 struct glGetVertexAttribdv_params
10913 TEB *teb;
10914 GLuint index;
10915 GLenum pname;
10916 GLdouble *params;
10919 struct glGetVertexAttribdvARB_params
10921 TEB *teb;
10922 GLuint index;
10923 GLenum pname;
10924 GLdouble *params;
10927 struct glGetVertexAttribdvNV_params
10929 TEB *teb;
10930 GLuint index;
10931 GLenum pname;
10932 GLdouble *params;
10935 struct glGetVertexAttribfv_params
10937 TEB *teb;
10938 GLuint index;
10939 GLenum pname;
10940 GLfloat *params;
10943 struct glGetVertexAttribfvARB_params
10945 TEB *teb;
10946 GLuint index;
10947 GLenum pname;
10948 GLfloat *params;
10951 struct glGetVertexAttribfvNV_params
10953 TEB *teb;
10954 GLuint index;
10955 GLenum pname;
10956 GLfloat *params;
10959 struct glGetVertexAttribiv_params
10961 TEB *teb;
10962 GLuint index;
10963 GLenum pname;
10964 GLint *params;
10967 struct glGetVertexAttribivARB_params
10969 TEB *teb;
10970 GLuint index;
10971 GLenum pname;
10972 GLint *params;
10975 struct glGetVertexAttribivNV_params
10977 TEB *teb;
10978 GLuint index;
10979 GLenum pname;
10980 GLint *params;
10983 struct glGetVideoCaptureStreamdvNV_params
10985 TEB *teb;
10986 GLuint video_capture_slot;
10987 GLuint stream;
10988 GLenum pname;
10989 GLdouble *params;
10992 struct glGetVideoCaptureStreamfvNV_params
10994 TEB *teb;
10995 GLuint video_capture_slot;
10996 GLuint stream;
10997 GLenum pname;
10998 GLfloat *params;
11001 struct glGetVideoCaptureStreamivNV_params
11003 TEB *teb;
11004 GLuint video_capture_slot;
11005 GLuint stream;
11006 GLenum pname;
11007 GLint *params;
11010 struct glGetVideoCaptureivNV_params
11012 TEB *teb;
11013 GLuint video_capture_slot;
11014 GLenum pname;
11015 GLint *params;
11018 struct glGetVideoi64vNV_params
11020 TEB *teb;
11021 GLuint video_slot;
11022 GLenum pname;
11023 GLint64EXT *params;
11026 struct glGetVideoivNV_params
11028 TEB *teb;
11029 GLuint video_slot;
11030 GLenum pname;
11031 GLint *params;
11034 struct glGetVideoui64vNV_params
11036 TEB *teb;
11037 GLuint video_slot;
11038 GLenum pname;
11039 GLuint64EXT *params;
11042 struct glGetVideouivNV_params
11044 TEB *teb;
11045 GLuint video_slot;
11046 GLenum pname;
11047 GLuint *params;
11050 struct glGetVkProcAddrNV_params
11052 TEB *teb;
11053 const GLchar *name;
11054 GLVULKANPROCNV ret;
11057 struct glGetnColorTable_params
11059 TEB *teb;
11060 GLenum target;
11061 GLenum format;
11062 GLenum type;
11063 GLsizei bufSize;
11064 void *table;
11067 struct glGetnColorTableARB_params
11069 TEB *teb;
11070 GLenum target;
11071 GLenum format;
11072 GLenum type;
11073 GLsizei bufSize;
11074 void *table;
11077 struct glGetnCompressedTexImage_params
11079 TEB *teb;
11080 GLenum target;
11081 GLint lod;
11082 GLsizei bufSize;
11083 void *pixels;
11086 struct glGetnCompressedTexImageARB_params
11088 TEB *teb;
11089 GLenum target;
11090 GLint lod;
11091 GLsizei bufSize;
11092 void *img;
11095 struct glGetnConvolutionFilter_params
11097 TEB *teb;
11098 GLenum target;
11099 GLenum format;
11100 GLenum type;
11101 GLsizei bufSize;
11102 void *image;
11105 struct glGetnConvolutionFilterARB_params
11107 TEB *teb;
11108 GLenum target;
11109 GLenum format;
11110 GLenum type;
11111 GLsizei bufSize;
11112 void *image;
11115 struct glGetnHistogram_params
11117 TEB *teb;
11118 GLenum target;
11119 GLboolean reset;
11120 GLenum format;
11121 GLenum type;
11122 GLsizei bufSize;
11123 void *values;
11126 struct glGetnHistogramARB_params
11128 TEB *teb;
11129 GLenum target;
11130 GLboolean reset;
11131 GLenum format;
11132 GLenum type;
11133 GLsizei bufSize;
11134 void *values;
11137 struct glGetnMapdv_params
11139 TEB *teb;
11140 GLenum target;
11141 GLenum query;
11142 GLsizei bufSize;
11143 GLdouble *v;
11146 struct glGetnMapdvARB_params
11148 TEB *teb;
11149 GLenum target;
11150 GLenum query;
11151 GLsizei bufSize;
11152 GLdouble *v;
11155 struct glGetnMapfv_params
11157 TEB *teb;
11158 GLenum target;
11159 GLenum query;
11160 GLsizei bufSize;
11161 GLfloat *v;
11164 struct glGetnMapfvARB_params
11166 TEB *teb;
11167 GLenum target;
11168 GLenum query;
11169 GLsizei bufSize;
11170 GLfloat *v;
11173 struct glGetnMapiv_params
11175 TEB *teb;
11176 GLenum target;
11177 GLenum query;
11178 GLsizei bufSize;
11179 GLint *v;
11182 struct glGetnMapivARB_params
11184 TEB *teb;
11185 GLenum target;
11186 GLenum query;
11187 GLsizei bufSize;
11188 GLint *v;
11191 struct glGetnMinmax_params
11193 TEB *teb;
11194 GLenum target;
11195 GLboolean reset;
11196 GLenum format;
11197 GLenum type;
11198 GLsizei bufSize;
11199 void *values;
11202 struct glGetnMinmaxARB_params
11204 TEB *teb;
11205 GLenum target;
11206 GLboolean reset;
11207 GLenum format;
11208 GLenum type;
11209 GLsizei bufSize;
11210 void *values;
11213 struct glGetnPixelMapfv_params
11215 TEB *teb;
11216 GLenum map;
11217 GLsizei bufSize;
11218 GLfloat *values;
11221 struct glGetnPixelMapfvARB_params
11223 TEB *teb;
11224 GLenum map;
11225 GLsizei bufSize;
11226 GLfloat *values;
11229 struct glGetnPixelMapuiv_params
11231 TEB *teb;
11232 GLenum map;
11233 GLsizei bufSize;
11234 GLuint *values;
11237 struct glGetnPixelMapuivARB_params
11239 TEB *teb;
11240 GLenum map;
11241 GLsizei bufSize;
11242 GLuint *values;
11245 struct glGetnPixelMapusv_params
11247 TEB *teb;
11248 GLenum map;
11249 GLsizei bufSize;
11250 GLushort *values;
11253 struct glGetnPixelMapusvARB_params
11255 TEB *teb;
11256 GLenum map;
11257 GLsizei bufSize;
11258 GLushort *values;
11261 struct glGetnPolygonStipple_params
11263 TEB *teb;
11264 GLsizei bufSize;
11265 GLubyte *pattern;
11268 struct glGetnPolygonStippleARB_params
11270 TEB *teb;
11271 GLsizei bufSize;
11272 GLubyte *pattern;
11275 struct glGetnSeparableFilter_params
11277 TEB *teb;
11278 GLenum target;
11279 GLenum format;
11280 GLenum type;
11281 GLsizei rowBufSize;
11282 void *row;
11283 GLsizei columnBufSize;
11284 void *column;
11285 void *span;
11288 struct glGetnSeparableFilterARB_params
11290 TEB *teb;
11291 GLenum target;
11292 GLenum format;
11293 GLenum type;
11294 GLsizei rowBufSize;
11295 void *row;
11296 GLsizei columnBufSize;
11297 void *column;
11298 void *span;
11301 struct glGetnTexImage_params
11303 TEB *teb;
11304 GLenum target;
11305 GLint level;
11306 GLenum format;
11307 GLenum type;
11308 GLsizei bufSize;
11309 void *pixels;
11312 struct glGetnTexImageARB_params
11314 TEB *teb;
11315 GLenum target;
11316 GLint level;
11317 GLenum format;
11318 GLenum type;
11319 GLsizei bufSize;
11320 void *img;
11323 struct glGetnUniformdv_params
11325 TEB *teb;
11326 GLuint program;
11327 GLint location;
11328 GLsizei bufSize;
11329 GLdouble *params;
11332 struct glGetnUniformdvARB_params
11334 TEB *teb;
11335 GLuint program;
11336 GLint location;
11337 GLsizei bufSize;
11338 GLdouble *params;
11341 struct glGetnUniformfv_params
11343 TEB *teb;
11344 GLuint program;
11345 GLint location;
11346 GLsizei bufSize;
11347 GLfloat *params;
11350 struct glGetnUniformfvARB_params
11352 TEB *teb;
11353 GLuint program;
11354 GLint location;
11355 GLsizei bufSize;
11356 GLfloat *params;
11359 struct glGetnUniformi64vARB_params
11361 TEB *teb;
11362 GLuint program;
11363 GLint location;
11364 GLsizei bufSize;
11365 GLint64 *params;
11368 struct glGetnUniformiv_params
11370 TEB *teb;
11371 GLuint program;
11372 GLint location;
11373 GLsizei bufSize;
11374 GLint *params;
11377 struct glGetnUniformivARB_params
11379 TEB *teb;
11380 GLuint program;
11381 GLint location;
11382 GLsizei bufSize;
11383 GLint *params;
11386 struct glGetnUniformui64vARB_params
11388 TEB *teb;
11389 GLuint program;
11390 GLint location;
11391 GLsizei bufSize;
11392 GLuint64 *params;
11395 struct glGetnUniformuiv_params
11397 TEB *teb;
11398 GLuint program;
11399 GLint location;
11400 GLsizei bufSize;
11401 GLuint *params;
11404 struct glGetnUniformuivARB_params
11406 TEB *teb;
11407 GLuint program;
11408 GLint location;
11409 GLsizei bufSize;
11410 GLuint *params;
11413 struct glGlobalAlphaFactorbSUN_params
11415 TEB *teb;
11416 GLbyte factor;
11419 struct glGlobalAlphaFactordSUN_params
11421 TEB *teb;
11422 GLdouble factor;
11425 struct glGlobalAlphaFactorfSUN_params
11427 TEB *teb;
11428 GLfloat factor;
11431 struct glGlobalAlphaFactoriSUN_params
11433 TEB *teb;
11434 GLint factor;
11437 struct glGlobalAlphaFactorsSUN_params
11439 TEB *teb;
11440 GLshort factor;
11443 struct glGlobalAlphaFactorubSUN_params
11445 TEB *teb;
11446 GLubyte factor;
11449 struct glGlobalAlphaFactoruiSUN_params
11451 TEB *teb;
11452 GLuint factor;
11455 struct glGlobalAlphaFactorusSUN_params
11457 TEB *teb;
11458 GLushort factor;
11461 struct glHintPGI_params
11463 TEB *teb;
11464 GLenum target;
11465 GLint mode;
11468 struct glHistogram_params
11470 TEB *teb;
11471 GLenum target;
11472 GLsizei width;
11473 GLenum internalformat;
11474 GLboolean sink;
11477 struct glHistogramEXT_params
11479 TEB *teb;
11480 GLenum target;
11481 GLsizei width;
11482 GLenum internalformat;
11483 GLboolean sink;
11486 struct glIglooInterfaceSGIX_params
11488 TEB *teb;
11489 GLenum pname;
11490 const void *params;
11493 struct glImageTransformParameterfHP_params
11495 TEB *teb;
11496 GLenum target;
11497 GLenum pname;
11498 GLfloat param;
11501 struct glImageTransformParameterfvHP_params
11503 TEB *teb;
11504 GLenum target;
11505 GLenum pname;
11506 const GLfloat *params;
11509 struct glImageTransformParameteriHP_params
11511 TEB *teb;
11512 GLenum target;
11513 GLenum pname;
11514 GLint param;
11517 struct glImageTransformParameterivHP_params
11519 TEB *teb;
11520 GLenum target;
11521 GLenum pname;
11522 const GLint *params;
11525 struct glImportMemoryFdEXT_params
11527 TEB *teb;
11528 GLuint memory;
11529 GLuint64 size;
11530 GLenum handleType;
11531 GLint fd;
11534 struct glImportMemoryWin32HandleEXT_params
11536 TEB *teb;
11537 GLuint memory;
11538 GLuint64 size;
11539 GLenum handleType;
11540 void *handle;
11543 struct glImportMemoryWin32NameEXT_params
11545 TEB *teb;
11546 GLuint memory;
11547 GLuint64 size;
11548 GLenum handleType;
11549 const void *name;
11552 struct glImportSemaphoreFdEXT_params
11554 TEB *teb;
11555 GLuint semaphore;
11556 GLenum handleType;
11557 GLint fd;
11560 struct glImportSemaphoreWin32HandleEXT_params
11562 TEB *teb;
11563 GLuint semaphore;
11564 GLenum handleType;
11565 void *handle;
11568 struct glImportSemaphoreWin32NameEXT_params
11570 TEB *teb;
11571 GLuint semaphore;
11572 GLenum handleType;
11573 const void *name;
11576 struct glImportSyncEXT_params
11578 TEB *teb;
11579 GLenum external_sync_type;
11580 GLintptr external_sync;
11581 GLbitfield flags;
11582 GLsync ret;
11585 struct glIndexFormatNV_params
11587 TEB *teb;
11588 GLenum type;
11589 GLsizei stride;
11592 struct glIndexFuncEXT_params
11594 TEB *teb;
11595 GLenum func;
11596 GLclampf ref;
11599 struct glIndexMaterialEXT_params
11601 TEB *teb;
11602 GLenum face;
11603 GLenum mode;
11606 struct glIndexPointerEXT_params
11608 TEB *teb;
11609 GLenum type;
11610 GLsizei stride;
11611 GLsizei count;
11612 const void *pointer;
11615 struct glIndexPointerListIBM_params
11617 TEB *teb;
11618 GLenum type;
11619 GLint stride;
11620 const void **pointer;
11621 GLint ptrstride;
11624 struct glIndexxOES_params
11626 TEB *teb;
11627 GLfixed component;
11630 struct glIndexxvOES_params
11632 TEB *teb;
11633 const GLfixed *component;
11636 struct glInsertComponentEXT_params
11638 TEB *teb;
11639 GLuint res;
11640 GLuint src;
11641 GLuint num;
11644 struct glInsertEventMarkerEXT_params
11646 TEB *teb;
11647 GLsizei length;
11648 const GLchar *marker;
11651 struct glInstrumentsBufferSGIX_params
11653 TEB *teb;
11654 GLsizei size;
11655 GLint *buffer;
11658 struct glInterpolatePathsNV_params
11660 TEB *teb;
11661 GLuint resultPath;
11662 GLuint pathA;
11663 GLuint pathB;
11664 GLfloat weight;
11667 struct glInvalidateBufferData_params
11669 TEB *teb;
11670 GLuint buffer;
11673 struct glInvalidateBufferSubData_params
11675 TEB *teb;
11676 GLuint buffer;
11677 GLintptr offset;
11678 GLsizeiptr length;
11681 struct glInvalidateFramebuffer_params
11683 TEB *teb;
11684 GLenum target;
11685 GLsizei numAttachments;
11686 const GLenum *attachments;
11689 struct glInvalidateNamedFramebufferData_params
11691 TEB *teb;
11692 GLuint framebuffer;
11693 GLsizei numAttachments;
11694 const GLenum *attachments;
11697 struct glInvalidateNamedFramebufferSubData_params
11699 TEB *teb;
11700 GLuint framebuffer;
11701 GLsizei numAttachments;
11702 const GLenum *attachments;
11703 GLint x;
11704 GLint y;
11705 GLsizei width;
11706 GLsizei height;
11709 struct glInvalidateSubFramebuffer_params
11711 TEB *teb;
11712 GLenum target;
11713 GLsizei numAttachments;
11714 const GLenum *attachments;
11715 GLint x;
11716 GLint y;
11717 GLsizei width;
11718 GLsizei height;
11721 struct glInvalidateTexImage_params
11723 TEB *teb;
11724 GLuint texture;
11725 GLint level;
11728 struct glInvalidateTexSubImage_params
11730 TEB *teb;
11731 GLuint texture;
11732 GLint level;
11733 GLint xoffset;
11734 GLint yoffset;
11735 GLint zoffset;
11736 GLsizei width;
11737 GLsizei height;
11738 GLsizei depth;
11741 struct glIsAsyncMarkerSGIX_params
11743 TEB *teb;
11744 GLuint marker;
11745 GLboolean ret;
11748 struct glIsBuffer_params
11750 TEB *teb;
11751 GLuint buffer;
11752 GLboolean ret;
11755 struct glIsBufferARB_params
11757 TEB *teb;
11758 GLuint buffer;
11759 GLboolean ret;
11762 struct glIsBufferResidentNV_params
11764 TEB *teb;
11765 GLenum target;
11766 GLboolean ret;
11769 struct glIsCommandListNV_params
11771 TEB *teb;
11772 GLuint list;
11773 GLboolean ret;
11776 struct glIsEnabledIndexedEXT_params
11778 TEB *teb;
11779 GLenum target;
11780 GLuint index;
11781 GLboolean ret;
11784 struct glIsEnabledi_params
11786 TEB *teb;
11787 GLenum target;
11788 GLuint index;
11789 GLboolean ret;
11792 struct glIsFenceAPPLE_params
11794 TEB *teb;
11795 GLuint fence;
11796 GLboolean ret;
11799 struct glIsFenceNV_params
11801 TEB *teb;
11802 GLuint fence;
11803 GLboolean ret;
11806 struct glIsFramebuffer_params
11808 TEB *teb;
11809 GLuint framebuffer;
11810 GLboolean ret;
11813 struct glIsFramebufferEXT_params
11815 TEB *teb;
11816 GLuint framebuffer;
11817 GLboolean ret;
11820 struct glIsImageHandleResidentARB_params
11822 TEB *teb;
11823 GLuint64 handle;
11824 GLboolean ret;
11827 struct glIsImageHandleResidentNV_params
11829 TEB *teb;
11830 GLuint64 handle;
11831 GLboolean ret;
11834 struct glIsMemoryObjectEXT_params
11836 TEB *teb;
11837 GLuint memoryObject;
11838 GLboolean ret;
11841 struct glIsNameAMD_params
11843 TEB *teb;
11844 GLenum identifier;
11845 GLuint name;
11846 GLboolean ret;
11849 struct glIsNamedBufferResidentNV_params
11851 TEB *teb;
11852 GLuint buffer;
11853 GLboolean ret;
11856 struct glIsNamedStringARB_params
11858 TEB *teb;
11859 GLint namelen;
11860 const GLchar *name;
11861 GLboolean ret;
11864 struct glIsObjectBufferATI_params
11866 TEB *teb;
11867 GLuint buffer;
11868 GLboolean ret;
11871 struct glIsOcclusionQueryNV_params
11873 TEB *teb;
11874 GLuint id;
11875 GLboolean ret;
11878 struct glIsPathNV_params
11880 TEB *teb;
11881 GLuint path;
11882 GLboolean ret;
11885 struct glIsPointInFillPathNV_params
11887 TEB *teb;
11888 GLuint path;
11889 GLuint mask;
11890 GLfloat x;
11891 GLfloat y;
11892 GLboolean ret;
11895 struct glIsPointInStrokePathNV_params
11897 TEB *teb;
11898 GLuint path;
11899 GLfloat x;
11900 GLfloat y;
11901 GLboolean ret;
11904 struct glIsProgram_params
11906 TEB *teb;
11907 GLuint program;
11908 GLboolean ret;
11911 struct glIsProgramARB_params
11913 TEB *teb;
11914 GLuint program;
11915 GLboolean ret;
11918 struct glIsProgramNV_params
11920 TEB *teb;
11921 GLuint id;
11922 GLboolean ret;
11925 struct glIsProgramPipeline_params
11927 TEB *teb;
11928 GLuint pipeline;
11929 GLboolean ret;
11932 struct glIsQuery_params
11934 TEB *teb;
11935 GLuint id;
11936 GLboolean ret;
11939 struct glIsQueryARB_params
11941 TEB *teb;
11942 GLuint id;
11943 GLboolean ret;
11946 struct glIsRenderbuffer_params
11948 TEB *teb;
11949 GLuint renderbuffer;
11950 GLboolean ret;
11953 struct glIsRenderbufferEXT_params
11955 TEB *teb;
11956 GLuint renderbuffer;
11957 GLboolean ret;
11960 struct glIsSampler_params
11962 TEB *teb;
11963 GLuint sampler;
11964 GLboolean ret;
11967 struct glIsSemaphoreEXT_params
11969 TEB *teb;
11970 GLuint semaphore;
11971 GLboolean ret;
11974 struct glIsShader_params
11976 TEB *teb;
11977 GLuint shader;
11978 GLboolean ret;
11981 struct glIsStateNV_params
11983 TEB *teb;
11984 GLuint state;
11985 GLboolean ret;
11988 struct glIsSync_params
11990 TEB *teb;
11991 GLsync sync;
11992 GLboolean ret;
11995 struct glIsTextureEXT_params
11997 TEB *teb;
11998 GLuint texture;
11999 GLboolean ret;
12002 struct glIsTextureHandleResidentARB_params
12004 TEB *teb;
12005 GLuint64 handle;
12006 GLboolean ret;
12009 struct glIsTextureHandleResidentNV_params
12011 TEB *teb;
12012 GLuint64 handle;
12013 GLboolean ret;
12016 struct glIsTransformFeedback_params
12018 TEB *teb;
12019 GLuint id;
12020 GLboolean ret;
12023 struct glIsTransformFeedbackNV_params
12025 TEB *teb;
12026 GLuint id;
12027 GLboolean ret;
12030 struct glIsVariantEnabledEXT_params
12032 TEB *teb;
12033 GLuint id;
12034 GLenum cap;
12035 GLboolean ret;
12038 struct glIsVertexArray_params
12040 TEB *teb;
12041 GLuint array;
12042 GLboolean ret;
12045 struct glIsVertexArrayAPPLE_params
12047 TEB *teb;
12048 GLuint array;
12049 GLboolean ret;
12052 struct glIsVertexAttribEnabledAPPLE_params
12054 TEB *teb;
12055 GLuint index;
12056 GLenum pname;
12057 GLboolean ret;
12060 struct glLGPUCopyImageSubDataNVX_params
12062 TEB *teb;
12063 GLuint sourceGpu;
12064 GLbitfield destinationGpuMask;
12065 GLuint srcName;
12066 GLenum srcTarget;
12067 GLint srcLevel;
12068 GLint srcX;
12069 GLint srxY;
12070 GLint srcZ;
12071 GLuint dstName;
12072 GLenum dstTarget;
12073 GLint dstLevel;
12074 GLint dstX;
12075 GLint dstY;
12076 GLint dstZ;
12077 GLsizei width;
12078 GLsizei height;
12079 GLsizei depth;
12082 struct glLGPUInterlockNVX_params
12084 TEB *teb;
12087 struct glLGPUNamedBufferSubDataNVX_params
12089 TEB *teb;
12090 GLbitfield gpuMask;
12091 GLuint buffer;
12092 GLintptr offset;
12093 GLsizeiptr size;
12094 const void *data;
12097 struct glLabelObjectEXT_params
12099 TEB *teb;
12100 GLenum type;
12101 GLuint object;
12102 GLsizei length;
12103 const GLchar *label;
12106 struct glLightEnviSGIX_params
12108 TEB *teb;
12109 GLenum pname;
12110 GLint param;
12113 struct glLightModelxOES_params
12115 TEB *teb;
12116 GLenum pname;
12117 GLfixed param;
12120 struct glLightModelxvOES_params
12122 TEB *teb;
12123 GLenum pname;
12124 const GLfixed *param;
12127 struct glLightxOES_params
12129 TEB *teb;
12130 GLenum light;
12131 GLenum pname;
12132 GLfixed param;
12135 struct glLightxvOES_params
12137 TEB *teb;
12138 GLenum light;
12139 GLenum pname;
12140 const GLfixed *params;
12143 struct glLineWidthxOES_params
12145 TEB *teb;
12146 GLfixed width;
12149 struct glLinkProgram_params
12151 TEB *teb;
12152 GLuint program;
12155 struct glLinkProgramARB_params
12157 TEB *teb;
12158 GLhandleARB programObj;
12161 struct glListDrawCommandsStatesClientNV_params
12163 TEB *teb;
12164 GLuint list;
12165 GLuint segment;
12166 const void **indirects;
12167 const GLsizei *sizes;
12168 const GLuint *states;
12169 const GLuint *fbos;
12170 GLuint count;
12173 struct glListParameterfSGIX_params
12175 TEB *teb;
12176 GLuint list;
12177 GLenum pname;
12178 GLfloat param;
12181 struct glListParameterfvSGIX_params
12183 TEB *teb;
12184 GLuint list;
12185 GLenum pname;
12186 const GLfloat *params;
12189 struct glListParameteriSGIX_params
12191 TEB *teb;
12192 GLuint list;
12193 GLenum pname;
12194 GLint param;
12197 struct glListParameterivSGIX_params
12199 TEB *teb;
12200 GLuint list;
12201 GLenum pname;
12202 const GLint *params;
12205 struct glLoadIdentityDeformationMapSGIX_params
12207 TEB *teb;
12208 GLbitfield mask;
12211 struct glLoadMatrixxOES_params
12213 TEB *teb;
12214 const GLfixed *m;
12217 struct glLoadProgramNV_params
12219 TEB *teb;
12220 GLenum target;
12221 GLuint id;
12222 GLsizei len;
12223 const GLubyte *program;
12226 struct glLoadTransposeMatrixd_params
12228 TEB *teb;
12229 const GLdouble *m;
12232 struct glLoadTransposeMatrixdARB_params
12234 TEB *teb;
12235 const GLdouble *m;
12238 struct glLoadTransposeMatrixf_params
12240 TEB *teb;
12241 const GLfloat *m;
12244 struct glLoadTransposeMatrixfARB_params
12246 TEB *teb;
12247 const GLfloat *m;
12250 struct glLoadTransposeMatrixxOES_params
12252 TEB *teb;
12253 const GLfixed *m;
12256 struct glLockArraysEXT_params
12258 TEB *teb;
12259 GLint first;
12260 GLsizei count;
12263 struct glMTexCoord2fSGIS_params
12265 TEB *teb;
12266 GLenum target;
12267 GLfloat s;
12268 GLfloat t;
12271 struct glMTexCoord2fvSGIS_params
12273 TEB *teb;
12274 GLenum target;
12275 GLfloat * v;
12278 struct glMakeBufferNonResidentNV_params
12280 TEB *teb;
12281 GLenum target;
12284 struct glMakeBufferResidentNV_params
12286 TEB *teb;
12287 GLenum target;
12288 GLenum access;
12291 struct glMakeImageHandleNonResidentARB_params
12293 TEB *teb;
12294 GLuint64 handle;
12297 struct glMakeImageHandleNonResidentNV_params
12299 TEB *teb;
12300 GLuint64 handle;
12303 struct glMakeImageHandleResidentARB_params
12305 TEB *teb;
12306 GLuint64 handle;
12307 GLenum access;
12310 struct glMakeImageHandleResidentNV_params
12312 TEB *teb;
12313 GLuint64 handle;
12314 GLenum access;
12317 struct glMakeNamedBufferNonResidentNV_params
12319 TEB *teb;
12320 GLuint buffer;
12323 struct glMakeNamedBufferResidentNV_params
12325 TEB *teb;
12326 GLuint buffer;
12327 GLenum access;
12330 struct glMakeTextureHandleNonResidentARB_params
12332 TEB *teb;
12333 GLuint64 handle;
12336 struct glMakeTextureHandleNonResidentNV_params
12338 TEB *teb;
12339 GLuint64 handle;
12342 struct glMakeTextureHandleResidentARB_params
12344 TEB *teb;
12345 GLuint64 handle;
12348 struct glMakeTextureHandleResidentNV_params
12350 TEB *teb;
12351 GLuint64 handle;
12354 struct glMap1xOES_params
12356 TEB *teb;
12357 GLenum target;
12358 GLfixed u1;
12359 GLfixed u2;
12360 GLint stride;
12361 GLint order;
12362 GLfixed points;
12365 struct glMap2xOES_params
12367 TEB *teb;
12368 GLenum target;
12369 GLfixed u1;
12370 GLfixed u2;
12371 GLint ustride;
12372 GLint uorder;
12373 GLfixed v1;
12374 GLfixed v2;
12375 GLint vstride;
12376 GLint vorder;
12377 GLfixed points;
12380 struct glMapBuffer_params
12382 TEB *teb;
12383 GLenum target;
12384 GLenum access;
12385 void *ret;
12388 struct glMapBufferARB_params
12390 TEB *teb;
12391 GLenum target;
12392 GLenum access;
12393 void *ret;
12396 struct glMapBufferRange_params
12398 TEB *teb;
12399 GLenum target;
12400 GLintptr offset;
12401 GLsizeiptr length;
12402 GLbitfield access;
12403 void *ret;
12406 struct glMapControlPointsNV_params
12408 TEB *teb;
12409 GLenum target;
12410 GLuint index;
12411 GLenum type;
12412 GLsizei ustride;
12413 GLsizei vstride;
12414 GLint uorder;
12415 GLint vorder;
12416 GLboolean packed;
12417 const void *points;
12420 struct glMapGrid1xOES_params
12422 TEB *teb;
12423 GLint n;
12424 GLfixed u1;
12425 GLfixed u2;
12428 struct glMapGrid2xOES_params
12430 TEB *teb;
12431 GLint n;
12432 GLfixed u1;
12433 GLfixed u2;
12434 GLfixed v1;
12435 GLfixed v2;
12438 struct glMapNamedBuffer_params
12440 TEB *teb;
12441 GLuint buffer;
12442 GLenum access;
12443 void *ret;
12446 struct glMapNamedBufferEXT_params
12448 TEB *teb;
12449 GLuint buffer;
12450 GLenum access;
12451 void *ret;
12454 struct glMapNamedBufferRange_params
12456 TEB *teb;
12457 GLuint buffer;
12458 GLintptr offset;
12459 GLsizeiptr length;
12460 GLbitfield access;
12461 void *ret;
12464 struct glMapNamedBufferRangeEXT_params
12466 TEB *teb;
12467 GLuint buffer;
12468 GLintptr offset;
12469 GLsizeiptr length;
12470 GLbitfield access;
12471 void *ret;
12474 struct glMapObjectBufferATI_params
12476 TEB *teb;
12477 GLuint buffer;
12478 void *ret;
12481 struct glMapParameterfvNV_params
12483 TEB *teb;
12484 GLenum target;
12485 GLenum pname;
12486 const GLfloat *params;
12489 struct glMapParameterivNV_params
12491 TEB *teb;
12492 GLenum target;
12493 GLenum pname;
12494 const GLint *params;
12497 struct glMapTexture2DINTEL_params
12499 TEB *teb;
12500 GLuint texture;
12501 GLint level;
12502 GLbitfield access;
12503 GLint *stride;
12504 GLenum *layout;
12505 void *ret;
12508 struct glMapVertexAttrib1dAPPLE_params
12510 TEB *teb;
12511 GLuint index;
12512 GLuint size;
12513 GLdouble u1;
12514 GLdouble u2;
12515 GLint stride;
12516 GLint order;
12517 const GLdouble *points;
12520 struct glMapVertexAttrib1fAPPLE_params
12522 TEB *teb;
12523 GLuint index;
12524 GLuint size;
12525 GLfloat u1;
12526 GLfloat u2;
12527 GLint stride;
12528 GLint order;
12529 const GLfloat *points;
12532 struct glMapVertexAttrib2dAPPLE_params
12534 TEB *teb;
12535 GLuint index;
12536 GLuint size;
12537 GLdouble u1;
12538 GLdouble u2;
12539 GLint ustride;
12540 GLint uorder;
12541 GLdouble v1;
12542 GLdouble v2;
12543 GLint vstride;
12544 GLint vorder;
12545 const GLdouble *points;
12548 struct glMapVertexAttrib2fAPPLE_params
12550 TEB *teb;
12551 GLuint index;
12552 GLuint size;
12553 GLfloat u1;
12554 GLfloat u2;
12555 GLint ustride;
12556 GLint uorder;
12557 GLfloat v1;
12558 GLfloat v2;
12559 GLint vstride;
12560 GLint vorder;
12561 const GLfloat *points;
12564 struct glMaterialxOES_params
12566 TEB *teb;
12567 GLenum face;
12568 GLenum pname;
12569 GLfixed param;
12572 struct glMaterialxvOES_params
12574 TEB *teb;
12575 GLenum face;
12576 GLenum pname;
12577 const GLfixed *param;
12580 struct glMatrixFrustumEXT_params
12582 TEB *teb;
12583 GLenum mode;
12584 GLdouble left;
12585 GLdouble right;
12586 GLdouble bottom;
12587 GLdouble top;
12588 GLdouble zNear;
12589 GLdouble zFar;
12592 struct glMatrixIndexPointerARB_params
12594 TEB *teb;
12595 GLint size;
12596 GLenum type;
12597 GLsizei stride;
12598 const void *pointer;
12601 struct glMatrixIndexubvARB_params
12603 TEB *teb;
12604 GLint size;
12605 const GLubyte *indices;
12608 struct glMatrixIndexuivARB_params
12610 TEB *teb;
12611 GLint size;
12612 const GLuint *indices;
12615 struct glMatrixIndexusvARB_params
12617 TEB *teb;
12618 GLint size;
12619 const GLushort *indices;
12622 struct glMatrixLoad3x2fNV_params
12624 TEB *teb;
12625 GLenum matrixMode;
12626 const GLfloat *m;
12629 struct glMatrixLoad3x3fNV_params
12631 TEB *teb;
12632 GLenum matrixMode;
12633 const GLfloat *m;
12636 struct glMatrixLoadIdentityEXT_params
12638 TEB *teb;
12639 GLenum mode;
12642 struct glMatrixLoadTranspose3x3fNV_params
12644 TEB *teb;
12645 GLenum matrixMode;
12646 const GLfloat *m;
12649 struct glMatrixLoadTransposedEXT_params
12651 TEB *teb;
12652 GLenum mode;
12653 const GLdouble *m;
12656 struct glMatrixLoadTransposefEXT_params
12658 TEB *teb;
12659 GLenum mode;
12660 const GLfloat *m;
12663 struct glMatrixLoaddEXT_params
12665 TEB *teb;
12666 GLenum mode;
12667 const GLdouble *m;
12670 struct glMatrixLoadfEXT_params
12672 TEB *teb;
12673 GLenum mode;
12674 const GLfloat *m;
12677 struct glMatrixMult3x2fNV_params
12679 TEB *teb;
12680 GLenum matrixMode;
12681 const GLfloat *m;
12684 struct glMatrixMult3x3fNV_params
12686 TEB *teb;
12687 GLenum matrixMode;
12688 const GLfloat *m;
12691 struct glMatrixMultTranspose3x3fNV_params
12693 TEB *teb;
12694 GLenum matrixMode;
12695 const GLfloat *m;
12698 struct glMatrixMultTransposedEXT_params
12700 TEB *teb;
12701 GLenum mode;
12702 const GLdouble *m;
12705 struct glMatrixMultTransposefEXT_params
12707 TEB *teb;
12708 GLenum mode;
12709 const GLfloat *m;
12712 struct glMatrixMultdEXT_params
12714 TEB *teb;
12715 GLenum mode;
12716 const GLdouble *m;
12719 struct glMatrixMultfEXT_params
12721 TEB *teb;
12722 GLenum mode;
12723 const GLfloat *m;
12726 struct glMatrixOrthoEXT_params
12728 TEB *teb;
12729 GLenum mode;
12730 GLdouble left;
12731 GLdouble right;
12732 GLdouble bottom;
12733 GLdouble top;
12734 GLdouble zNear;
12735 GLdouble zFar;
12738 struct glMatrixPopEXT_params
12740 TEB *teb;
12741 GLenum mode;
12744 struct glMatrixPushEXT_params
12746 TEB *teb;
12747 GLenum mode;
12750 struct glMatrixRotatedEXT_params
12752 TEB *teb;
12753 GLenum mode;
12754 GLdouble angle;
12755 GLdouble x;
12756 GLdouble y;
12757 GLdouble z;
12760 struct glMatrixRotatefEXT_params
12762 TEB *teb;
12763 GLenum mode;
12764 GLfloat angle;
12765 GLfloat x;
12766 GLfloat y;
12767 GLfloat z;
12770 struct glMatrixScaledEXT_params
12772 TEB *teb;
12773 GLenum mode;
12774 GLdouble x;
12775 GLdouble y;
12776 GLdouble z;
12779 struct glMatrixScalefEXT_params
12781 TEB *teb;
12782 GLenum mode;
12783 GLfloat x;
12784 GLfloat y;
12785 GLfloat z;
12788 struct glMatrixTranslatedEXT_params
12790 TEB *teb;
12791 GLenum mode;
12792 GLdouble x;
12793 GLdouble y;
12794 GLdouble z;
12797 struct glMatrixTranslatefEXT_params
12799 TEB *teb;
12800 GLenum mode;
12801 GLfloat x;
12802 GLfloat y;
12803 GLfloat z;
12806 struct glMaxShaderCompilerThreadsARB_params
12808 TEB *teb;
12809 GLuint count;
12812 struct glMaxShaderCompilerThreadsKHR_params
12814 TEB *teb;
12815 GLuint count;
12818 struct glMemoryBarrier_params
12820 TEB *teb;
12821 GLbitfield barriers;
12824 struct glMemoryBarrierByRegion_params
12826 TEB *teb;
12827 GLbitfield barriers;
12830 struct glMemoryBarrierEXT_params
12832 TEB *teb;
12833 GLbitfield barriers;
12836 struct glMemoryObjectParameterivEXT_params
12838 TEB *teb;
12839 GLuint memoryObject;
12840 GLenum pname;
12841 const GLint *params;
12844 struct glMinSampleShading_params
12846 TEB *teb;
12847 GLfloat value;
12850 struct glMinSampleShadingARB_params
12852 TEB *teb;
12853 GLfloat value;
12856 struct glMinmax_params
12858 TEB *teb;
12859 GLenum target;
12860 GLenum internalformat;
12861 GLboolean sink;
12864 struct glMinmaxEXT_params
12866 TEB *teb;
12867 GLenum target;
12868 GLenum internalformat;
12869 GLboolean sink;
12872 struct glMultMatrixxOES_params
12874 TEB *teb;
12875 const GLfixed *m;
12878 struct glMultTransposeMatrixd_params
12880 TEB *teb;
12881 const GLdouble *m;
12884 struct glMultTransposeMatrixdARB_params
12886 TEB *teb;
12887 const GLdouble *m;
12890 struct glMultTransposeMatrixf_params
12892 TEB *teb;
12893 const GLfloat *m;
12896 struct glMultTransposeMatrixfARB_params
12898 TEB *teb;
12899 const GLfloat *m;
12902 struct glMultTransposeMatrixxOES_params
12904 TEB *teb;
12905 const GLfixed *m;
12908 struct glMultiDrawArrays_params
12910 TEB *teb;
12911 GLenum mode;
12912 const GLint *first;
12913 const GLsizei *count;
12914 GLsizei drawcount;
12917 struct glMultiDrawArraysEXT_params
12919 TEB *teb;
12920 GLenum mode;
12921 const GLint *first;
12922 const GLsizei *count;
12923 GLsizei primcount;
12926 struct glMultiDrawArraysIndirect_params
12928 TEB *teb;
12929 GLenum mode;
12930 const void *indirect;
12931 GLsizei drawcount;
12932 GLsizei stride;
12935 struct glMultiDrawArraysIndirectAMD_params
12937 TEB *teb;
12938 GLenum mode;
12939 const void *indirect;
12940 GLsizei primcount;
12941 GLsizei stride;
12944 struct glMultiDrawArraysIndirectBindlessCountNV_params
12946 TEB *teb;
12947 GLenum mode;
12948 const void *indirect;
12949 GLsizei drawCount;
12950 GLsizei maxDrawCount;
12951 GLsizei stride;
12952 GLint vertexBufferCount;
12955 struct glMultiDrawArraysIndirectBindlessNV_params
12957 TEB *teb;
12958 GLenum mode;
12959 const void *indirect;
12960 GLsizei drawCount;
12961 GLsizei stride;
12962 GLint vertexBufferCount;
12965 struct glMultiDrawArraysIndirectCount_params
12967 TEB *teb;
12968 GLenum mode;
12969 const void *indirect;
12970 GLintptr drawcount;
12971 GLsizei maxdrawcount;
12972 GLsizei stride;
12975 struct glMultiDrawArraysIndirectCountARB_params
12977 TEB *teb;
12978 GLenum mode;
12979 const void *indirect;
12980 GLintptr drawcount;
12981 GLsizei maxdrawcount;
12982 GLsizei stride;
12985 struct glMultiDrawElementArrayAPPLE_params
12987 TEB *teb;
12988 GLenum mode;
12989 const GLint *first;
12990 const GLsizei *count;
12991 GLsizei primcount;
12994 struct glMultiDrawElements_params
12996 TEB *teb;
12997 GLenum mode;
12998 const GLsizei *count;
12999 GLenum type;
13000 const void *const*indices;
13001 GLsizei drawcount;
13004 struct glMultiDrawElementsBaseVertex_params
13006 TEB *teb;
13007 GLenum mode;
13008 const GLsizei *count;
13009 GLenum type;
13010 const void *const*indices;
13011 GLsizei drawcount;
13012 const GLint *basevertex;
13015 struct glMultiDrawElementsEXT_params
13017 TEB *teb;
13018 GLenum mode;
13019 const GLsizei *count;
13020 GLenum type;
13021 const void *const*indices;
13022 GLsizei primcount;
13025 struct glMultiDrawElementsIndirect_params
13027 TEB *teb;
13028 GLenum mode;
13029 GLenum type;
13030 const void *indirect;
13031 GLsizei drawcount;
13032 GLsizei stride;
13035 struct glMultiDrawElementsIndirectAMD_params
13037 TEB *teb;
13038 GLenum mode;
13039 GLenum type;
13040 const void *indirect;
13041 GLsizei primcount;
13042 GLsizei stride;
13045 struct glMultiDrawElementsIndirectBindlessCountNV_params
13047 TEB *teb;
13048 GLenum mode;
13049 GLenum type;
13050 const void *indirect;
13051 GLsizei drawCount;
13052 GLsizei maxDrawCount;
13053 GLsizei stride;
13054 GLint vertexBufferCount;
13057 struct glMultiDrawElementsIndirectBindlessNV_params
13059 TEB *teb;
13060 GLenum mode;
13061 GLenum type;
13062 const void *indirect;
13063 GLsizei drawCount;
13064 GLsizei stride;
13065 GLint vertexBufferCount;
13068 struct glMultiDrawElementsIndirectCount_params
13070 TEB *teb;
13071 GLenum mode;
13072 GLenum type;
13073 const void *indirect;
13074 GLintptr drawcount;
13075 GLsizei maxdrawcount;
13076 GLsizei stride;
13079 struct glMultiDrawElementsIndirectCountARB_params
13081 TEB *teb;
13082 GLenum mode;
13083 GLenum type;
13084 const void *indirect;
13085 GLintptr drawcount;
13086 GLsizei maxdrawcount;
13087 GLsizei stride;
13090 struct glMultiDrawMeshTasksIndirectCountNV_params
13092 TEB *teb;
13093 GLintptr indirect;
13094 GLintptr drawcount;
13095 GLsizei maxdrawcount;
13096 GLsizei stride;
13099 struct glMultiDrawMeshTasksIndirectNV_params
13101 TEB *teb;
13102 GLintptr indirect;
13103 GLsizei drawcount;
13104 GLsizei stride;
13107 struct glMultiDrawRangeElementArrayAPPLE_params
13109 TEB *teb;
13110 GLenum mode;
13111 GLuint start;
13112 GLuint end;
13113 const GLint *first;
13114 const GLsizei *count;
13115 GLsizei primcount;
13118 struct glMultiModeDrawArraysIBM_params
13120 TEB *teb;
13121 const GLenum *mode;
13122 const GLint *first;
13123 const GLsizei *count;
13124 GLsizei primcount;
13125 GLint modestride;
13128 struct glMultiModeDrawElementsIBM_params
13130 TEB *teb;
13131 const GLenum *mode;
13132 const GLsizei *count;
13133 GLenum type;
13134 const void *const*indices;
13135 GLsizei primcount;
13136 GLint modestride;
13139 struct glMultiTexBufferEXT_params
13141 TEB *teb;
13142 GLenum texunit;
13143 GLenum target;
13144 GLenum internalformat;
13145 GLuint buffer;
13148 struct glMultiTexCoord1bOES_params
13150 TEB *teb;
13151 GLenum texture;
13152 GLbyte s;
13155 struct glMultiTexCoord1bvOES_params
13157 TEB *teb;
13158 GLenum texture;
13159 const GLbyte *coords;
13162 struct glMultiTexCoord1d_params
13164 TEB *teb;
13165 GLenum target;
13166 GLdouble s;
13169 struct glMultiTexCoord1dARB_params
13171 TEB *teb;
13172 GLenum target;
13173 GLdouble s;
13176 struct glMultiTexCoord1dSGIS_params
13178 TEB *teb;
13179 GLenum target;
13180 GLdouble s;
13183 struct glMultiTexCoord1dv_params
13185 TEB *teb;
13186 GLenum target;
13187 const GLdouble *v;
13190 struct glMultiTexCoord1dvARB_params
13192 TEB *teb;
13193 GLenum target;
13194 const GLdouble *v;
13197 struct glMultiTexCoord1dvSGIS_params
13199 TEB *teb;
13200 GLenum target;
13201 GLdouble * v;
13204 struct glMultiTexCoord1f_params
13206 TEB *teb;
13207 GLenum target;
13208 GLfloat s;
13211 struct glMultiTexCoord1fARB_params
13213 TEB *teb;
13214 GLenum target;
13215 GLfloat s;
13218 struct glMultiTexCoord1fSGIS_params
13220 TEB *teb;
13221 GLenum target;
13222 GLfloat s;
13225 struct glMultiTexCoord1fv_params
13227 TEB *teb;
13228 GLenum target;
13229 const GLfloat *v;
13232 struct glMultiTexCoord1fvARB_params
13234 TEB *teb;
13235 GLenum target;
13236 const GLfloat *v;
13239 struct glMultiTexCoord1fvSGIS_params
13241 TEB *teb;
13242 GLenum target;
13243 const GLfloat * v;
13246 struct glMultiTexCoord1hNV_params
13248 TEB *teb;
13249 GLenum target;
13250 GLhalfNV s;
13253 struct glMultiTexCoord1hvNV_params
13255 TEB *teb;
13256 GLenum target;
13257 const GLhalfNV *v;
13260 struct glMultiTexCoord1i_params
13262 TEB *teb;
13263 GLenum target;
13264 GLint s;
13267 struct glMultiTexCoord1iARB_params
13269 TEB *teb;
13270 GLenum target;
13271 GLint s;
13274 struct glMultiTexCoord1iSGIS_params
13276 TEB *teb;
13277 GLenum target;
13278 GLint s;
13281 struct glMultiTexCoord1iv_params
13283 TEB *teb;
13284 GLenum target;
13285 const GLint *v;
13288 struct glMultiTexCoord1ivARB_params
13290 TEB *teb;
13291 GLenum target;
13292 const GLint *v;
13295 struct glMultiTexCoord1ivSGIS_params
13297 TEB *teb;
13298 GLenum target;
13299 GLint * v;
13302 struct glMultiTexCoord1s_params
13304 TEB *teb;
13305 GLenum target;
13306 GLshort s;
13309 struct glMultiTexCoord1sARB_params
13311 TEB *teb;
13312 GLenum target;
13313 GLshort s;
13316 struct glMultiTexCoord1sSGIS_params
13318 TEB *teb;
13319 GLenum target;
13320 GLshort s;
13323 struct glMultiTexCoord1sv_params
13325 TEB *teb;
13326 GLenum target;
13327 const GLshort *v;
13330 struct glMultiTexCoord1svARB_params
13332 TEB *teb;
13333 GLenum target;
13334 const GLshort *v;
13337 struct glMultiTexCoord1svSGIS_params
13339 TEB *teb;
13340 GLenum target;
13341 GLshort * v;
13344 struct glMultiTexCoord1xOES_params
13346 TEB *teb;
13347 GLenum texture;
13348 GLfixed s;
13351 struct glMultiTexCoord1xvOES_params
13353 TEB *teb;
13354 GLenum texture;
13355 const GLfixed *coords;
13358 struct glMultiTexCoord2bOES_params
13360 TEB *teb;
13361 GLenum texture;
13362 GLbyte s;
13363 GLbyte t;
13366 struct glMultiTexCoord2bvOES_params
13368 TEB *teb;
13369 GLenum texture;
13370 const GLbyte *coords;
13373 struct glMultiTexCoord2d_params
13375 TEB *teb;
13376 GLenum target;
13377 GLdouble s;
13378 GLdouble t;
13381 struct glMultiTexCoord2dARB_params
13383 TEB *teb;
13384 GLenum target;
13385 GLdouble s;
13386 GLdouble t;
13389 struct glMultiTexCoord2dSGIS_params
13391 TEB *teb;
13392 GLenum target;
13393 GLdouble s;
13394 GLdouble t;
13397 struct glMultiTexCoord2dv_params
13399 TEB *teb;
13400 GLenum target;
13401 const GLdouble *v;
13404 struct glMultiTexCoord2dvARB_params
13406 TEB *teb;
13407 GLenum target;
13408 const GLdouble *v;
13411 struct glMultiTexCoord2dvSGIS_params
13413 TEB *teb;
13414 GLenum target;
13415 GLdouble * v;
13418 struct glMultiTexCoord2f_params
13420 TEB *teb;
13421 GLenum target;
13422 GLfloat s;
13423 GLfloat t;
13426 struct glMultiTexCoord2fARB_params
13428 TEB *teb;
13429 GLenum target;
13430 GLfloat s;
13431 GLfloat t;
13434 struct glMultiTexCoord2fSGIS_params
13436 TEB *teb;
13437 GLenum target;
13438 GLfloat s;
13439 GLfloat t;
13442 struct glMultiTexCoord2fv_params
13444 TEB *teb;
13445 GLenum target;
13446 const GLfloat *v;
13449 struct glMultiTexCoord2fvARB_params
13451 TEB *teb;
13452 GLenum target;
13453 const GLfloat *v;
13456 struct glMultiTexCoord2fvSGIS_params
13458 TEB *teb;
13459 GLenum target;
13460 GLfloat * v;
13463 struct glMultiTexCoord2hNV_params
13465 TEB *teb;
13466 GLenum target;
13467 GLhalfNV s;
13468 GLhalfNV t;
13471 struct glMultiTexCoord2hvNV_params
13473 TEB *teb;
13474 GLenum target;
13475 const GLhalfNV *v;
13478 struct glMultiTexCoord2i_params
13480 TEB *teb;
13481 GLenum target;
13482 GLint s;
13483 GLint t;
13486 struct glMultiTexCoord2iARB_params
13488 TEB *teb;
13489 GLenum target;
13490 GLint s;
13491 GLint t;
13494 struct glMultiTexCoord2iSGIS_params
13496 TEB *teb;
13497 GLenum target;
13498 GLint s;
13499 GLint t;
13502 struct glMultiTexCoord2iv_params
13504 TEB *teb;
13505 GLenum target;
13506 const GLint *v;
13509 struct glMultiTexCoord2ivARB_params
13511 TEB *teb;
13512 GLenum target;
13513 const GLint *v;
13516 struct glMultiTexCoord2ivSGIS_params
13518 TEB *teb;
13519 GLenum target;
13520 GLint * v;
13523 struct glMultiTexCoord2s_params
13525 TEB *teb;
13526 GLenum target;
13527 GLshort s;
13528 GLshort t;
13531 struct glMultiTexCoord2sARB_params
13533 TEB *teb;
13534 GLenum target;
13535 GLshort s;
13536 GLshort t;
13539 struct glMultiTexCoord2sSGIS_params
13541 TEB *teb;
13542 GLenum target;
13543 GLshort s;
13544 GLshort t;
13547 struct glMultiTexCoord2sv_params
13549 TEB *teb;
13550 GLenum target;
13551 const GLshort *v;
13554 struct glMultiTexCoord2svARB_params
13556 TEB *teb;
13557 GLenum target;
13558 const GLshort *v;
13561 struct glMultiTexCoord2svSGIS_params
13563 TEB *teb;
13564 GLenum target;
13565 GLshort * v;
13568 struct glMultiTexCoord2xOES_params
13570 TEB *teb;
13571 GLenum texture;
13572 GLfixed s;
13573 GLfixed t;
13576 struct glMultiTexCoord2xvOES_params
13578 TEB *teb;
13579 GLenum texture;
13580 const GLfixed *coords;
13583 struct glMultiTexCoord3bOES_params
13585 TEB *teb;
13586 GLenum texture;
13587 GLbyte s;
13588 GLbyte t;
13589 GLbyte r;
13592 struct glMultiTexCoord3bvOES_params
13594 TEB *teb;
13595 GLenum texture;
13596 const GLbyte *coords;
13599 struct glMultiTexCoord3d_params
13601 TEB *teb;
13602 GLenum target;
13603 GLdouble s;
13604 GLdouble t;
13605 GLdouble r;
13608 struct glMultiTexCoord3dARB_params
13610 TEB *teb;
13611 GLenum target;
13612 GLdouble s;
13613 GLdouble t;
13614 GLdouble r;
13617 struct glMultiTexCoord3dSGIS_params
13619 TEB *teb;
13620 GLenum target;
13621 GLdouble s;
13622 GLdouble t;
13623 GLdouble r;
13626 struct glMultiTexCoord3dv_params
13628 TEB *teb;
13629 GLenum target;
13630 const GLdouble *v;
13633 struct glMultiTexCoord3dvARB_params
13635 TEB *teb;
13636 GLenum target;
13637 const GLdouble *v;
13640 struct glMultiTexCoord3dvSGIS_params
13642 TEB *teb;
13643 GLenum target;
13644 GLdouble * v;
13647 struct glMultiTexCoord3f_params
13649 TEB *teb;
13650 GLenum target;
13651 GLfloat s;
13652 GLfloat t;
13653 GLfloat r;
13656 struct glMultiTexCoord3fARB_params
13658 TEB *teb;
13659 GLenum target;
13660 GLfloat s;
13661 GLfloat t;
13662 GLfloat r;
13665 struct glMultiTexCoord3fSGIS_params
13667 TEB *teb;
13668 GLenum target;
13669 GLfloat s;
13670 GLfloat t;
13671 GLfloat r;
13674 struct glMultiTexCoord3fv_params
13676 TEB *teb;
13677 GLenum target;
13678 const GLfloat *v;
13681 struct glMultiTexCoord3fvARB_params
13683 TEB *teb;
13684 GLenum target;
13685 const GLfloat *v;
13688 struct glMultiTexCoord3fvSGIS_params
13690 TEB *teb;
13691 GLenum target;
13692 GLfloat * v;
13695 struct glMultiTexCoord3hNV_params
13697 TEB *teb;
13698 GLenum target;
13699 GLhalfNV s;
13700 GLhalfNV t;
13701 GLhalfNV r;
13704 struct glMultiTexCoord3hvNV_params
13706 TEB *teb;
13707 GLenum target;
13708 const GLhalfNV *v;
13711 struct glMultiTexCoord3i_params
13713 TEB *teb;
13714 GLenum target;
13715 GLint s;
13716 GLint t;
13717 GLint r;
13720 struct glMultiTexCoord3iARB_params
13722 TEB *teb;
13723 GLenum target;
13724 GLint s;
13725 GLint t;
13726 GLint r;
13729 struct glMultiTexCoord3iSGIS_params
13731 TEB *teb;
13732 GLenum target;
13733 GLint s;
13734 GLint t;
13735 GLint r;
13738 struct glMultiTexCoord3iv_params
13740 TEB *teb;
13741 GLenum target;
13742 const GLint *v;
13745 struct glMultiTexCoord3ivARB_params
13747 TEB *teb;
13748 GLenum target;
13749 const GLint *v;
13752 struct glMultiTexCoord3ivSGIS_params
13754 TEB *teb;
13755 GLenum target;
13756 GLint * v;
13759 struct glMultiTexCoord3s_params
13761 TEB *teb;
13762 GLenum target;
13763 GLshort s;
13764 GLshort t;
13765 GLshort r;
13768 struct glMultiTexCoord3sARB_params
13770 TEB *teb;
13771 GLenum target;
13772 GLshort s;
13773 GLshort t;
13774 GLshort r;
13777 struct glMultiTexCoord3sSGIS_params
13779 TEB *teb;
13780 GLenum target;
13781 GLshort s;
13782 GLshort t;
13783 GLshort r;
13786 struct glMultiTexCoord3sv_params
13788 TEB *teb;
13789 GLenum target;
13790 const GLshort *v;
13793 struct glMultiTexCoord3svARB_params
13795 TEB *teb;
13796 GLenum target;
13797 const GLshort *v;
13800 struct glMultiTexCoord3svSGIS_params
13802 TEB *teb;
13803 GLenum target;
13804 GLshort * v;
13807 struct glMultiTexCoord3xOES_params
13809 TEB *teb;
13810 GLenum texture;
13811 GLfixed s;
13812 GLfixed t;
13813 GLfixed r;
13816 struct glMultiTexCoord3xvOES_params
13818 TEB *teb;
13819 GLenum texture;
13820 const GLfixed *coords;
13823 struct glMultiTexCoord4bOES_params
13825 TEB *teb;
13826 GLenum texture;
13827 GLbyte s;
13828 GLbyte t;
13829 GLbyte r;
13830 GLbyte q;
13833 struct glMultiTexCoord4bvOES_params
13835 TEB *teb;
13836 GLenum texture;
13837 const GLbyte *coords;
13840 struct glMultiTexCoord4d_params
13842 TEB *teb;
13843 GLenum target;
13844 GLdouble s;
13845 GLdouble t;
13846 GLdouble r;
13847 GLdouble q;
13850 struct glMultiTexCoord4dARB_params
13852 TEB *teb;
13853 GLenum target;
13854 GLdouble s;
13855 GLdouble t;
13856 GLdouble r;
13857 GLdouble q;
13860 struct glMultiTexCoord4dSGIS_params
13862 TEB *teb;
13863 GLenum target;
13864 GLdouble s;
13865 GLdouble t;
13866 GLdouble r;
13867 GLdouble q;
13870 struct glMultiTexCoord4dv_params
13872 TEB *teb;
13873 GLenum target;
13874 const GLdouble *v;
13877 struct glMultiTexCoord4dvARB_params
13879 TEB *teb;
13880 GLenum target;
13881 const GLdouble *v;
13884 struct glMultiTexCoord4dvSGIS_params
13886 TEB *teb;
13887 GLenum target;
13888 GLdouble * v;
13891 struct glMultiTexCoord4f_params
13893 TEB *teb;
13894 GLenum target;
13895 GLfloat s;
13896 GLfloat t;
13897 GLfloat r;
13898 GLfloat q;
13901 struct glMultiTexCoord4fARB_params
13903 TEB *teb;
13904 GLenum target;
13905 GLfloat s;
13906 GLfloat t;
13907 GLfloat r;
13908 GLfloat q;
13911 struct glMultiTexCoord4fSGIS_params
13913 TEB *teb;
13914 GLenum target;
13915 GLfloat s;
13916 GLfloat t;
13917 GLfloat r;
13918 GLfloat q;
13921 struct glMultiTexCoord4fv_params
13923 TEB *teb;
13924 GLenum target;
13925 const GLfloat *v;
13928 struct glMultiTexCoord4fvARB_params
13930 TEB *teb;
13931 GLenum target;
13932 const GLfloat *v;
13935 struct glMultiTexCoord4fvSGIS_params
13937 TEB *teb;
13938 GLenum target;
13939 GLfloat * v;
13942 struct glMultiTexCoord4hNV_params
13944 TEB *teb;
13945 GLenum target;
13946 GLhalfNV s;
13947 GLhalfNV t;
13948 GLhalfNV r;
13949 GLhalfNV q;
13952 struct glMultiTexCoord4hvNV_params
13954 TEB *teb;
13955 GLenum target;
13956 const GLhalfNV *v;
13959 struct glMultiTexCoord4i_params
13961 TEB *teb;
13962 GLenum target;
13963 GLint s;
13964 GLint t;
13965 GLint r;
13966 GLint q;
13969 struct glMultiTexCoord4iARB_params
13971 TEB *teb;
13972 GLenum target;
13973 GLint s;
13974 GLint t;
13975 GLint r;
13976 GLint q;
13979 struct glMultiTexCoord4iSGIS_params
13981 TEB *teb;
13982 GLenum target;
13983 GLint s;
13984 GLint t;
13985 GLint r;
13986 GLint q;
13989 struct glMultiTexCoord4iv_params
13991 TEB *teb;
13992 GLenum target;
13993 const GLint *v;
13996 struct glMultiTexCoord4ivARB_params
13998 TEB *teb;
13999 GLenum target;
14000 const GLint *v;
14003 struct glMultiTexCoord4ivSGIS_params
14005 TEB *teb;
14006 GLenum target;
14007 GLint * v;
14010 struct glMultiTexCoord4s_params
14012 TEB *teb;
14013 GLenum target;
14014 GLshort s;
14015 GLshort t;
14016 GLshort r;
14017 GLshort q;
14020 struct glMultiTexCoord4sARB_params
14022 TEB *teb;
14023 GLenum target;
14024 GLshort s;
14025 GLshort t;
14026 GLshort r;
14027 GLshort q;
14030 struct glMultiTexCoord4sSGIS_params
14032 TEB *teb;
14033 GLenum target;
14034 GLshort s;
14035 GLshort t;
14036 GLshort r;
14037 GLshort q;
14040 struct glMultiTexCoord4sv_params
14042 TEB *teb;
14043 GLenum target;
14044 const GLshort *v;
14047 struct glMultiTexCoord4svARB_params
14049 TEB *teb;
14050 GLenum target;
14051 const GLshort *v;
14054 struct glMultiTexCoord4svSGIS_params
14056 TEB *teb;
14057 GLenum target;
14058 GLshort * v;
14061 struct glMultiTexCoord4xOES_params
14063 TEB *teb;
14064 GLenum texture;
14065 GLfixed s;
14066 GLfixed t;
14067 GLfixed r;
14068 GLfixed q;
14071 struct glMultiTexCoord4xvOES_params
14073 TEB *teb;
14074 GLenum texture;
14075 const GLfixed *coords;
14078 struct glMultiTexCoordP1ui_params
14080 TEB *teb;
14081 GLenum texture;
14082 GLenum type;
14083 GLuint coords;
14086 struct glMultiTexCoordP1uiv_params
14088 TEB *teb;
14089 GLenum texture;
14090 GLenum type;
14091 const GLuint *coords;
14094 struct glMultiTexCoordP2ui_params
14096 TEB *teb;
14097 GLenum texture;
14098 GLenum type;
14099 GLuint coords;
14102 struct glMultiTexCoordP2uiv_params
14104 TEB *teb;
14105 GLenum texture;
14106 GLenum type;
14107 const GLuint *coords;
14110 struct glMultiTexCoordP3ui_params
14112 TEB *teb;
14113 GLenum texture;
14114 GLenum type;
14115 GLuint coords;
14118 struct glMultiTexCoordP3uiv_params
14120 TEB *teb;
14121 GLenum texture;
14122 GLenum type;
14123 const GLuint *coords;
14126 struct glMultiTexCoordP4ui_params
14128 TEB *teb;
14129 GLenum texture;
14130 GLenum type;
14131 GLuint coords;
14134 struct glMultiTexCoordP4uiv_params
14136 TEB *teb;
14137 GLenum texture;
14138 GLenum type;
14139 const GLuint *coords;
14142 struct glMultiTexCoordPointerEXT_params
14144 TEB *teb;
14145 GLenum texunit;
14146 GLint size;
14147 GLenum type;
14148 GLsizei stride;
14149 const void *pointer;
14152 struct glMultiTexCoordPointerSGIS_params
14154 TEB *teb;
14155 GLenum target;
14156 GLint size;
14157 GLenum type;
14158 GLsizei stride;
14159 GLvoid * pointer;
14162 struct glMultiTexEnvfEXT_params
14164 TEB *teb;
14165 GLenum texunit;
14166 GLenum target;
14167 GLenum pname;
14168 GLfloat param;
14171 struct glMultiTexEnvfvEXT_params
14173 TEB *teb;
14174 GLenum texunit;
14175 GLenum target;
14176 GLenum pname;
14177 const GLfloat *params;
14180 struct glMultiTexEnviEXT_params
14182 TEB *teb;
14183 GLenum texunit;
14184 GLenum target;
14185 GLenum pname;
14186 GLint param;
14189 struct glMultiTexEnvivEXT_params
14191 TEB *teb;
14192 GLenum texunit;
14193 GLenum target;
14194 GLenum pname;
14195 const GLint *params;
14198 struct glMultiTexGendEXT_params
14200 TEB *teb;
14201 GLenum texunit;
14202 GLenum coord;
14203 GLenum pname;
14204 GLdouble param;
14207 struct glMultiTexGendvEXT_params
14209 TEB *teb;
14210 GLenum texunit;
14211 GLenum coord;
14212 GLenum pname;
14213 const GLdouble *params;
14216 struct glMultiTexGenfEXT_params
14218 TEB *teb;
14219 GLenum texunit;
14220 GLenum coord;
14221 GLenum pname;
14222 GLfloat param;
14225 struct glMultiTexGenfvEXT_params
14227 TEB *teb;
14228 GLenum texunit;
14229 GLenum coord;
14230 GLenum pname;
14231 const GLfloat *params;
14234 struct glMultiTexGeniEXT_params
14236 TEB *teb;
14237 GLenum texunit;
14238 GLenum coord;
14239 GLenum pname;
14240 GLint param;
14243 struct glMultiTexGenivEXT_params
14245 TEB *teb;
14246 GLenum texunit;
14247 GLenum coord;
14248 GLenum pname;
14249 const GLint *params;
14252 struct glMultiTexImage1DEXT_params
14254 TEB *teb;
14255 GLenum texunit;
14256 GLenum target;
14257 GLint level;
14258 GLint internalformat;
14259 GLsizei width;
14260 GLint border;
14261 GLenum format;
14262 GLenum type;
14263 const void *pixels;
14266 struct glMultiTexImage2DEXT_params
14268 TEB *teb;
14269 GLenum texunit;
14270 GLenum target;
14271 GLint level;
14272 GLint internalformat;
14273 GLsizei width;
14274 GLsizei height;
14275 GLint border;
14276 GLenum format;
14277 GLenum type;
14278 const void *pixels;
14281 struct glMultiTexImage3DEXT_params
14283 TEB *teb;
14284 GLenum texunit;
14285 GLenum target;
14286 GLint level;
14287 GLint internalformat;
14288 GLsizei width;
14289 GLsizei height;
14290 GLsizei depth;
14291 GLint border;
14292 GLenum format;
14293 GLenum type;
14294 const void *pixels;
14297 struct glMultiTexParameterIivEXT_params
14299 TEB *teb;
14300 GLenum texunit;
14301 GLenum target;
14302 GLenum pname;
14303 const GLint *params;
14306 struct glMultiTexParameterIuivEXT_params
14308 TEB *teb;
14309 GLenum texunit;
14310 GLenum target;
14311 GLenum pname;
14312 const GLuint *params;
14315 struct glMultiTexParameterfEXT_params
14317 TEB *teb;
14318 GLenum texunit;
14319 GLenum target;
14320 GLenum pname;
14321 GLfloat param;
14324 struct glMultiTexParameterfvEXT_params
14326 TEB *teb;
14327 GLenum texunit;
14328 GLenum target;
14329 GLenum pname;
14330 const GLfloat *params;
14333 struct glMultiTexParameteriEXT_params
14335 TEB *teb;
14336 GLenum texunit;
14337 GLenum target;
14338 GLenum pname;
14339 GLint param;
14342 struct glMultiTexParameterivEXT_params
14344 TEB *teb;
14345 GLenum texunit;
14346 GLenum target;
14347 GLenum pname;
14348 const GLint *params;
14351 struct glMultiTexRenderbufferEXT_params
14353 TEB *teb;
14354 GLenum texunit;
14355 GLenum target;
14356 GLuint renderbuffer;
14359 struct glMultiTexSubImage1DEXT_params
14361 TEB *teb;
14362 GLenum texunit;
14363 GLenum target;
14364 GLint level;
14365 GLint xoffset;
14366 GLsizei width;
14367 GLenum format;
14368 GLenum type;
14369 const void *pixels;
14372 struct glMultiTexSubImage2DEXT_params
14374 TEB *teb;
14375 GLenum texunit;
14376 GLenum target;
14377 GLint level;
14378 GLint xoffset;
14379 GLint yoffset;
14380 GLsizei width;
14381 GLsizei height;
14382 GLenum format;
14383 GLenum type;
14384 const void *pixels;
14387 struct glMultiTexSubImage3DEXT_params
14389 TEB *teb;
14390 GLenum texunit;
14391 GLenum target;
14392 GLint level;
14393 GLint xoffset;
14394 GLint yoffset;
14395 GLint zoffset;
14396 GLsizei width;
14397 GLsizei height;
14398 GLsizei depth;
14399 GLenum format;
14400 GLenum type;
14401 const void *pixels;
14404 struct glMulticastBarrierNV_params
14406 TEB *teb;
14409 struct glMulticastBlitFramebufferNV_params
14411 TEB *teb;
14412 GLuint srcGpu;
14413 GLuint dstGpu;
14414 GLint srcX0;
14415 GLint srcY0;
14416 GLint srcX1;
14417 GLint srcY1;
14418 GLint dstX0;
14419 GLint dstY0;
14420 GLint dstX1;
14421 GLint dstY1;
14422 GLbitfield mask;
14423 GLenum filter;
14426 struct glMulticastBufferSubDataNV_params
14428 TEB *teb;
14429 GLbitfield gpuMask;
14430 GLuint buffer;
14431 GLintptr offset;
14432 GLsizeiptr size;
14433 const void *data;
14436 struct glMulticastCopyBufferSubDataNV_params
14438 TEB *teb;
14439 GLuint readGpu;
14440 GLbitfield writeGpuMask;
14441 GLuint readBuffer;
14442 GLuint writeBuffer;
14443 GLintptr readOffset;
14444 GLintptr writeOffset;
14445 GLsizeiptr size;
14448 struct glMulticastCopyImageSubDataNV_params
14450 TEB *teb;
14451 GLuint srcGpu;
14452 GLbitfield dstGpuMask;
14453 GLuint srcName;
14454 GLenum srcTarget;
14455 GLint srcLevel;
14456 GLint srcX;
14457 GLint srcY;
14458 GLint srcZ;
14459 GLuint dstName;
14460 GLenum dstTarget;
14461 GLint dstLevel;
14462 GLint dstX;
14463 GLint dstY;
14464 GLint dstZ;
14465 GLsizei srcWidth;
14466 GLsizei srcHeight;
14467 GLsizei srcDepth;
14470 struct glMulticastFramebufferSampleLocationsfvNV_params
14472 TEB *teb;
14473 GLuint gpu;
14474 GLuint framebuffer;
14475 GLuint start;
14476 GLsizei count;
14477 const GLfloat *v;
14480 struct glMulticastGetQueryObjecti64vNV_params
14482 TEB *teb;
14483 GLuint gpu;
14484 GLuint id;
14485 GLenum pname;
14486 GLint64 *params;
14489 struct glMulticastGetQueryObjectivNV_params
14491 TEB *teb;
14492 GLuint gpu;
14493 GLuint id;
14494 GLenum pname;
14495 GLint *params;
14498 struct glMulticastGetQueryObjectui64vNV_params
14500 TEB *teb;
14501 GLuint gpu;
14502 GLuint id;
14503 GLenum pname;
14504 GLuint64 *params;
14507 struct glMulticastGetQueryObjectuivNV_params
14509 TEB *teb;
14510 GLuint gpu;
14511 GLuint id;
14512 GLenum pname;
14513 GLuint *params;
14516 struct glMulticastScissorArrayvNVX_params
14518 TEB *teb;
14519 GLuint gpu;
14520 GLuint first;
14521 GLsizei count;
14522 const GLint *v;
14525 struct glMulticastViewportArrayvNVX_params
14527 TEB *teb;
14528 GLuint gpu;
14529 GLuint first;
14530 GLsizei count;
14531 const GLfloat *v;
14534 struct glMulticastViewportPositionWScaleNVX_params
14536 TEB *teb;
14537 GLuint gpu;
14538 GLuint index;
14539 GLfloat xcoeff;
14540 GLfloat ycoeff;
14543 struct glMulticastWaitSyncNV_params
14545 TEB *teb;
14546 GLuint signalGpu;
14547 GLbitfield waitGpuMask;
14550 struct glNamedBufferAttachMemoryNV_params
14552 TEB *teb;
14553 GLuint buffer;
14554 GLuint memory;
14555 GLuint64 offset;
14558 struct glNamedBufferData_params
14560 TEB *teb;
14561 GLuint buffer;
14562 GLsizeiptr size;
14563 const void *data;
14564 GLenum usage;
14567 struct glNamedBufferDataEXT_params
14569 TEB *teb;
14570 GLuint buffer;
14571 GLsizeiptr size;
14572 const void *data;
14573 GLenum usage;
14576 struct glNamedBufferPageCommitmentARB_params
14578 TEB *teb;
14579 GLuint buffer;
14580 GLintptr offset;
14581 GLsizeiptr size;
14582 GLboolean commit;
14585 struct glNamedBufferPageCommitmentEXT_params
14587 TEB *teb;
14588 GLuint buffer;
14589 GLintptr offset;
14590 GLsizeiptr size;
14591 GLboolean commit;
14594 struct glNamedBufferStorage_params
14596 TEB *teb;
14597 GLuint buffer;
14598 GLsizeiptr size;
14599 const void *data;
14600 GLbitfield flags;
14603 struct glNamedBufferStorageEXT_params
14605 TEB *teb;
14606 GLuint buffer;
14607 GLsizeiptr size;
14608 const void *data;
14609 GLbitfield flags;
14612 struct glNamedBufferStorageExternalEXT_params
14614 TEB *teb;
14615 GLuint buffer;
14616 GLintptr offset;
14617 GLsizeiptr size;
14618 GLeglClientBufferEXT clientBuffer;
14619 GLbitfield flags;
14622 struct glNamedBufferStorageMemEXT_params
14624 TEB *teb;
14625 GLuint buffer;
14626 GLsizeiptr size;
14627 GLuint memory;
14628 GLuint64 offset;
14631 struct glNamedBufferSubData_params
14633 TEB *teb;
14634 GLuint buffer;
14635 GLintptr offset;
14636 GLsizeiptr size;
14637 const void *data;
14640 struct glNamedBufferSubDataEXT_params
14642 TEB *teb;
14643 GLuint buffer;
14644 GLintptr offset;
14645 GLsizeiptr size;
14646 const void *data;
14649 struct glNamedCopyBufferSubDataEXT_params
14651 TEB *teb;
14652 GLuint readBuffer;
14653 GLuint writeBuffer;
14654 GLintptr readOffset;
14655 GLintptr writeOffset;
14656 GLsizeiptr size;
14659 struct glNamedFramebufferDrawBuffer_params
14661 TEB *teb;
14662 GLuint framebuffer;
14663 GLenum buf;
14666 struct glNamedFramebufferDrawBuffers_params
14668 TEB *teb;
14669 GLuint framebuffer;
14670 GLsizei n;
14671 const GLenum *bufs;
14674 struct glNamedFramebufferParameteri_params
14676 TEB *teb;
14677 GLuint framebuffer;
14678 GLenum pname;
14679 GLint param;
14682 struct glNamedFramebufferParameteriEXT_params
14684 TEB *teb;
14685 GLuint framebuffer;
14686 GLenum pname;
14687 GLint param;
14690 struct glNamedFramebufferReadBuffer_params
14692 TEB *teb;
14693 GLuint framebuffer;
14694 GLenum src;
14697 struct glNamedFramebufferRenderbuffer_params
14699 TEB *teb;
14700 GLuint framebuffer;
14701 GLenum attachment;
14702 GLenum renderbuffertarget;
14703 GLuint renderbuffer;
14706 struct glNamedFramebufferRenderbufferEXT_params
14708 TEB *teb;
14709 GLuint framebuffer;
14710 GLenum attachment;
14711 GLenum renderbuffertarget;
14712 GLuint renderbuffer;
14715 struct glNamedFramebufferSampleLocationsfvARB_params
14717 TEB *teb;
14718 GLuint framebuffer;
14719 GLuint start;
14720 GLsizei count;
14721 const GLfloat *v;
14724 struct glNamedFramebufferSampleLocationsfvNV_params
14726 TEB *teb;
14727 GLuint framebuffer;
14728 GLuint start;
14729 GLsizei count;
14730 const GLfloat *v;
14733 struct glNamedFramebufferSamplePositionsfvAMD_params
14735 TEB *teb;
14736 GLuint framebuffer;
14737 GLuint numsamples;
14738 GLuint pixelindex;
14739 const GLfloat *values;
14742 struct glNamedFramebufferTexture_params
14744 TEB *teb;
14745 GLuint framebuffer;
14746 GLenum attachment;
14747 GLuint texture;
14748 GLint level;
14751 struct glNamedFramebufferTexture1DEXT_params
14753 TEB *teb;
14754 GLuint framebuffer;
14755 GLenum attachment;
14756 GLenum textarget;
14757 GLuint texture;
14758 GLint level;
14761 struct glNamedFramebufferTexture2DEXT_params
14763 TEB *teb;
14764 GLuint framebuffer;
14765 GLenum attachment;
14766 GLenum textarget;
14767 GLuint texture;
14768 GLint level;
14771 struct glNamedFramebufferTexture3DEXT_params
14773 TEB *teb;
14774 GLuint framebuffer;
14775 GLenum attachment;
14776 GLenum textarget;
14777 GLuint texture;
14778 GLint level;
14779 GLint zoffset;
14782 struct glNamedFramebufferTextureEXT_params
14784 TEB *teb;
14785 GLuint framebuffer;
14786 GLenum attachment;
14787 GLuint texture;
14788 GLint level;
14791 struct glNamedFramebufferTextureFaceEXT_params
14793 TEB *teb;
14794 GLuint framebuffer;
14795 GLenum attachment;
14796 GLuint texture;
14797 GLint level;
14798 GLenum face;
14801 struct glNamedFramebufferTextureLayer_params
14803 TEB *teb;
14804 GLuint framebuffer;
14805 GLenum attachment;
14806 GLuint texture;
14807 GLint level;
14808 GLint layer;
14811 struct glNamedFramebufferTextureLayerEXT_params
14813 TEB *teb;
14814 GLuint framebuffer;
14815 GLenum attachment;
14816 GLuint texture;
14817 GLint level;
14818 GLint layer;
14821 struct glNamedProgramLocalParameter4dEXT_params
14823 TEB *teb;
14824 GLuint program;
14825 GLenum target;
14826 GLuint index;
14827 GLdouble x;
14828 GLdouble y;
14829 GLdouble z;
14830 GLdouble w;
14833 struct glNamedProgramLocalParameter4dvEXT_params
14835 TEB *teb;
14836 GLuint program;
14837 GLenum target;
14838 GLuint index;
14839 const GLdouble *params;
14842 struct glNamedProgramLocalParameter4fEXT_params
14844 TEB *teb;
14845 GLuint program;
14846 GLenum target;
14847 GLuint index;
14848 GLfloat x;
14849 GLfloat y;
14850 GLfloat z;
14851 GLfloat w;
14854 struct glNamedProgramLocalParameter4fvEXT_params
14856 TEB *teb;
14857 GLuint program;
14858 GLenum target;
14859 GLuint index;
14860 const GLfloat *params;
14863 struct glNamedProgramLocalParameterI4iEXT_params
14865 TEB *teb;
14866 GLuint program;
14867 GLenum target;
14868 GLuint index;
14869 GLint x;
14870 GLint y;
14871 GLint z;
14872 GLint w;
14875 struct glNamedProgramLocalParameterI4ivEXT_params
14877 TEB *teb;
14878 GLuint program;
14879 GLenum target;
14880 GLuint index;
14881 const GLint *params;
14884 struct glNamedProgramLocalParameterI4uiEXT_params
14886 TEB *teb;
14887 GLuint program;
14888 GLenum target;
14889 GLuint index;
14890 GLuint x;
14891 GLuint y;
14892 GLuint z;
14893 GLuint w;
14896 struct glNamedProgramLocalParameterI4uivEXT_params
14898 TEB *teb;
14899 GLuint program;
14900 GLenum target;
14901 GLuint index;
14902 const GLuint *params;
14905 struct glNamedProgramLocalParameters4fvEXT_params
14907 TEB *teb;
14908 GLuint program;
14909 GLenum target;
14910 GLuint index;
14911 GLsizei count;
14912 const GLfloat *params;
14915 struct glNamedProgramLocalParametersI4ivEXT_params
14917 TEB *teb;
14918 GLuint program;
14919 GLenum target;
14920 GLuint index;
14921 GLsizei count;
14922 const GLint *params;
14925 struct glNamedProgramLocalParametersI4uivEXT_params
14927 TEB *teb;
14928 GLuint program;
14929 GLenum target;
14930 GLuint index;
14931 GLsizei count;
14932 const GLuint *params;
14935 struct glNamedProgramStringEXT_params
14937 TEB *teb;
14938 GLuint program;
14939 GLenum target;
14940 GLenum format;
14941 GLsizei len;
14942 const void *string;
14945 struct glNamedRenderbufferStorage_params
14947 TEB *teb;
14948 GLuint renderbuffer;
14949 GLenum internalformat;
14950 GLsizei width;
14951 GLsizei height;
14954 struct glNamedRenderbufferStorageEXT_params
14956 TEB *teb;
14957 GLuint renderbuffer;
14958 GLenum internalformat;
14959 GLsizei width;
14960 GLsizei height;
14963 struct glNamedRenderbufferStorageMultisample_params
14965 TEB *teb;
14966 GLuint renderbuffer;
14967 GLsizei samples;
14968 GLenum internalformat;
14969 GLsizei width;
14970 GLsizei height;
14973 struct glNamedRenderbufferStorageMultisampleAdvancedAMD_params
14975 TEB *teb;
14976 GLuint renderbuffer;
14977 GLsizei samples;
14978 GLsizei storageSamples;
14979 GLenum internalformat;
14980 GLsizei width;
14981 GLsizei height;
14984 struct glNamedRenderbufferStorageMultisampleCoverageEXT_params
14986 TEB *teb;
14987 GLuint renderbuffer;
14988 GLsizei coverageSamples;
14989 GLsizei colorSamples;
14990 GLenum internalformat;
14991 GLsizei width;
14992 GLsizei height;
14995 struct glNamedRenderbufferStorageMultisampleEXT_params
14997 TEB *teb;
14998 GLuint renderbuffer;
14999 GLsizei samples;
15000 GLenum internalformat;
15001 GLsizei width;
15002 GLsizei height;
15005 struct glNamedStringARB_params
15007 TEB *teb;
15008 GLenum type;
15009 GLint namelen;
15010 const GLchar *name;
15011 GLint stringlen;
15012 const GLchar *string;
15015 struct glNewBufferRegion_params
15017 TEB *teb;
15018 GLenum type;
15019 GLuint ret;
15022 struct glNewObjectBufferATI_params
15024 TEB *teb;
15025 GLsizei size;
15026 const void *pointer;
15027 GLenum usage;
15028 GLuint ret;
15031 struct glNormal3fVertex3fSUN_params
15033 TEB *teb;
15034 GLfloat nx;
15035 GLfloat ny;
15036 GLfloat nz;
15037 GLfloat x;
15038 GLfloat y;
15039 GLfloat z;
15042 struct glNormal3fVertex3fvSUN_params
15044 TEB *teb;
15045 const GLfloat *n;
15046 const GLfloat *v;
15049 struct glNormal3hNV_params
15051 TEB *teb;
15052 GLhalfNV nx;
15053 GLhalfNV ny;
15054 GLhalfNV nz;
15057 struct glNormal3hvNV_params
15059 TEB *teb;
15060 const GLhalfNV *v;
15063 struct glNormal3xOES_params
15065 TEB *teb;
15066 GLfixed nx;
15067 GLfixed ny;
15068 GLfixed nz;
15071 struct glNormal3xvOES_params
15073 TEB *teb;
15074 const GLfixed *coords;
15077 struct glNormalFormatNV_params
15079 TEB *teb;
15080 GLenum type;
15081 GLsizei stride;
15084 struct glNormalP3ui_params
15086 TEB *teb;
15087 GLenum type;
15088 GLuint coords;
15091 struct glNormalP3uiv_params
15093 TEB *teb;
15094 GLenum type;
15095 const GLuint *coords;
15098 struct glNormalPointerEXT_params
15100 TEB *teb;
15101 GLenum type;
15102 GLsizei stride;
15103 GLsizei count;
15104 const void *pointer;
15107 struct glNormalPointerListIBM_params
15109 TEB *teb;
15110 GLenum type;
15111 GLint stride;
15112 const void **pointer;
15113 GLint ptrstride;
15116 struct glNormalPointervINTEL_params
15118 TEB *teb;
15119 GLenum type;
15120 const void **pointer;
15123 struct glNormalStream3bATI_params
15125 TEB *teb;
15126 GLenum stream;
15127 GLbyte nx;
15128 GLbyte ny;
15129 GLbyte nz;
15132 struct glNormalStream3bvATI_params
15134 TEB *teb;
15135 GLenum stream;
15136 const GLbyte *coords;
15139 struct glNormalStream3dATI_params
15141 TEB *teb;
15142 GLenum stream;
15143 GLdouble nx;
15144 GLdouble ny;
15145 GLdouble nz;
15148 struct glNormalStream3dvATI_params
15150 TEB *teb;
15151 GLenum stream;
15152 const GLdouble *coords;
15155 struct glNormalStream3fATI_params
15157 TEB *teb;
15158 GLenum stream;
15159 GLfloat nx;
15160 GLfloat ny;
15161 GLfloat nz;
15164 struct glNormalStream3fvATI_params
15166 TEB *teb;
15167 GLenum stream;
15168 const GLfloat *coords;
15171 struct glNormalStream3iATI_params
15173 TEB *teb;
15174 GLenum stream;
15175 GLint nx;
15176 GLint ny;
15177 GLint nz;
15180 struct glNormalStream3ivATI_params
15182 TEB *teb;
15183 GLenum stream;
15184 const GLint *coords;
15187 struct glNormalStream3sATI_params
15189 TEB *teb;
15190 GLenum stream;
15191 GLshort nx;
15192 GLshort ny;
15193 GLshort nz;
15196 struct glNormalStream3svATI_params
15198 TEB *teb;
15199 GLenum stream;
15200 const GLshort *coords;
15203 struct glObjectLabel_params
15205 TEB *teb;
15206 GLenum identifier;
15207 GLuint name;
15208 GLsizei length;
15209 const GLchar *label;
15212 struct glObjectPtrLabel_params
15214 TEB *teb;
15215 const void *ptr;
15216 GLsizei length;
15217 const GLchar *label;
15220 struct glObjectPurgeableAPPLE_params
15222 TEB *teb;
15223 GLenum objectType;
15224 GLuint name;
15225 GLenum option;
15226 GLenum ret;
15229 struct glObjectUnpurgeableAPPLE_params
15231 TEB *teb;
15232 GLenum objectType;
15233 GLuint name;
15234 GLenum option;
15235 GLenum ret;
15238 struct glOrthofOES_params
15240 TEB *teb;
15241 GLfloat l;
15242 GLfloat r;
15243 GLfloat b;
15244 GLfloat t;
15245 GLfloat n;
15246 GLfloat f;
15249 struct glOrthoxOES_params
15251 TEB *teb;
15252 GLfixed l;
15253 GLfixed r;
15254 GLfixed b;
15255 GLfixed t;
15256 GLfixed n;
15257 GLfixed f;
15260 struct glPNTrianglesfATI_params
15262 TEB *teb;
15263 GLenum pname;
15264 GLfloat param;
15267 struct glPNTrianglesiATI_params
15269 TEB *teb;
15270 GLenum pname;
15271 GLint param;
15274 struct glPassTexCoordATI_params
15276 TEB *teb;
15277 GLuint dst;
15278 GLuint coord;
15279 GLenum swizzle;
15282 struct glPassThroughxOES_params
15284 TEB *teb;
15285 GLfixed token;
15288 struct glPatchParameterfv_params
15290 TEB *teb;
15291 GLenum pname;
15292 const GLfloat *values;
15295 struct glPatchParameteri_params
15297 TEB *teb;
15298 GLenum pname;
15299 GLint value;
15302 struct glPathColorGenNV_params
15304 TEB *teb;
15305 GLenum color;
15306 GLenum genMode;
15307 GLenum colorFormat;
15308 const GLfloat *coeffs;
15311 struct glPathCommandsNV_params
15313 TEB *teb;
15314 GLuint path;
15315 GLsizei numCommands;
15316 const GLubyte *commands;
15317 GLsizei numCoords;
15318 GLenum coordType;
15319 const void *coords;
15322 struct glPathCoordsNV_params
15324 TEB *teb;
15325 GLuint path;
15326 GLsizei numCoords;
15327 GLenum coordType;
15328 const void *coords;
15331 struct glPathCoverDepthFuncNV_params
15333 TEB *teb;
15334 GLenum func;
15337 struct glPathDashArrayNV_params
15339 TEB *teb;
15340 GLuint path;
15341 GLsizei dashCount;
15342 const GLfloat *dashArray;
15345 struct glPathFogGenNV_params
15347 TEB *teb;
15348 GLenum genMode;
15351 struct glPathGlyphIndexArrayNV_params
15353 TEB *teb;
15354 GLuint firstPathName;
15355 GLenum fontTarget;
15356 const void *fontName;
15357 GLbitfield fontStyle;
15358 GLuint firstGlyphIndex;
15359 GLsizei numGlyphs;
15360 GLuint pathParameterTemplate;
15361 GLfloat emScale;
15362 GLenum ret;
15365 struct glPathGlyphIndexRangeNV_params
15367 TEB *teb;
15368 GLenum fontTarget;
15369 const void *fontName;
15370 GLbitfield fontStyle;
15371 GLuint pathParameterTemplate;
15372 GLfloat emScale;
15373 GLuint baseAndCount[2];
15374 GLenum ret;
15377 struct glPathGlyphRangeNV_params
15379 TEB *teb;
15380 GLuint firstPathName;
15381 GLenum fontTarget;
15382 const void *fontName;
15383 GLbitfield fontStyle;
15384 GLuint firstGlyph;
15385 GLsizei numGlyphs;
15386 GLenum handleMissingGlyphs;
15387 GLuint pathParameterTemplate;
15388 GLfloat emScale;
15391 struct glPathGlyphsNV_params
15393 TEB *teb;
15394 GLuint firstPathName;
15395 GLenum fontTarget;
15396 const void *fontName;
15397 GLbitfield fontStyle;
15398 GLsizei numGlyphs;
15399 GLenum type;
15400 const void *charcodes;
15401 GLenum handleMissingGlyphs;
15402 GLuint pathParameterTemplate;
15403 GLfloat emScale;
15406 struct glPathMemoryGlyphIndexArrayNV_params
15408 TEB *teb;
15409 GLuint firstPathName;
15410 GLenum fontTarget;
15411 GLsizeiptr fontSize;
15412 const void *fontData;
15413 GLsizei faceIndex;
15414 GLuint firstGlyphIndex;
15415 GLsizei numGlyphs;
15416 GLuint pathParameterTemplate;
15417 GLfloat emScale;
15418 GLenum ret;
15421 struct glPathParameterfNV_params
15423 TEB *teb;
15424 GLuint path;
15425 GLenum pname;
15426 GLfloat value;
15429 struct glPathParameterfvNV_params
15431 TEB *teb;
15432 GLuint path;
15433 GLenum pname;
15434 const GLfloat *value;
15437 struct glPathParameteriNV_params
15439 TEB *teb;
15440 GLuint path;
15441 GLenum pname;
15442 GLint value;
15445 struct glPathParameterivNV_params
15447 TEB *teb;
15448 GLuint path;
15449 GLenum pname;
15450 const GLint *value;
15453 struct glPathStencilDepthOffsetNV_params
15455 TEB *teb;
15456 GLfloat factor;
15457 GLfloat units;
15460 struct glPathStencilFuncNV_params
15462 TEB *teb;
15463 GLenum func;
15464 GLint ref;
15465 GLuint mask;
15468 struct glPathStringNV_params
15470 TEB *teb;
15471 GLuint path;
15472 GLenum format;
15473 GLsizei length;
15474 const void *pathString;
15477 struct glPathSubCommandsNV_params
15479 TEB *teb;
15480 GLuint path;
15481 GLsizei commandStart;
15482 GLsizei commandsToDelete;
15483 GLsizei numCommands;
15484 const GLubyte *commands;
15485 GLsizei numCoords;
15486 GLenum coordType;
15487 const void *coords;
15490 struct glPathSubCoordsNV_params
15492 TEB *teb;
15493 GLuint path;
15494 GLsizei coordStart;
15495 GLsizei numCoords;
15496 GLenum coordType;
15497 const void *coords;
15500 struct glPathTexGenNV_params
15502 TEB *teb;
15503 GLenum texCoordSet;
15504 GLenum genMode;
15505 GLint components;
15506 const GLfloat *coeffs;
15509 struct glPauseTransformFeedback_params
15511 TEB *teb;
15514 struct glPauseTransformFeedbackNV_params
15516 TEB *teb;
15519 struct glPixelDataRangeNV_params
15521 TEB *teb;
15522 GLenum target;
15523 GLsizei length;
15524 const void *pointer;
15527 struct glPixelMapx_params
15529 TEB *teb;
15530 GLenum map;
15531 GLint size;
15532 const GLfixed *values;
15535 struct glPixelStorex_params
15537 TEB *teb;
15538 GLenum pname;
15539 GLfixed param;
15542 struct glPixelTexGenParameterfSGIS_params
15544 TEB *teb;
15545 GLenum pname;
15546 GLfloat param;
15549 struct glPixelTexGenParameterfvSGIS_params
15551 TEB *teb;
15552 GLenum pname;
15553 const GLfloat *params;
15556 struct glPixelTexGenParameteriSGIS_params
15558 TEB *teb;
15559 GLenum pname;
15560 GLint param;
15563 struct glPixelTexGenParameterivSGIS_params
15565 TEB *teb;
15566 GLenum pname;
15567 const GLint *params;
15570 struct glPixelTexGenSGIX_params
15572 TEB *teb;
15573 GLenum mode;
15576 struct glPixelTransferxOES_params
15578 TEB *teb;
15579 GLenum pname;
15580 GLfixed param;
15583 struct glPixelTransformParameterfEXT_params
15585 TEB *teb;
15586 GLenum target;
15587 GLenum pname;
15588 GLfloat param;
15591 struct glPixelTransformParameterfvEXT_params
15593 TEB *teb;
15594 GLenum target;
15595 GLenum pname;
15596 const GLfloat *params;
15599 struct glPixelTransformParameteriEXT_params
15601 TEB *teb;
15602 GLenum target;
15603 GLenum pname;
15604 GLint param;
15607 struct glPixelTransformParameterivEXT_params
15609 TEB *teb;
15610 GLenum target;
15611 GLenum pname;
15612 const GLint *params;
15615 struct glPixelZoomxOES_params
15617 TEB *teb;
15618 GLfixed xfactor;
15619 GLfixed yfactor;
15622 struct glPointAlongPathNV_params
15624 TEB *teb;
15625 GLuint path;
15626 GLsizei startSegment;
15627 GLsizei numSegments;
15628 GLfloat distance;
15629 GLfloat *x;
15630 GLfloat *y;
15631 GLfloat *tangentX;
15632 GLfloat *tangentY;
15633 GLboolean ret;
15636 struct glPointParameterf_params
15638 TEB *teb;
15639 GLenum pname;
15640 GLfloat param;
15643 struct glPointParameterfARB_params
15645 TEB *teb;
15646 GLenum pname;
15647 GLfloat param;
15650 struct glPointParameterfEXT_params
15652 TEB *teb;
15653 GLenum pname;
15654 GLfloat param;
15657 struct glPointParameterfSGIS_params
15659 TEB *teb;
15660 GLenum pname;
15661 GLfloat param;
15664 struct glPointParameterfv_params
15666 TEB *teb;
15667 GLenum pname;
15668 const GLfloat *params;
15671 struct glPointParameterfvARB_params
15673 TEB *teb;
15674 GLenum pname;
15675 const GLfloat *params;
15678 struct glPointParameterfvEXT_params
15680 TEB *teb;
15681 GLenum pname;
15682 const GLfloat *params;
15685 struct glPointParameterfvSGIS_params
15687 TEB *teb;
15688 GLenum pname;
15689 const GLfloat *params;
15692 struct glPointParameteri_params
15694 TEB *teb;
15695 GLenum pname;
15696 GLint param;
15699 struct glPointParameteriNV_params
15701 TEB *teb;
15702 GLenum pname;
15703 GLint param;
15706 struct glPointParameteriv_params
15708 TEB *teb;
15709 GLenum pname;
15710 const GLint *params;
15713 struct glPointParameterivNV_params
15715 TEB *teb;
15716 GLenum pname;
15717 const GLint *params;
15720 struct glPointParameterxvOES_params
15722 TEB *teb;
15723 GLenum pname;
15724 const GLfixed *params;
15727 struct glPointSizexOES_params
15729 TEB *teb;
15730 GLfixed size;
15733 struct glPollAsyncSGIX_params
15735 TEB *teb;
15736 GLuint *markerp;
15737 GLint ret;
15740 struct glPollInstrumentsSGIX_params
15742 TEB *teb;
15743 GLint *marker_p;
15744 GLint ret;
15747 struct glPolygonOffsetClamp_params
15749 TEB *teb;
15750 GLfloat factor;
15751 GLfloat units;
15752 GLfloat clamp;
15755 struct glPolygonOffsetClampEXT_params
15757 TEB *teb;
15758 GLfloat factor;
15759 GLfloat units;
15760 GLfloat clamp;
15763 struct glPolygonOffsetEXT_params
15765 TEB *teb;
15766 GLfloat factor;
15767 GLfloat bias;
15770 struct glPolygonOffsetxOES_params
15772 TEB *teb;
15773 GLfixed factor;
15774 GLfixed units;
15777 struct glPopDebugGroup_params
15779 TEB *teb;
15782 struct glPopGroupMarkerEXT_params
15784 TEB *teb;
15787 struct glPresentFrameDualFillNV_params
15789 TEB *teb;
15790 GLuint video_slot;
15791 GLuint64EXT minPresentTime;
15792 GLuint beginPresentTimeId;
15793 GLuint presentDurationId;
15794 GLenum type;
15795 GLenum target0;
15796 GLuint fill0;
15797 GLenum target1;
15798 GLuint fill1;
15799 GLenum target2;
15800 GLuint fill2;
15801 GLenum target3;
15802 GLuint fill3;
15805 struct glPresentFrameKeyedNV_params
15807 TEB *teb;
15808 GLuint video_slot;
15809 GLuint64EXT minPresentTime;
15810 GLuint beginPresentTimeId;
15811 GLuint presentDurationId;
15812 GLenum type;
15813 GLenum target0;
15814 GLuint fill0;
15815 GLuint key0;
15816 GLenum target1;
15817 GLuint fill1;
15818 GLuint key1;
15821 struct glPrimitiveBoundingBoxARB_params
15823 TEB *teb;
15824 GLfloat minX;
15825 GLfloat minY;
15826 GLfloat minZ;
15827 GLfloat minW;
15828 GLfloat maxX;
15829 GLfloat maxY;
15830 GLfloat maxZ;
15831 GLfloat maxW;
15834 struct glPrimitiveRestartIndex_params
15836 TEB *teb;
15837 GLuint index;
15840 struct glPrimitiveRestartIndexNV_params
15842 TEB *teb;
15843 GLuint index;
15846 struct glPrimitiveRestartNV_params
15848 TEB *teb;
15851 struct glPrioritizeTexturesEXT_params
15853 TEB *teb;
15854 GLsizei n;
15855 const GLuint *textures;
15856 const GLclampf *priorities;
15859 struct glPrioritizeTexturesxOES_params
15861 TEB *teb;
15862 GLsizei n;
15863 const GLuint *textures;
15864 const GLfixed *priorities;
15867 struct glProgramBinary_params
15869 TEB *teb;
15870 GLuint program;
15871 GLenum binaryFormat;
15872 const void *binary;
15873 GLsizei length;
15876 struct glProgramBufferParametersIivNV_params
15878 TEB *teb;
15879 GLenum target;
15880 GLuint bindingIndex;
15881 GLuint wordIndex;
15882 GLsizei count;
15883 const GLint *params;
15886 struct glProgramBufferParametersIuivNV_params
15888 TEB *teb;
15889 GLenum target;
15890 GLuint bindingIndex;
15891 GLuint wordIndex;
15892 GLsizei count;
15893 const GLuint *params;
15896 struct glProgramBufferParametersfvNV_params
15898 TEB *teb;
15899 GLenum target;
15900 GLuint bindingIndex;
15901 GLuint wordIndex;
15902 GLsizei count;
15903 const GLfloat *params;
15906 struct glProgramEnvParameter4dARB_params
15908 TEB *teb;
15909 GLenum target;
15910 GLuint index;
15911 GLdouble x;
15912 GLdouble y;
15913 GLdouble z;
15914 GLdouble w;
15917 struct glProgramEnvParameter4dvARB_params
15919 TEB *teb;
15920 GLenum target;
15921 GLuint index;
15922 const GLdouble *params;
15925 struct glProgramEnvParameter4fARB_params
15927 TEB *teb;
15928 GLenum target;
15929 GLuint index;
15930 GLfloat x;
15931 GLfloat y;
15932 GLfloat z;
15933 GLfloat w;
15936 struct glProgramEnvParameter4fvARB_params
15938 TEB *teb;
15939 GLenum target;
15940 GLuint index;
15941 const GLfloat *params;
15944 struct glProgramEnvParameterI4iNV_params
15946 TEB *teb;
15947 GLenum target;
15948 GLuint index;
15949 GLint x;
15950 GLint y;
15951 GLint z;
15952 GLint w;
15955 struct glProgramEnvParameterI4ivNV_params
15957 TEB *teb;
15958 GLenum target;
15959 GLuint index;
15960 const GLint *params;
15963 struct glProgramEnvParameterI4uiNV_params
15965 TEB *teb;
15966 GLenum target;
15967 GLuint index;
15968 GLuint x;
15969 GLuint y;
15970 GLuint z;
15971 GLuint w;
15974 struct glProgramEnvParameterI4uivNV_params
15976 TEB *teb;
15977 GLenum target;
15978 GLuint index;
15979 const GLuint *params;
15982 struct glProgramEnvParameters4fvEXT_params
15984 TEB *teb;
15985 GLenum target;
15986 GLuint index;
15987 GLsizei count;
15988 const GLfloat *params;
15991 struct glProgramEnvParametersI4ivNV_params
15993 TEB *teb;
15994 GLenum target;
15995 GLuint index;
15996 GLsizei count;
15997 const GLint *params;
16000 struct glProgramEnvParametersI4uivNV_params
16002 TEB *teb;
16003 GLenum target;
16004 GLuint index;
16005 GLsizei count;
16006 const GLuint *params;
16009 struct glProgramLocalParameter4dARB_params
16011 TEB *teb;
16012 GLenum target;
16013 GLuint index;
16014 GLdouble x;
16015 GLdouble y;
16016 GLdouble z;
16017 GLdouble w;
16020 struct glProgramLocalParameter4dvARB_params
16022 TEB *teb;
16023 GLenum target;
16024 GLuint index;
16025 const GLdouble *params;
16028 struct glProgramLocalParameter4fARB_params
16030 TEB *teb;
16031 GLenum target;
16032 GLuint index;
16033 GLfloat x;
16034 GLfloat y;
16035 GLfloat z;
16036 GLfloat w;
16039 struct glProgramLocalParameter4fvARB_params
16041 TEB *teb;
16042 GLenum target;
16043 GLuint index;
16044 const GLfloat *params;
16047 struct glProgramLocalParameterI4iNV_params
16049 TEB *teb;
16050 GLenum target;
16051 GLuint index;
16052 GLint x;
16053 GLint y;
16054 GLint z;
16055 GLint w;
16058 struct glProgramLocalParameterI4ivNV_params
16060 TEB *teb;
16061 GLenum target;
16062 GLuint index;
16063 const GLint *params;
16066 struct glProgramLocalParameterI4uiNV_params
16068 TEB *teb;
16069 GLenum target;
16070 GLuint index;
16071 GLuint x;
16072 GLuint y;
16073 GLuint z;
16074 GLuint w;
16077 struct glProgramLocalParameterI4uivNV_params
16079 TEB *teb;
16080 GLenum target;
16081 GLuint index;
16082 const GLuint *params;
16085 struct glProgramLocalParameters4fvEXT_params
16087 TEB *teb;
16088 GLenum target;
16089 GLuint index;
16090 GLsizei count;
16091 const GLfloat *params;
16094 struct glProgramLocalParametersI4ivNV_params
16096 TEB *teb;
16097 GLenum target;
16098 GLuint index;
16099 GLsizei count;
16100 const GLint *params;
16103 struct glProgramLocalParametersI4uivNV_params
16105 TEB *teb;
16106 GLenum target;
16107 GLuint index;
16108 GLsizei count;
16109 const GLuint *params;
16112 struct glProgramNamedParameter4dNV_params
16114 TEB *teb;
16115 GLuint id;
16116 GLsizei len;
16117 const GLubyte *name;
16118 GLdouble x;
16119 GLdouble y;
16120 GLdouble z;
16121 GLdouble w;
16124 struct glProgramNamedParameter4dvNV_params
16126 TEB *teb;
16127 GLuint id;
16128 GLsizei len;
16129 const GLubyte *name;
16130 const GLdouble *v;
16133 struct glProgramNamedParameter4fNV_params
16135 TEB *teb;
16136 GLuint id;
16137 GLsizei len;
16138 const GLubyte *name;
16139 GLfloat x;
16140 GLfloat y;
16141 GLfloat z;
16142 GLfloat w;
16145 struct glProgramNamedParameter4fvNV_params
16147 TEB *teb;
16148 GLuint id;
16149 GLsizei len;
16150 const GLubyte *name;
16151 const GLfloat *v;
16154 struct glProgramParameter4dNV_params
16156 TEB *teb;
16157 GLenum target;
16158 GLuint index;
16159 GLdouble x;
16160 GLdouble y;
16161 GLdouble z;
16162 GLdouble w;
16165 struct glProgramParameter4dvNV_params
16167 TEB *teb;
16168 GLenum target;
16169 GLuint index;
16170 const GLdouble *v;
16173 struct glProgramParameter4fNV_params
16175 TEB *teb;
16176 GLenum target;
16177 GLuint index;
16178 GLfloat x;
16179 GLfloat y;
16180 GLfloat z;
16181 GLfloat w;
16184 struct glProgramParameter4fvNV_params
16186 TEB *teb;
16187 GLenum target;
16188 GLuint index;
16189 const GLfloat *v;
16192 struct glProgramParameteri_params
16194 TEB *teb;
16195 GLuint program;
16196 GLenum pname;
16197 GLint value;
16200 struct glProgramParameteriARB_params
16202 TEB *teb;
16203 GLuint program;
16204 GLenum pname;
16205 GLint value;
16208 struct glProgramParameteriEXT_params
16210 TEB *teb;
16211 GLuint program;
16212 GLenum pname;
16213 GLint value;
16216 struct glProgramParameters4dvNV_params
16218 TEB *teb;
16219 GLenum target;
16220 GLuint index;
16221 GLsizei count;
16222 const GLdouble *v;
16225 struct glProgramParameters4fvNV_params
16227 TEB *teb;
16228 GLenum target;
16229 GLuint index;
16230 GLsizei count;
16231 const GLfloat *v;
16234 struct glProgramPathFragmentInputGenNV_params
16236 TEB *teb;
16237 GLuint program;
16238 GLint location;
16239 GLenum genMode;
16240 GLint components;
16241 const GLfloat *coeffs;
16244 struct glProgramStringARB_params
16246 TEB *teb;
16247 GLenum target;
16248 GLenum format;
16249 GLsizei len;
16250 const void *string;
16253 struct glProgramSubroutineParametersuivNV_params
16255 TEB *teb;
16256 GLenum target;
16257 GLsizei count;
16258 const GLuint *params;
16261 struct glProgramUniform1d_params
16263 TEB *teb;
16264 GLuint program;
16265 GLint location;
16266 GLdouble v0;
16269 struct glProgramUniform1dEXT_params
16271 TEB *teb;
16272 GLuint program;
16273 GLint location;
16274 GLdouble x;
16277 struct glProgramUniform1dv_params
16279 TEB *teb;
16280 GLuint program;
16281 GLint location;
16282 GLsizei count;
16283 const GLdouble *value;
16286 struct glProgramUniform1dvEXT_params
16288 TEB *teb;
16289 GLuint program;
16290 GLint location;
16291 GLsizei count;
16292 const GLdouble *value;
16295 struct glProgramUniform1f_params
16297 TEB *teb;
16298 GLuint program;
16299 GLint location;
16300 GLfloat v0;
16303 struct glProgramUniform1fEXT_params
16305 TEB *teb;
16306 GLuint program;
16307 GLint location;
16308 GLfloat v0;
16311 struct glProgramUniform1fv_params
16313 TEB *teb;
16314 GLuint program;
16315 GLint location;
16316 GLsizei count;
16317 const GLfloat *value;
16320 struct glProgramUniform1fvEXT_params
16322 TEB *teb;
16323 GLuint program;
16324 GLint location;
16325 GLsizei count;
16326 const GLfloat *value;
16329 struct glProgramUniform1i_params
16331 TEB *teb;
16332 GLuint program;
16333 GLint location;
16334 GLint v0;
16337 struct glProgramUniform1i64ARB_params
16339 TEB *teb;
16340 GLuint program;
16341 GLint location;
16342 GLint64 x;
16345 struct glProgramUniform1i64NV_params
16347 TEB *teb;
16348 GLuint program;
16349 GLint location;
16350 GLint64EXT x;
16353 struct glProgramUniform1i64vARB_params
16355 TEB *teb;
16356 GLuint program;
16357 GLint location;
16358 GLsizei count;
16359 const GLint64 *value;
16362 struct glProgramUniform1i64vNV_params
16364 TEB *teb;
16365 GLuint program;
16366 GLint location;
16367 GLsizei count;
16368 const GLint64EXT *value;
16371 struct glProgramUniform1iEXT_params
16373 TEB *teb;
16374 GLuint program;
16375 GLint location;
16376 GLint v0;
16379 struct glProgramUniform1iv_params
16381 TEB *teb;
16382 GLuint program;
16383 GLint location;
16384 GLsizei count;
16385 const GLint *value;
16388 struct glProgramUniform1ivEXT_params
16390 TEB *teb;
16391 GLuint program;
16392 GLint location;
16393 GLsizei count;
16394 const GLint *value;
16397 struct glProgramUniform1ui_params
16399 TEB *teb;
16400 GLuint program;
16401 GLint location;
16402 GLuint v0;
16405 struct glProgramUniform1ui64ARB_params
16407 TEB *teb;
16408 GLuint program;
16409 GLint location;
16410 GLuint64 x;
16413 struct glProgramUniform1ui64NV_params
16415 TEB *teb;
16416 GLuint program;
16417 GLint location;
16418 GLuint64EXT x;
16421 struct glProgramUniform1ui64vARB_params
16423 TEB *teb;
16424 GLuint program;
16425 GLint location;
16426 GLsizei count;
16427 const GLuint64 *value;
16430 struct glProgramUniform1ui64vNV_params
16432 TEB *teb;
16433 GLuint program;
16434 GLint location;
16435 GLsizei count;
16436 const GLuint64EXT *value;
16439 struct glProgramUniform1uiEXT_params
16441 TEB *teb;
16442 GLuint program;
16443 GLint location;
16444 GLuint v0;
16447 struct glProgramUniform1uiv_params
16449 TEB *teb;
16450 GLuint program;
16451 GLint location;
16452 GLsizei count;
16453 const GLuint *value;
16456 struct glProgramUniform1uivEXT_params
16458 TEB *teb;
16459 GLuint program;
16460 GLint location;
16461 GLsizei count;
16462 const GLuint *value;
16465 struct glProgramUniform2d_params
16467 TEB *teb;
16468 GLuint program;
16469 GLint location;
16470 GLdouble v0;
16471 GLdouble v1;
16474 struct glProgramUniform2dEXT_params
16476 TEB *teb;
16477 GLuint program;
16478 GLint location;
16479 GLdouble x;
16480 GLdouble y;
16483 struct glProgramUniform2dv_params
16485 TEB *teb;
16486 GLuint program;
16487 GLint location;
16488 GLsizei count;
16489 const GLdouble *value;
16492 struct glProgramUniform2dvEXT_params
16494 TEB *teb;
16495 GLuint program;
16496 GLint location;
16497 GLsizei count;
16498 const GLdouble *value;
16501 struct glProgramUniform2f_params
16503 TEB *teb;
16504 GLuint program;
16505 GLint location;
16506 GLfloat v0;
16507 GLfloat v1;
16510 struct glProgramUniform2fEXT_params
16512 TEB *teb;
16513 GLuint program;
16514 GLint location;
16515 GLfloat v0;
16516 GLfloat v1;
16519 struct glProgramUniform2fv_params
16521 TEB *teb;
16522 GLuint program;
16523 GLint location;
16524 GLsizei count;
16525 const GLfloat *value;
16528 struct glProgramUniform2fvEXT_params
16530 TEB *teb;
16531 GLuint program;
16532 GLint location;
16533 GLsizei count;
16534 const GLfloat *value;
16537 struct glProgramUniform2i_params
16539 TEB *teb;
16540 GLuint program;
16541 GLint location;
16542 GLint v0;
16543 GLint v1;
16546 struct glProgramUniform2i64ARB_params
16548 TEB *teb;
16549 GLuint program;
16550 GLint location;
16551 GLint64 x;
16552 GLint64 y;
16555 struct glProgramUniform2i64NV_params
16557 TEB *teb;
16558 GLuint program;
16559 GLint location;
16560 GLint64EXT x;
16561 GLint64EXT y;
16564 struct glProgramUniform2i64vARB_params
16566 TEB *teb;
16567 GLuint program;
16568 GLint location;
16569 GLsizei count;
16570 const GLint64 *value;
16573 struct glProgramUniform2i64vNV_params
16575 TEB *teb;
16576 GLuint program;
16577 GLint location;
16578 GLsizei count;
16579 const GLint64EXT *value;
16582 struct glProgramUniform2iEXT_params
16584 TEB *teb;
16585 GLuint program;
16586 GLint location;
16587 GLint v0;
16588 GLint v1;
16591 struct glProgramUniform2iv_params
16593 TEB *teb;
16594 GLuint program;
16595 GLint location;
16596 GLsizei count;
16597 const GLint *value;
16600 struct glProgramUniform2ivEXT_params
16602 TEB *teb;
16603 GLuint program;
16604 GLint location;
16605 GLsizei count;
16606 const GLint *value;
16609 struct glProgramUniform2ui_params
16611 TEB *teb;
16612 GLuint program;
16613 GLint location;
16614 GLuint v0;
16615 GLuint v1;
16618 struct glProgramUniform2ui64ARB_params
16620 TEB *teb;
16621 GLuint program;
16622 GLint location;
16623 GLuint64 x;
16624 GLuint64 y;
16627 struct glProgramUniform2ui64NV_params
16629 TEB *teb;
16630 GLuint program;
16631 GLint location;
16632 GLuint64EXT x;
16633 GLuint64EXT y;
16636 struct glProgramUniform2ui64vARB_params
16638 TEB *teb;
16639 GLuint program;
16640 GLint location;
16641 GLsizei count;
16642 const GLuint64 *value;
16645 struct glProgramUniform2ui64vNV_params
16647 TEB *teb;
16648 GLuint program;
16649 GLint location;
16650 GLsizei count;
16651 const GLuint64EXT *value;
16654 struct glProgramUniform2uiEXT_params
16656 TEB *teb;
16657 GLuint program;
16658 GLint location;
16659 GLuint v0;
16660 GLuint v1;
16663 struct glProgramUniform2uiv_params
16665 TEB *teb;
16666 GLuint program;
16667 GLint location;
16668 GLsizei count;
16669 const GLuint *value;
16672 struct glProgramUniform2uivEXT_params
16674 TEB *teb;
16675 GLuint program;
16676 GLint location;
16677 GLsizei count;
16678 const GLuint *value;
16681 struct glProgramUniform3d_params
16683 TEB *teb;
16684 GLuint program;
16685 GLint location;
16686 GLdouble v0;
16687 GLdouble v1;
16688 GLdouble v2;
16691 struct glProgramUniform3dEXT_params
16693 TEB *teb;
16694 GLuint program;
16695 GLint location;
16696 GLdouble x;
16697 GLdouble y;
16698 GLdouble z;
16701 struct glProgramUniform3dv_params
16703 TEB *teb;
16704 GLuint program;
16705 GLint location;
16706 GLsizei count;
16707 const GLdouble *value;
16710 struct glProgramUniform3dvEXT_params
16712 TEB *teb;
16713 GLuint program;
16714 GLint location;
16715 GLsizei count;
16716 const GLdouble *value;
16719 struct glProgramUniform3f_params
16721 TEB *teb;
16722 GLuint program;
16723 GLint location;
16724 GLfloat v0;
16725 GLfloat v1;
16726 GLfloat v2;
16729 struct glProgramUniform3fEXT_params
16731 TEB *teb;
16732 GLuint program;
16733 GLint location;
16734 GLfloat v0;
16735 GLfloat v1;
16736 GLfloat v2;
16739 struct glProgramUniform3fv_params
16741 TEB *teb;
16742 GLuint program;
16743 GLint location;
16744 GLsizei count;
16745 const GLfloat *value;
16748 struct glProgramUniform3fvEXT_params
16750 TEB *teb;
16751 GLuint program;
16752 GLint location;
16753 GLsizei count;
16754 const GLfloat *value;
16757 struct glProgramUniform3i_params
16759 TEB *teb;
16760 GLuint program;
16761 GLint location;
16762 GLint v0;
16763 GLint v1;
16764 GLint v2;
16767 struct glProgramUniform3i64ARB_params
16769 TEB *teb;
16770 GLuint program;
16771 GLint location;
16772 GLint64 x;
16773 GLint64 y;
16774 GLint64 z;
16777 struct glProgramUniform3i64NV_params
16779 TEB *teb;
16780 GLuint program;
16781 GLint location;
16782 GLint64EXT x;
16783 GLint64EXT y;
16784 GLint64EXT z;
16787 struct glProgramUniform3i64vARB_params
16789 TEB *teb;
16790 GLuint program;
16791 GLint location;
16792 GLsizei count;
16793 const GLint64 *value;
16796 struct glProgramUniform3i64vNV_params
16798 TEB *teb;
16799 GLuint program;
16800 GLint location;
16801 GLsizei count;
16802 const GLint64EXT *value;
16805 struct glProgramUniform3iEXT_params
16807 TEB *teb;
16808 GLuint program;
16809 GLint location;
16810 GLint v0;
16811 GLint v1;
16812 GLint v2;
16815 struct glProgramUniform3iv_params
16817 TEB *teb;
16818 GLuint program;
16819 GLint location;
16820 GLsizei count;
16821 const GLint *value;
16824 struct glProgramUniform3ivEXT_params
16826 TEB *teb;
16827 GLuint program;
16828 GLint location;
16829 GLsizei count;
16830 const GLint *value;
16833 struct glProgramUniform3ui_params
16835 TEB *teb;
16836 GLuint program;
16837 GLint location;
16838 GLuint v0;
16839 GLuint v1;
16840 GLuint v2;
16843 struct glProgramUniform3ui64ARB_params
16845 TEB *teb;
16846 GLuint program;
16847 GLint location;
16848 GLuint64 x;
16849 GLuint64 y;
16850 GLuint64 z;
16853 struct glProgramUniform3ui64NV_params
16855 TEB *teb;
16856 GLuint program;
16857 GLint location;
16858 GLuint64EXT x;
16859 GLuint64EXT y;
16860 GLuint64EXT z;
16863 struct glProgramUniform3ui64vARB_params
16865 TEB *teb;
16866 GLuint program;
16867 GLint location;
16868 GLsizei count;
16869 const GLuint64 *value;
16872 struct glProgramUniform3ui64vNV_params
16874 TEB *teb;
16875 GLuint program;
16876 GLint location;
16877 GLsizei count;
16878 const GLuint64EXT *value;
16881 struct glProgramUniform3uiEXT_params
16883 TEB *teb;
16884 GLuint program;
16885 GLint location;
16886 GLuint v0;
16887 GLuint v1;
16888 GLuint v2;
16891 struct glProgramUniform3uiv_params
16893 TEB *teb;
16894 GLuint program;
16895 GLint location;
16896 GLsizei count;
16897 const GLuint *value;
16900 struct glProgramUniform3uivEXT_params
16902 TEB *teb;
16903 GLuint program;
16904 GLint location;
16905 GLsizei count;
16906 const GLuint *value;
16909 struct glProgramUniform4d_params
16911 TEB *teb;
16912 GLuint program;
16913 GLint location;
16914 GLdouble v0;
16915 GLdouble v1;
16916 GLdouble v2;
16917 GLdouble v3;
16920 struct glProgramUniform4dEXT_params
16922 TEB *teb;
16923 GLuint program;
16924 GLint location;
16925 GLdouble x;
16926 GLdouble y;
16927 GLdouble z;
16928 GLdouble w;
16931 struct glProgramUniform4dv_params
16933 TEB *teb;
16934 GLuint program;
16935 GLint location;
16936 GLsizei count;
16937 const GLdouble *value;
16940 struct glProgramUniform4dvEXT_params
16942 TEB *teb;
16943 GLuint program;
16944 GLint location;
16945 GLsizei count;
16946 const GLdouble *value;
16949 struct glProgramUniform4f_params
16951 TEB *teb;
16952 GLuint program;
16953 GLint location;
16954 GLfloat v0;
16955 GLfloat v1;
16956 GLfloat v2;
16957 GLfloat v3;
16960 struct glProgramUniform4fEXT_params
16962 TEB *teb;
16963 GLuint program;
16964 GLint location;
16965 GLfloat v0;
16966 GLfloat v1;
16967 GLfloat v2;
16968 GLfloat v3;
16971 struct glProgramUniform4fv_params
16973 TEB *teb;
16974 GLuint program;
16975 GLint location;
16976 GLsizei count;
16977 const GLfloat *value;
16980 struct glProgramUniform4fvEXT_params
16982 TEB *teb;
16983 GLuint program;
16984 GLint location;
16985 GLsizei count;
16986 const GLfloat *value;
16989 struct glProgramUniform4i_params
16991 TEB *teb;
16992 GLuint program;
16993 GLint location;
16994 GLint v0;
16995 GLint v1;
16996 GLint v2;
16997 GLint v3;
17000 struct glProgramUniform4i64ARB_params
17002 TEB *teb;
17003 GLuint program;
17004 GLint location;
17005 GLint64 x;
17006 GLint64 y;
17007 GLint64 z;
17008 GLint64 w;
17011 struct glProgramUniform4i64NV_params
17013 TEB *teb;
17014 GLuint program;
17015 GLint location;
17016 GLint64EXT x;
17017 GLint64EXT y;
17018 GLint64EXT z;
17019 GLint64EXT w;
17022 struct glProgramUniform4i64vARB_params
17024 TEB *teb;
17025 GLuint program;
17026 GLint location;
17027 GLsizei count;
17028 const GLint64 *value;
17031 struct glProgramUniform4i64vNV_params
17033 TEB *teb;
17034 GLuint program;
17035 GLint location;
17036 GLsizei count;
17037 const GLint64EXT *value;
17040 struct glProgramUniform4iEXT_params
17042 TEB *teb;
17043 GLuint program;
17044 GLint location;
17045 GLint v0;
17046 GLint v1;
17047 GLint v2;
17048 GLint v3;
17051 struct glProgramUniform4iv_params
17053 TEB *teb;
17054 GLuint program;
17055 GLint location;
17056 GLsizei count;
17057 const GLint *value;
17060 struct glProgramUniform4ivEXT_params
17062 TEB *teb;
17063 GLuint program;
17064 GLint location;
17065 GLsizei count;
17066 const GLint *value;
17069 struct glProgramUniform4ui_params
17071 TEB *teb;
17072 GLuint program;
17073 GLint location;
17074 GLuint v0;
17075 GLuint v1;
17076 GLuint v2;
17077 GLuint v3;
17080 struct glProgramUniform4ui64ARB_params
17082 TEB *teb;
17083 GLuint program;
17084 GLint location;
17085 GLuint64 x;
17086 GLuint64 y;
17087 GLuint64 z;
17088 GLuint64 w;
17091 struct glProgramUniform4ui64NV_params
17093 TEB *teb;
17094 GLuint program;
17095 GLint location;
17096 GLuint64EXT x;
17097 GLuint64EXT y;
17098 GLuint64EXT z;
17099 GLuint64EXT w;
17102 struct glProgramUniform4ui64vARB_params
17104 TEB *teb;
17105 GLuint program;
17106 GLint location;
17107 GLsizei count;
17108 const GLuint64 *value;
17111 struct glProgramUniform4ui64vNV_params
17113 TEB *teb;
17114 GLuint program;
17115 GLint location;
17116 GLsizei count;
17117 const GLuint64EXT *value;
17120 struct glProgramUniform4uiEXT_params
17122 TEB *teb;
17123 GLuint program;
17124 GLint location;
17125 GLuint v0;
17126 GLuint v1;
17127 GLuint v2;
17128 GLuint v3;
17131 struct glProgramUniform4uiv_params
17133 TEB *teb;
17134 GLuint program;
17135 GLint location;
17136 GLsizei count;
17137 const GLuint *value;
17140 struct glProgramUniform4uivEXT_params
17142 TEB *teb;
17143 GLuint program;
17144 GLint location;
17145 GLsizei count;
17146 const GLuint *value;
17149 struct glProgramUniformHandleui64ARB_params
17151 TEB *teb;
17152 GLuint program;
17153 GLint location;
17154 GLuint64 value;
17157 struct glProgramUniformHandleui64NV_params
17159 TEB *teb;
17160 GLuint program;
17161 GLint location;
17162 GLuint64 value;
17165 struct glProgramUniformHandleui64vARB_params
17167 TEB *teb;
17168 GLuint program;
17169 GLint location;
17170 GLsizei count;
17171 const GLuint64 *values;
17174 struct glProgramUniformHandleui64vNV_params
17176 TEB *teb;
17177 GLuint program;
17178 GLint location;
17179 GLsizei count;
17180 const GLuint64 *values;
17183 struct glProgramUniformMatrix2dv_params
17185 TEB *teb;
17186 GLuint program;
17187 GLint location;
17188 GLsizei count;
17189 GLboolean transpose;
17190 const GLdouble *value;
17193 struct glProgramUniformMatrix2dvEXT_params
17195 TEB *teb;
17196 GLuint program;
17197 GLint location;
17198 GLsizei count;
17199 GLboolean transpose;
17200 const GLdouble *value;
17203 struct glProgramUniformMatrix2fv_params
17205 TEB *teb;
17206 GLuint program;
17207 GLint location;
17208 GLsizei count;
17209 GLboolean transpose;
17210 const GLfloat *value;
17213 struct glProgramUniformMatrix2fvEXT_params
17215 TEB *teb;
17216 GLuint program;
17217 GLint location;
17218 GLsizei count;
17219 GLboolean transpose;
17220 const GLfloat *value;
17223 struct glProgramUniformMatrix2x3dv_params
17225 TEB *teb;
17226 GLuint program;
17227 GLint location;
17228 GLsizei count;
17229 GLboolean transpose;
17230 const GLdouble *value;
17233 struct glProgramUniformMatrix2x3dvEXT_params
17235 TEB *teb;
17236 GLuint program;
17237 GLint location;
17238 GLsizei count;
17239 GLboolean transpose;
17240 const GLdouble *value;
17243 struct glProgramUniformMatrix2x3fv_params
17245 TEB *teb;
17246 GLuint program;
17247 GLint location;
17248 GLsizei count;
17249 GLboolean transpose;
17250 const GLfloat *value;
17253 struct glProgramUniformMatrix2x3fvEXT_params
17255 TEB *teb;
17256 GLuint program;
17257 GLint location;
17258 GLsizei count;
17259 GLboolean transpose;
17260 const GLfloat *value;
17263 struct glProgramUniformMatrix2x4dv_params
17265 TEB *teb;
17266 GLuint program;
17267 GLint location;
17268 GLsizei count;
17269 GLboolean transpose;
17270 const GLdouble *value;
17273 struct glProgramUniformMatrix2x4dvEXT_params
17275 TEB *teb;
17276 GLuint program;
17277 GLint location;
17278 GLsizei count;
17279 GLboolean transpose;
17280 const GLdouble *value;
17283 struct glProgramUniformMatrix2x4fv_params
17285 TEB *teb;
17286 GLuint program;
17287 GLint location;
17288 GLsizei count;
17289 GLboolean transpose;
17290 const GLfloat *value;
17293 struct glProgramUniformMatrix2x4fvEXT_params
17295 TEB *teb;
17296 GLuint program;
17297 GLint location;
17298 GLsizei count;
17299 GLboolean transpose;
17300 const GLfloat *value;
17303 struct glProgramUniformMatrix3dv_params
17305 TEB *teb;
17306 GLuint program;
17307 GLint location;
17308 GLsizei count;
17309 GLboolean transpose;
17310 const GLdouble *value;
17313 struct glProgramUniformMatrix3dvEXT_params
17315 TEB *teb;
17316 GLuint program;
17317 GLint location;
17318 GLsizei count;
17319 GLboolean transpose;
17320 const GLdouble *value;
17323 struct glProgramUniformMatrix3fv_params
17325 TEB *teb;
17326 GLuint program;
17327 GLint location;
17328 GLsizei count;
17329 GLboolean transpose;
17330 const GLfloat *value;
17333 struct glProgramUniformMatrix3fvEXT_params
17335 TEB *teb;
17336 GLuint program;
17337 GLint location;
17338 GLsizei count;
17339 GLboolean transpose;
17340 const GLfloat *value;
17343 struct glProgramUniformMatrix3x2dv_params
17345 TEB *teb;
17346 GLuint program;
17347 GLint location;
17348 GLsizei count;
17349 GLboolean transpose;
17350 const GLdouble *value;
17353 struct glProgramUniformMatrix3x2dvEXT_params
17355 TEB *teb;
17356 GLuint program;
17357 GLint location;
17358 GLsizei count;
17359 GLboolean transpose;
17360 const GLdouble *value;
17363 struct glProgramUniformMatrix3x2fv_params
17365 TEB *teb;
17366 GLuint program;
17367 GLint location;
17368 GLsizei count;
17369 GLboolean transpose;
17370 const GLfloat *value;
17373 struct glProgramUniformMatrix3x2fvEXT_params
17375 TEB *teb;
17376 GLuint program;
17377 GLint location;
17378 GLsizei count;
17379 GLboolean transpose;
17380 const GLfloat *value;
17383 struct glProgramUniformMatrix3x4dv_params
17385 TEB *teb;
17386 GLuint program;
17387 GLint location;
17388 GLsizei count;
17389 GLboolean transpose;
17390 const GLdouble *value;
17393 struct glProgramUniformMatrix3x4dvEXT_params
17395 TEB *teb;
17396 GLuint program;
17397 GLint location;
17398 GLsizei count;
17399 GLboolean transpose;
17400 const GLdouble *value;
17403 struct glProgramUniformMatrix3x4fv_params
17405 TEB *teb;
17406 GLuint program;
17407 GLint location;
17408 GLsizei count;
17409 GLboolean transpose;
17410 const GLfloat *value;
17413 struct glProgramUniformMatrix3x4fvEXT_params
17415 TEB *teb;
17416 GLuint program;
17417 GLint location;
17418 GLsizei count;
17419 GLboolean transpose;
17420 const GLfloat *value;
17423 struct glProgramUniformMatrix4dv_params
17425 TEB *teb;
17426 GLuint program;
17427 GLint location;
17428 GLsizei count;
17429 GLboolean transpose;
17430 const GLdouble *value;
17433 struct glProgramUniformMatrix4dvEXT_params
17435 TEB *teb;
17436 GLuint program;
17437 GLint location;
17438 GLsizei count;
17439 GLboolean transpose;
17440 const GLdouble *value;
17443 struct glProgramUniformMatrix4fv_params
17445 TEB *teb;
17446 GLuint program;
17447 GLint location;
17448 GLsizei count;
17449 GLboolean transpose;
17450 const GLfloat *value;
17453 struct glProgramUniformMatrix4fvEXT_params
17455 TEB *teb;
17456 GLuint program;
17457 GLint location;
17458 GLsizei count;
17459 GLboolean transpose;
17460 const GLfloat *value;
17463 struct glProgramUniformMatrix4x2dv_params
17465 TEB *teb;
17466 GLuint program;
17467 GLint location;
17468 GLsizei count;
17469 GLboolean transpose;
17470 const GLdouble *value;
17473 struct glProgramUniformMatrix4x2dvEXT_params
17475 TEB *teb;
17476 GLuint program;
17477 GLint location;
17478 GLsizei count;
17479 GLboolean transpose;
17480 const GLdouble *value;
17483 struct glProgramUniformMatrix4x2fv_params
17485 TEB *teb;
17486 GLuint program;
17487 GLint location;
17488 GLsizei count;
17489 GLboolean transpose;
17490 const GLfloat *value;
17493 struct glProgramUniformMatrix4x2fvEXT_params
17495 TEB *teb;
17496 GLuint program;
17497 GLint location;
17498 GLsizei count;
17499 GLboolean transpose;
17500 const GLfloat *value;
17503 struct glProgramUniformMatrix4x3dv_params
17505 TEB *teb;
17506 GLuint program;
17507 GLint location;
17508 GLsizei count;
17509 GLboolean transpose;
17510 const GLdouble *value;
17513 struct glProgramUniformMatrix4x3dvEXT_params
17515 TEB *teb;
17516 GLuint program;
17517 GLint location;
17518 GLsizei count;
17519 GLboolean transpose;
17520 const GLdouble *value;
17523 struct glProgramUniformMatrix4x3fv_params
17525 TEB *teb;
17526 GLuint program;
17527 GLint location;
17528 GLsizei count;
17529 GLboolean transpose;
17530 const GLfloat *value;
17533 struct glProgramUniformMatrix4x3fvEXT_params
17535 TEB *teb;
17536 GLuint program;
17537 GLint location;
17538 GLsizei count;
17539 GLboolean transpose;
17540 const GLfloat *value;
17543 struct glProgramUniformui64NV_params
17545 TEB *teb;
17546 GLuint program;
17547 GLint location;
17548 GLuint64EXT value;
17551 struct glProgramUniformui64vNV_params
17553 TEB *teb;
17554 GLuint program;
17555 GLint location;
17556 GLsizei count;
17557 const GLuint64EXT *value;
17560 struct glProgramVertexLimitNV_params
17562 TEB *teb;
17563 GLenum target;
17564 GLint limit;
17567 struct glProvokingVertex_params
17569 TEB *teb;
17570 GLenum mode;
17573 struct glProvokingVertexEXT_params
17575 TEB *teb;
17576 GLenum mode;
17579 struct glPushClientAttribDefaultEXT_params
17581 TEB *teb;
17582 GLbitfield mask;
17585 struct glPushDebugGroup_params
17587 TEB *teb;
17588 GLenum source;
17589 GLuint id;
17590 GLsizei length;
17591 const GLchar *message;
17594 struct glPushGroupMarkerEXT_params
17596 TEB *teb;
17597 GLsizei length;
17598 const GLchar *marker;
17601 struct glQueryCounter_params
17603 TEB *teb;
17604 GLuint id;
17605 GLenum target;
17608 struct glQueryMatrixxOES_params
17610 TEB *teb;
17611 GLfixed *mantissa;
17612 GLint *exponent;
17613 GLbitfield ret;
17616 struct glQueryObjectParameteruiAMD_params
17618 TEB *teb;
17619 GLenum target;
17620 GLuint id;
17621 GLenum pname;
17622 GLuint param;
17625 struct glQueryResourceNV_params
17627 TEB *teb;
17628 GLenum queryType;
17629 GLint tagId;
17630 GLuint count;
17631 GLint *buffer;
17632 GLint ret;
17635 struct glQueryResourceTagNV_params
17637 TEB *teb;
17638 GLint tagId;
17639 const GLchar *tagString;
17642 struct glRasterPos2xOES_params
17644 TEB *teb;
17645 GLfixed x;
17646 GLfixed y;
17649 struct glRasterPos2xvOES_params
17651 TEB *teb;
17652 const GLfixed *coords;
17655 struct glRasterPos3xOES_params
17657 TEB *teb;
17658 GLfixed x;
17659 GLfixed y;
17660 GLfixed z;
17663 struct glRasterPos3xvOES_params
17665 TEB *teb;
17666 const GLfixed *coords;
17669 struct glRasterPos4xOES_params
17671 TEB *teb;
17672 GLfixed x;
17673 GLfixed y;
17674 GLfixed z;
17675 GLfixed w;
17678 struct glRasterPos4xvOES_params
17680 TEB *teb;
17681 const GLfixed *coords;
17684 struct glRasterSamplesEXT_params
17686 TEB *teb;
17687 GLuint samples;
17688 GLboolean fixedsamplelocations;
17691 struct glReadBufferRegion_params
17693 TEB *teb;
17694 GLenum region;
17695 GLint x;
17696 GLint y;
17697 GLsizei width;
17698 GLsizei height;
17701 struct glReadInstrumentsSGIX_params
17703 TEB *teb;
17704 GLint marker;
17707 struct glReadnPixels_params
17709 TEB *teb;
17710 GLint x;
17711 GLint y;
17712 GLsizei width;
17713 GLsizei height;
17714 GLenum format;
17715 GLenum type;
17716 GLsizei bufSize;
17717 void *data;
17720 struct glReadnPixelsARB_params
17722 TEB *teb;
17723 GLint x;
17724 GLint y;
17725 GLsizei width;
17726 GLsizei height;
17727 GLenum format;
17728 GLenum type;
17729 GLsizei bufSize;
17730 void *data;
17733 struct glRectxOES_params
17735 TEB *teb;
17736 GLfixed x1;
17737 GLfixed y1;
17738 GLfixed x2;
17739 GLfixed y2;
17742 struct glRectxvOES_params
17744 TEB *teb;
17745 const GLfixed *v1;
17746 const GLfixed *v2;
17749 struct glReferencePlaneSGIX_params
17751 TEB *teb;
17752 const GLdouble *equation;
17755 struct glReleaseKeyedMutexWin32EXT_params
17757 TEB *teb;
17758 GLuint memory;
17759 GLuint64 key;
17760 GLboolean ret;
17763 struct glReleaseShaderCompiler_params
17765 TEB *teb;
17768 struct glRenderGpuMaskNV_params
17770 TEB *teb;
17771 GLbitfield mask;
17774 struct glRenderbufferStorage_params
17776 TEB *teb;
17777 GLenum target;
17778 GLenum internalformat;
17779 GLsizei width;
17780 GLsizei height;
17783 struct glRenderbufferStorageEXT_params
17785 TEB *teb;
17786 GLenum target;
17787 GLenum internalformat;
17788 GLsizei width;
17789 GLsizei height;
17792 struct glRenderbufferStorageMultisample_params
17794 TEB *teb;
17795 GLenum target;
17796 GLsizei samples;
17797 GLenum internalformat;
17798 GLsizei width;
17799 GLsizei height;
17802 struct glRenderbufferStorageMultisampleAdvancedAMD_params
17804 TEB *teb;
17805 GLenum target;
17806 GLsizei samples;
17807 GLsizei storageSamples;
17808 GLenum internalformat;
17809 GLsizei width;
17810 GLsizei height;
17813 struct glRenderbufferStorageMultisampleCoverageNV_params
17815 TEB *teb;
17816 GLenum target;
17817 GLsizei coverageSamples;
17818 GLsizei colorSamples;
17819 GLenum internalformat;
17820 GLsizei width;
17821 GLsizei height;
17824 struct glRenderbufferStorageMultisampleEXT_params
17826 TEB *teb;
17827 GLenum target;
17828 GLsizei samples;
17829 GLenum internalformat;
17830 GLsizei width;
17831 GLsizei height;
17834 struct glReplacementCodePointerSUN_params
17836 TEB *teb;
17837 GLenum type;
17838 GLsizei stride;
17839 const void **pointer;
17842 struct glReplacementCodeubSUN_params
17844 TEB *teb;
17845 GLubyte code;
17848 struct glReplacementCodeubvSUN_params
17850 TEB *teb;
17851 const GLubyte *code;
17854 struct glReplacementCodeuiColor3fVertex3fSUN_params
17856 TEB *teb;
17857 GLuint rc;
17858 GLfloat r;
17859 GLfloat g;
17860 GLfloat b;
17861 GLfloat x;
17862 GLfloat y;
17863 GLfloat z;
17866 struct glReplacementCodeuiColor3fVertex3fvSUN_params
17868 TEB *teb;
17869 const GLuint *rc;
17870 const GLfloat *c;
17871 const GLfloat *v;
17874 struct glReplacementCodeuiColor4fNormal3fVertex3fSUN_params
17876 TEB *teb;
17877 GLuint rc;
17878 GLfloat r;
17879 GLfloat g;
17880 GLfloat b;
17881 GLfloat a;
17882 GLfloat nx;
17883 GLfloat ny;
17884 GLfloat nz;
17885 GLfloat x;
17886 GLfloat y;
17887 GLfloat z;
17890 struct glReplacementCodeuiColor4fNormal3fVertex3fvSUN_params
17892 TEB *teb;
17893 const GLuint *rc;
17894 const GLfloat *c;
17895 const GLfloat *n;
17896 const GLfloat *v;
17899 struct glReplacementCodeuiColor4ubVertex3fSUN_params
17901 TEB *teb;
17902 GLuint rc;
17903 GLubyte r;
17904 GLubyte g;
17905 GLubyte b;
17906 GLubyte a;
17907 GLfloat x;
17908 GLfloat y;
17909 GLfloat z;
17912 struct glReplacementCodeuiColor4ubVertex3fvSUN_params
17914 TEB *teb;
17915 const GLuint *rc;
17916 const GLubyte *c;
17917 const GLfloat *v;
17920 struct glReplacementCodeuiNormal3fVertex3fSUN_params
17922 TEB *teb;
17923 GLuint rc;
17924 GLfloat nx;
17925 GLfloat ny;
17926 GLfloat nz;
17927 GLfloat x;
17928 GLfloat y;
17929 GLfloat z;
17932 struct glReplacementCodeuiNormal3fVertex3fvSUN_params
17934 TEB *teb;
17935 const GLuint *rc;
17936 const GLfloat *n;
17937 const GLfloat *v;
17940 struct glReplacementCodeuiSUN_params
17942 TEB *teb;
17943 GLuint code;
17946 struct glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN_params
17948 TEB *teb;
17949 GLuint rc;
17950 GLfloat s;
17951 GLfloat t;
17952 GLfloat r;
17953 GLfloat g;
17954 GLfloat b;
17955 GLfloat a;
17956 GLfloat nx;
17957 GLfloat ny;
17958 GLfloat nz;
17959 GLfloat x;
17960 GLfloat y;
17961 GLfloat z;
17964 struct glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN_params
17966 TEB *teb;
17967 const GLuint *rc;
17968 const GLfloat *tc;
17969 const GLfloat *c;
17970 const GLfloat *n;
17971 const GLfloat *v;
17974 struct glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN_params
17976 TEB *teb;
17977 GLuint rc;
17978 GLfloat s;
17979 GLfloat t;
17980 GLfloat nx;
17981 GLfloat ny;
17982 GLfloat nz;
17983 GLfloat x;
17984 GLfloat y;
17985 GLfloat z;
17988 struct glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN_params
17990 TEB *teb;
17991 const GLuint *rc;
17992 const GLfloat *tc;
17993 const GLfloat *n;
17994 const GLfloat *v;
17997 struct glReplacementCodeuiTexCoord2fVertex3fSUN_params
17999 TEB *teb;
18000 GLuint rc;
18001 GLfloat s;
18002 GLfloat t;
18003 GLfloat x;
18004 GLfloat y;
18005 GLfloat z;
18008 struct glReplacementCodeuiTexCoord2fVertex3fvSUN_params
18010 TEB *teb;
18011 const GLuint *rc;
18012 const GLfloat *tc;
18013 const GLfloat *v;
18016 struct glReplacementCodeuiVertex3fSUN_params
18018 TEB *teb;
18019 GLuint rc;
18020 GLfloat x;
18021 GLfloat y;
18022 GLfloat z;
18025 struct glReplacementCodeuiVertex3fvSUN_params
18027 TEB *teb;
18028 const GLuint *rc;
18029 const GLfloat *v;
18032 struct glReplacementCodeuivSUN_params
18034 TEB *teb;
18035 const GLuint *code;
18038 struct glReplacementCodeusSUN_params
18040 TEB *teb;
18041 GLushort code;
18044 struct glReplacementCodeusvSUN_params
18046 TEB *teb;
18047 const GLushort *code;
18050 struct glRequestResidentProgramsNV_params
18052 TEB *teb;
18053 GLsizei n;
18054 const GLuint *programs;
18057 struct glResetHistogram_params
18059 TEB *teb;
18060 GLenum target;
18063 struct glResetHistogramEXT_params
18065 TEB *teb;
18066 GLenum target;
18069 struct glResetMemoryObjectParameterNV_params
18071 TEB *teb;
18072 GLuint memory;
18073 GLenum pname;
18076 struct glResetMinmax_params
18078 TEB *teb;
18079 GLenum target;
18082 struct glResetMinmaxEXT_params
18084 TEB *teb;
18085 GLenum target;
18088 struct glResizeBuffersMESA_params
18090 TEB *teb;
18093 struct glResolveDepthValuesNV_params
18095 TEB *teb;
18098 struct glResumeTransformFeedback_params
18100 TEB *teb;
18103 struct glResumeTransformFeedbackNV_params
18105 TEB *teb;
18108 struct glRotatexOES_params
18110 TEB *teb;
18111 GLfixed angle;
18112 GLfixed x;
18113 GLfixed y;
18114 GLfixed z;
18117 struct glSampleCoverage_params
18119 TEB *teb;
18120 GLfloat value;
18121 GLboolean invert;
18124 struct glSampleCoverageARB_params
18126 TEB *teb;
18127 GLfloat value;
18128 GLboolean invert;
18131 struct glSampleMapATI_params
18133 TEB *teb;
18134 GLuint dst;
18135 GLuint interp;
18136 GLenum swizzle;
18139 struct glSampleMaskEXT_params
18141 TEB *teb;
18142 GLclampf value;
18143 GLboolean invert;
18146 struct glSampleMaskIndexedNV_params
18148 TEB *teb;
18149 GLuint index;
18150 GLbitfield mask;
18153 struct glSampleMaskSGIS_params
18155 TEB *teb;
18156 GLclampf value;
18157 GLboolean invert;
18160 struct glSampleMaski_params
18162 TEB *teb;
18163 GLuint maskNumber;
18164 GLbitfield mask;
18167 struct glSamplePatternEXT_params
18169 TEB *teb;
18170 GLenum pattern;
18173 struct glSamplePatternSGIS_params
18175 TEB *teb;
18176 GLenum pattern;
18179 struct glSamplerParameterIiv_params
18181 TEB *teb;
18182 GLuint sampler;
18183 GLenum pname;
18184 const GLint *param;
18187 struct glSamplerParameterIuiv_params
18189 TEB *teb;
18190 GLuint sampler;
18191 GLenum pname;
18192 const GLuint *param;
18195 struct glSamplerParameterf_params
18197 TEB *teb;
18198 GLuint sampler;
18199 GLenum pname;
18200 GLfloat param;
18203 struct glSamplerParameterfv_params
18205 TEB *teb;
18206 GLuint sampler;
18207 GLenum pname;
18208 const GLfloat *param;
18211 struct glSamplerParameteri_params
18213 TEB *teb;
18214 GLuint sampler;
18215 GLenum pname;
18216 GLint param;
18219 struct glSamplerParameteriv_params
18221 TEB *teb;
18222 GLuint sampler;
18223 GLenum pname;
18224 const GLint *param;
18227 struct glScalexOES_params
18229 TEB *teb;
18230 GLfixed x;
18231 GLfixed y;
18232 GLfixed z;
18235 struct glScissorArrayv_params
18237 TEB *teb;
18238 GLuint first;
18239 GLsizei count;
18240 const GLint *v;
18243 struct glScissorExclusiveArrayvNV_params
18245 TEB *teb;
18246 GLuint first;
18247 GLsizei count;
18248 const GLint *v;
18251 struct glScissorExclusiveNV_params
18253 TEB *teb;
18254 GLint x;
18255 GLint y;
18256 GLsizei width;
18257 GLsizei height;
18260 struct glScissorIndexed_params
18262 TEB *teb;
18263 GLuint index;
18264 GLint left;
18265 GLint bottom;
18266 GLsizei width;
18267 GLsizei height;
18270 struct glScissorIndexedv_params
18272 TEB *teb;
18273 GLuint index;
18274 const GLint *v;
18277 struct glSecondaryColor3b_params
18279 TEB *teb;
18280 GLbyte red;
18281 GLbyte green;
18282 GLbyte blue;
18285 struct glSecondaryColor3bEXT_params
18287 TEB *teb;
18288 GLbyte red;
18289 GLbyte green;
18290 GLbyte blue;
18293 struct glSecondaryColor3bv_params
18295 TEB *teb;
18296 const GLbyte *v;
18299 struct glSecondaryColor3bvEXT_params
18301 TEB *teb;
18302 const GLbyte *v;
18305 struct glSecondaryColor3d_params
18307 TEB *teb;
18308 GLdouble red;
18309 GLdouble green;
18310 GLdouble blue;
18313 struct glSecondaryColor3dEXT_params
18315 TEB *teb;
18316 GLdouble red;
18317 GLdouble green;
18318 GLdouble blue;
18321 struct glSecondaryColor3dv_params
18323 TEB *teb;
18324 const GLdouble *v;
18327 struct glSecondaryColor3dvEXT_params
18329 TEB *teb;
18330 const GLdouble *v;
18333 struct glSecondaryColor3f_params
18335 TEB *teb;
18336 GLfloat red;
18337 GLfloat green;
18338 GLfloat blue;
18341 struct glSecondaryColor3fEXT_params
18343 TEB *teb;
18344 GLfloat red;
18345 GLfloat green;
18346 GLfloat blue;
18349 struct glSecondaryColor3fv_params
18351 TEB *teb;
18352 const GLfloat *v;
18355 struct glSecondaryColor3fvEXT_params
18357 TEB *teb;
18358 const GLfloat *v;
18361 struct glSecondaryColor3hNV_params
18363 TEB *teb;
18364 GLhalfNV red;
18365 GLhalfNV green;
18366 GLhalfNV blue;
18369 struct glSecondaryColor3hvNV_params
18371 TEB *teb;
18372 const GLhalfNV *v;
18375 struct glSecondaryColor3i_params
18377 TEB *teb;
18378 GLint red;
18379 GLint green;
18380 GLint blue;
18383 struct glSecondaryColor3iEXT_params
18385 TEB *teb;
18386 GLint red;
18387 GLint green;
18388 GLint blue;
18391 struct glSecondaryColor3iv_params
18393 TEB *teb;
18394 const GLint *v;
18397 struct glSecondaryColor3ivEXT_params
18399 TEB *teb;
18400 const GLint *v;
18403 struct glSecondaryColor3s_params
18405 TEB *teb;
18406 GLshort red;
18407 GLshort green;
18408 GLshort blue;
18411 struct glSecondaryColor3sEXT_params
18413 TEB *teb;
18414 GLshort red;
18415 GLshort green;
18416 GLshort blue;
18419 struct glSecondaryColor3sv_params
18421 TEB *teb;
18422 const GLshort *v;
18425 struct glSecondaryColor3svEXT_params
18427 TEB *teb;
18428 const GLshort *v;
18431 struct glSecondaryColor3ub_params
18433 TEB *teb;
18434 GLubyte red;
18435 GLubyte green;
18436 GLubyte blue;
18439 struct glSecondaryColor3ubEXT_params
18441 TEB *teb;
18442 GLubyte red;
18443 GLubyte green;
18444 GLubyte blue;
18447 struct glSecondaryColor3ubv_params
18449 TEB *teb;
18450 const GLubyte *v;
18453 struct glSecondaryColor3ubvEXT_params
18455 TEB *teb;
18456 const GLubyte *v;
18459 struct glSecondaryColor3ui_params
18461 TEB *teb;
18462 GLuint red;
18463 GLuint green;
18464 GLuint blue;
18467 struct glSecondaryColor3uiEXT_params
18469 TEB *teb;
18470 GLuint red;
18471 GLuint green;
18472 GLuint blue;
18475 struct glSecondaryColor3uiv_params
18477 TEB *teb;
18478 const GLuint *v;
18481 struct glSecondaryColor3uivEXT_params
18483 TEB *teb;
18484 const GLuint *v;
18487 struct glSecondaryColor3us_params
18489 TEB *teb;
18490 GLushort red;
18491 GLushort green;
18492 GLushort blue;
18495 struct glSecondaryColor3usEXT_params
18497 TEB *teb;
18498 GLushort red;
18499 GLushort green;
18500 GLushort blue;
18503 struct glSecondaryColor3usv_params
18505 TEB *teb;
18506 const GLushort *v;
18509 struct glSecondaryColor3usvEXT_params
18511 TEB *teb;
18512 const GLushort *v;
18515 struct glSecondaryColorFormatNV_params
18517 TEB *teb;
18518 GLint size;
18519 GLenum type;
18520 GLsizei stride;
18523 struct glSecondaryColorP3ui_params
18525 TEB *teb;
18526 GLenum type;
18527 GLuint color;
18530 struct glSecondaryColorP3uiv_params
18532 TEB *teb;
18533 GLenum type;
18534 const GLuint *color;
18537 struct glSecondaryColorPointer_params
18539 TEB *teb;
18540 GLint size;
18541 GLenum type;
18542 GLsizei stride;
18543 const void *pointer;
18546 struct glSecondaryColorPointerEXT_params
18548 TEB *teb;
18549 GLint size;
18550 GLenum type;
18551 GLsizei stride;
18552 const void *pointer;
18555 struct glSecondaryColorPointerListIBM_params
18557 TEB *teb;
18558 GLint size;
18559 GLenum type;
18560 GLint stride;
18561 const void **pointer;
18562 GLint ptrstride;
18565 struct glSelectPerfMonitorCountersAMD_params
18567 TEB *teb;
18568 GLuint monitor;
18569 GLboolean enable;
18570 GLuint group;
18571 GLint numCounters;
18572 GLuint *counterList;
18575 struct glSelectTextureCoordSetSGIS_params
18577 TEB *teb;
18578 GLenum target;
18581 struct glSelectTextureSGIS_params
18583 TEB *teb;
18584 GLenum target;
18587 struct glSemaphoreParameterui64vEXT_params
18589 TEB *teb;
18590 GLuint semaphore;
18591 GLenum pname;
18592 const GLuint64 *params;
18595 struct glSeparableFilter2D_params
18597 TEB *teb;
18598 GLenum target;
18599 GLenum internalformat;
18600 GLsizei width;
18601 GLsizei height;
18602 GLenum format;
18603 GLenum type;
18604 const void *row;
18605 const void *column;
18608 struct glSeparableFilter2DEXT_params
18610 TEB *teb;
18611 GLenum target;
18612 GLenum internalformat;
18613 GLsizei width;
18614 GLsizei height;
18615 GLenum format;
18616 GLenum type;
18617 const void *row;
18618 const void *column;
18621 struct glSetFenceAPPLE_params
18623 TEB *teb;
18624 GLuint fence;
18627 struct glSetFenceNV_params
18629 TEB *teb;
18630 GLuint fence;
18631 GLenum condition;
18634 struct glSetFragmentShaderConstantATI_params
18636 TEB *teb;
18637 GLuint dst;
18638 const GLfloat *value;
18641 struct glSetInvariantEXT_params
18643 TEB *teb;
18644 GLuint id;
18645 GLenum type;
18646 const void *addr;
18649 struct glSetLocalConstantEXT_params
18651 TEB *teb;
18652 GLuint id;
18653 GLenum type;
18654 const void *addr;
18657 struct glSetMultisamplefvAMD_params
18659 TEB *teb;
18660 GLenum pname;
18661 GLuint index;
18662 const GLfloat *val;
18665 struct glShaderBinary_params
18667 TEB *teb;
18668 GLsizei count;
18669 const GLuint *shaders;
18670 GLenum binaryformat;
18671 const void *binary;
18672 GLsizei length;
18675 struct glShaderOp1EXT_params
18677 TEB *teb;
18678 GLenum op;
18679 GLuint res;
18680 GLuint arg1;
18683 struct glShaderOp2EXT_params
18685 TEB *teb;
18686 GLenum op;
18687 GLuint res;
18688 GLuint arg1;
18689 GLuint arg2;
18692 struct glShaderOp3EXT_params
18694 TEB *teb;
18695 GLenum op;
18696 GLuint res;
18697 GLuint arg1;
18698 GLuint arg2;
18699 GLuint arg3;
18702 struct glShaderSource_params
18704 TEB *teb;
18705 GLuint shader;
18706 GLsizei count;
18707 const GLchar *const*string;
18708 const GLint *length;
18711 struct glShaderSourceARB_params
18713 TEB *teb;
18714 GLhandleARB shaderObj;
18715 GLsizei count;
18716 const GLcharARB **string;
18717 const GLint *length;
18720 struct glShaderStorageBlockBinding_params
18722 TEB *teb;
18723 GLuint program;
18724 GLuint storageBlockIndex;
18725 GLuint storageBlockBinding;
18728 struct glShadingRateImageBarrierNV_params
18730 TEB *teb;
18731 GLboolean synchronize;
18734 struct glShadingRateImagePaletteNV_params
18736 TEB *teb;
18737 GLuint viewport;
18738 GLuint first;
18739 GLsizei count;
18740 const GLenum *rates;
18743 struct glShadingRateSampleOrderCustomNV_params
18745 TEB *teb;
18746 GLenum rate;
18747 GLuint samples;
18748 const GLint *locations;
18751 struct glShadingRateSampleOrderNV_params
18753 TEB *teb;
18754 GLenum order;
18757 struct glSharpenTexFuncSGIS_params
18759 TEB *teb;
18760 GLenum target;
18761 GLsizei n;
18762 const GLfloat *points;
18765 struct glSignalSemaphoreEXT_params
18767 TEB *teb;
18768 GLuint semaphore;
18769 GLuint numBufferBarriers;
18770 const GLuint *buffers;
18771 GLuint numTextureBarriers;
18772 const GLuint *textures;
18773 const GLenum *dstLayouts;
18776 struct glSignalSemaphoreui64NVX_params
18778 TEB *teb;
18779 GLuint signalGpu;
18780 GLsizei fenceObjectCount;
18781 const GLuint *semaphoreArray;
18782 const GLuint64 *fenceValueArray;
18785 struct glSignalVkFenceNV_params
18787 TEB *teb;
18788 GLuint64 vkFence;
18791 struct glSignalVkSemaphoreNV_params
18793 TEB *teb;
18794 GLuint64 vkSemaphore;
18797 struct glSpecializeShader_params
18799 TEB *teb;
18800 GLuint shader;
18801 const GLchar *pEntryPoint;
18802 GLuint numSpecializationConstants;
18803 const GLuint *pConstantIndex;
18804 const GLuint *pConstantValue;
18807 struct glSpecializeShaderARB_params
18809 TEB *teb;
18810 GLuint shader;
18811 const GLchar *pEntryPoint;
18812 GLuint numSpecializationConstants;
18813 const GLuint *pConstantIndex;
18814 const GLuint *pConstantValue;
18817 struct glSpriteParameterfSGIX_params
18819 TEB *teb;
18820 GLenum pname;
18821 GLfloat param;
18824 struct glSpriteParameterfvSGIX_params
18826 TEB *teb;
18827 GLenum pname;
18828 const GLfloat *params;
18831 struct glSpriteParameteriSGIX_params
18833 TEB *teb;
18834 GLenum pname;
18835 GLint param;
18838 struct glSpriteParameterivSGIX_params
18840 TEB *teb;
18841 GLenum pname;
18842 const GLint *params;
18845 struct glStartInstrumentsSGIX_params
18847 TEB *teb;
18850 struct glStateCaptureNV_params
18852 TEB *teb;
18853 GLuint state;
18854 GLenum mode;
18857 struct glStencilClearTagEXT_params
18859 TEB *teb;
18860 GLsizei stencilTagBits;
18861 GLuint stencilClearTag;
18864 struct glStencilFillPathInstancedNV_params
18866 TEB *teb;
18867 GLsizei numPaths;
18868 GLenum pathNameType;
18869 const void *paths;
18870 GLuint pathBase;
18871 GLenum fillMode;
18872 GLuint mask;
18873 GLenum transformType;
18874 const GLfloat *transformValues;
18877 struct glStencilFillPathNV_params
18879 TEB *teb;
18880 GLuint path;
18881 GLenum fillMode;
18882 GLuint mask;
18885 struct glStencilFuncSeparate_params
18887 TEB *teb;
18888 GLenum face;
18889 GLenum func;
18890 GLint ref;
18891 GLuint mask;
18894 struct glStencilFuncSeparateATI_params
18896 TEB *teb;
18897 GLenum frontfunc;
18898 GLenum backfunc;
18899 GLint ref;
18900 GLuint mask;
18903 struct glStencilMaskSeparate_params
18905 TEB *teb;
18906 GLenum face;
18907 GLuint mask;
18910 struct glStencilOpSeparate_params
18912 TEB *teb;
18913 GLenum face;
18914 GLenum sfail;
18915 GLenum dpfail;
18916 GLenum dppass;
18919 struct glStencilOpSeparateATI_params
18921 TEB *teb;
18922 GLenum face;
18923 GLenum sfail;
18924 GLenum dpfail;
18925 GLenum dppass;
18928 struct glStencilOpValueAMD_params
18930 TEB *teb;
18931 GLenum face;
18932 GLuint value;
18935 struct glStencilStrokePathInstancedNV_params
18937 TEB *teb;
18938 GLsizei numPaths;
18939 GLenum pathNameType;
18940 const void *paths;
18941 GLuint pathBase;
18942 GLint reference;
18943 GLuint mask;
18944 GLenum transformType;
18945 const GLfloat *transformValues;
18948 struct glStencilStrokePathNV_params
18950 TEB *teb;
18951 GLuint path;
18952 GLint reference;
18953 GLuint mask;
18956 struct glStencilThenCoverFillPathInstancedNV_params
18958 TEB *teb;
18959 GLsizei numPaths;
18960 GLenum pathNameType;
18961 const void *paths;
18962 GLuint pathBase;
18963 GLenum fillMode;
18964 GLuint mask;
18965 GLenum coverMode;
18966 GLenum transformType;
18967 const GLfloat *transformValues;
18970 struct glStencilThenCoverFillPathNV_params
18972 TEB *teb;
18973 GLuint path;
18974 GLenum fillMode;
18975 GLuint mask;
18976 GLenum coverMode;
18979 struct glStencilThenCoverStrokePathInstancedNV_params
18981 TEB *teb;
18982 GLsizei numPaths;
18983 GLenum pathNameType;
18984 const void *paths;
18985 GLuint pathBase;
18986 GLint reference;
18987 GLuint mask;
18988 GLenum coverMode;
18989 GLenum transformType;
18990 const GLfloat *transformValues;
18993 struct glStencilThenCoverStrokePathNV_params
18995 TEB *teb;
18996 GLuint path;
18997 GLint reference;
18998 GLuint mask;
18999 GLenum coverMode;
19002 struct glStopInstrumentsSGIX_params
19004 TEB *teb;
19005 GLint marker;
19008 struct glStringMarkerGREMEDY_params
19010 TEB *teb;
19011 GLsizei len;
19012 const void *string;
19015 struct glSubpixelPrecisionBiasNV_params
19017 TEB *teb;
19018 GLuint xbits;
19019 GLuint ybits;
19022 struct glSwizzleEXT_params
19024 TEB *teb;
19025 GLuint res;
19026 GLuint in;
19027 GLenum outX;
19028 GLenum outY;
19029 GLenum outZ;
19030 GLenum outW;
19033 struct glSyncTextureINTEL_params
19035 TEB *teb;
19036 GLuint texture;
19039 struct glTagSampleBufferSGIX_params
19041 TEB *teb;
19044 struct glTangent3bEXT_params
19046 TEB *teb;
19047 GLbyte tx;
19048 GLbyte ty;
19049 GLbyte tz;
19052 struct glTangent3bvEXT_params
19054 TEB *teb;
19055 const GLbyte *v;
19058 struct glTangent3dEXT_params
19060 TEB *teb;
19061 GLdouble tx;
19062 GLdouble ty;
19063 GLdouble tz;
19066 struct glTangent3dvEXT_params
19068 TEB *teb;
19069 const GLdouble *v;
19072 struct glTangent3fEXT_params
19074 TEB *teb;
19075 GLfloat tx;
19076 GLfloat ty;
19077 GLfloat tz;
19080 struct glTangent3fvEXT_params
19082 TEB *teb;
19083 const GLfloat *v;
19086 struct glTangent3iEXT_params
19088 TEB *teb;
19089 GLint tx;
19090 GLint ty;
19091 GLint tz;
19094 struct glTangent3ivEXT_params
19096 TEB *teb;
19097 const GLint *v;
19100 struct glTangent3sEXT_params
19102 TEB *teb;
19103 GLshort tx;
19104 GLshort ty;
19105 GLshort tz;
19108 struct glTangent3svEXT_params
19110 TEB *teb;
19111 const GLshort *v;
19114 struct glTangentPointerEXT_params
19116 TEB *teb;
19117 GLenum type;
19118 GLsizei stride;
19119 const void *pointer;
19122 struct glTbufferMask3DFX_params
19124 TEB *teb;
19125 GLuint mask;
19128 struct glTessellationFactorAMD_params
19130 TEB *teb;
19131 GLfloat factor;
19134 struct glTessellationModeAMD_params
19136 TEB *teb;
19137 GLenum mode;
19140 struct glTestFenceAPPLE_params
19142 TEB *teb;
19143 GLuint fence;
19144 GLboolean ret;
19147 struct glTestFenceNV_params
19149 TEB *teb;
19150 GLuint fence;
19151 GLboolean ret;
19154 struct glTestObjectAPPLE_params
19156 TEB *teb;
19157 GLenum object;
19158 GLuint name;
19159 GLboolean ret;
19162 struct glTexAttachMemoryNV_params
19164 TEB *teb;
19165 GLenum target;
19166 GLuint memory;
19167 GLuint64 offset;
19170 struct glTexBuffer_params
19172 TEB *teb;
19173 GLenum target;
19174 GLenum internalformat;
19175 GLuint buffer;
19178 struct glTexBufferARB_params
19180 TEB *teb;
19181 GLenum target;
19182 GLenum internalformat;
19183 GLuint buffer;
19186 struct glTexBufferEXT_params
19188 TEB *teb;
19189 GLenum target;
19190 GLenum internalformat;
19191 GLuint buffer;
19194 struct glTexBufferRange_params
19196 TEB *teb;
19197 GLenum target;
19198 GLenum internalformat;
19199 GLuint buffer;
19200 GLintptr offset;
19201 GLsizeiptr size;
19204 struct glTexBumpParameterfvATI_params
19206 TEB *teb;
19207 GLenum pname;
19208 const GLfloat *param;
19211 struct glTexBumpParameterivATI_params
19213 TEB *teb;
19214 GLenum pname;
19215 const GLint *param;
19218 struct glTexCoord1bOES_params
19220 TEB *teb;
19221 GLbyte s;
19224 struct glTexCoord1bvOES_params
19226 TEB *teb;
19227 const GLbyte *coords;
19230 struct glTexCoord1hNV_params
19232 TEB *teb;
19233 GLhalfNV s;
19236 struct glTexCoord1hvNV_params
19238 TEB *teb;
19239 const GLhalfNV *v;
19242 struct glTexCoord1xOES_params
19244 TEB *teb;
19245 GLfixed s;
19248 struct glTexCoord1xvOES_params
19250 TEB *teb;
19251 const GLfixed *coords;
19254 struct glTexCoord2bOES_params
19256 TEB *teb;
19257 GLbyte s;
19258 GLbyte t;
19261 struct glTexCoord2bvOES_params
19263 TEB *teb;
19264 const GLbyte *coords;
19267 struct glTexCoord2fColor3fVertex3fSUN_params
19269 TEB *teb;
19270 GLfloat s;
19271 GLfloat t;
19272 GLfloat r;
19273 GLfloat g;
19274 GLfloat b;
19275 GLfloat x;
19276 GLfloat y;
19277 GLfloat z;
19280 struct glTexCoord2fColor3fVertex3fvSUN_params
19282 TEB *teb;
19283 const GLfloat *tc;
19284 const GLfloat *c;
19285 const GLfloat *v;
19288 struct glTexCoord2fColor4fNormal3fVertex3fSUN_params
19290 TEB *teb;
19291 GLfloat s;
19292 GLfloat t;
19293 GLfloat r;
19294 GLfloat g;
19295 GLfloat b;
19296 GLfloat a;
19297 GLfloat nx;
19298 GLfloat ny;
19299 GLfloat nz;
19300 GLfloat x;
19301 GLfloat y;
19302 GLfloat z;
19305 struct glTexCoord2fColor4fNormal3fVertex3fvSUN_params
19307 TEB *teb;
19308 const GLfloat *tc;
19309 const GLfloat *c;
19310 const GLfloat *n;
19311 const GLfloat *v;
19314 struct glTexCoord2fColor4ubVertex3fSUN_params
19316 TEB *teb;
19317 GLfloat s;
19318 GLfloat t;
19319 GLubyte r;
19320 GLubyte g;
19321 GLubyte b;
19322 GLubyte a;
19323 GLfloat x;
19324 GLfloat y;
19325 GLfloat z;
19328 struct glTexCoord2fColor4ubVertex3fvSUN_params
19330 TEB *teb;
19331 const GLfloat *tc;
19332 const GLubyte *c;
19333 const GLfloat *v;
19336 struct glTexCoord2fNormal3fVertex3fSUN_params
19338 TEB *teb;
19339 GLfloat s;
19340 GLfloat t;
19341 GLfloat nx;
19342 GLfloat ny;
19343 GLfloat nz;
19344 GLfloat x;
19345 GLfloat y;
19346 GLfloat z;
19349 struct glTexCoord2fNormal3fVertex3fvSUN_params
19351 TEB *teb;
19352 const GLfloat *tc;
19353 const GLfloat *n;
19354 const GLfloat *v;
19357 struct glTexCoord2fVertex3fSUN_params
19359 TEB *teb;
19360 GLfloat s;
19361 GLfloat t;
19362 GLfloat x;
19363 GLfloat y;
19364 GLfloat z;
19367 struct glTexCoord2fVertex3fvSUN_params
19369 TEB *teb;
19370 const GLfloat *tc;
19371 const GLfloat *v;
19374 struct glTexCoord2hNV_params
19376 TEB *teb;
19377 GLhalfNV s;
19378 GLhalfNV t;
19381 struct glTexCoord2hvNV_params
19383 TEB *teb;
19384 const GLhalfNV *v;
19387 struct glTexCoord2xOES_params
19389 TEB *teb;
19390 GLfixed s;
19391 GLfixed t;
19394 struct glTexCoord2xvOES_params
19396 TEB *teb;
19397 const GLfixed *coords;
19400 struct glTexCoord3bOES_params
19402 TEB *teb;
19403 GLbyte s;
19404 GLbyte t;
19405 GLbyte r;
19408 struct glTexCoord3bvOES_params
19410 TEB *teb;
19411 const GLbyte *coords;
19414 struct glTexCoord3hNV_params
19416 TEB *teb;
19417 GLhalfNV s;
19418 GLhalfNV t;
19419 GLhalfNV r;
19422 struct glTexCoord3hvNV_params
19424 TEB *teb;
19425 const GLhalfNV *v;
19428 struct glTexCoord3xOES_params
19430 TEB *teb;
19431 GLfixed s;
19432 GLfixed t;
19433 GLfixed r;
19436 struct glTexCoord3xvOES_params
19438 TEB *teb;
19439 const GLfixed *coords;
19442 struct glTexCoord4bOES_params
19444 TEB *teb;
19445 GLbyte s;
19446 GLbyte t;
19447 GLbyte r;
19448 GLbyte q;
19451 struct glTexCoord4bvOES_params
19453 TEB *teb;
19454 const GLbyte *coords;
19457 struct glTexCoord4fColor4fNormal3fVertex4fSUN_params
19459 TEB *teb;
19460 GLfloat s;
19461 GLfloat t;
19462 GLfloat p;
19463 GLfloat q;
19464 GLfloat r;
19465 GLfloat g;
19466 GLfloat b;
19467 GLfloat a;
19468 GLfloat nx;
19469 GLfloat ny;
19470 GLfloat nz;
19471 GLfloat x;
19472 GLfloat y;
19473 GLfloat z;
19474 GLfloat w;
19477 struct glTexCoord4fColor4fNormal3fVertex4fvSUN_params
19479 TEB *teb;
19480 const GLfloat *tc;
19481 const GLfloat *c;
19482 const GLfloat *n;
19483 const GLfloat *v;
19486 struct glTexCoord4fVertex4fSUN_params
19488 TEB *teb;
19489 GLfloat s;
19490 GLfloat t;
19491 GLfloat p;
19492 GLfloat q;
19493 GLfloat x;
19494 GLfloat y;
19495 GLfloat z;
19496 GLfloat w;
19499 struct glTexCoord4fVertex4fvSUN_params
19501 TEB *teb;
19502 const GLfloat *tc;
19503 const GLfloat *v;
19506 struct glTexCoord4hNV_params
19508 TEB *teb;
19509 GLhalfNV s;
19510 GLhalfNV t;
19511 GLhalfNV r;
19512 GLhalfNV q;
19515 struct glTexCoord4hvNV_params
19517 TEB *teb;
19518 const GLhalfNV *v;
19521 struct glTexCoord4xOES_params
19523 TEB *teb;
19524 GLfixed s;
19525 GLfixed t;
19526 GLfixed r;
19527 GLfixed q;
19530 struct glTexCoord4xvOES_params
19532 TEB *teb;
19533 const GLfixed *coords;
19536 struct glTexCoordFormatNV_params
19538 TEB *teb;
19539 GLint size;
19540 GLenum type;
19541 GLsizei stride;
19544 struct glTexCoordP1ui_params
19546 TEB *teb;
19547 GLenum type;
19548 GLuint coords;
19551 struct glTexCoordP1uiv_params
19553 TEB *teb;
19554 GLenum type;
19555 const GLuint *coords;
19558 struct glTexCoordP2ui_params
19560 TEB *teb;
19561 GLenum type;
19562 GLuint coords;
19565 struct glTexCoordP2uiv_params
19567 TEB *teb;
19568 GLenum type;
19569 const GLuint *coords;
19572 struct glTexCoordP3ui_params
19574 TEB *teb;
19575 GLenum type;
19576 GLuint coords;
19579 struct glTexCoordP3uiv_params
19581 TEB *teb;
19582 GLenum type;
19583 const GLuint *coords;
19586 struct glTexCoordP4ui_params
19588 TEB *teb;
19589 GLenum type;
19590 GLuint coords;
19593 struct glTexCoordP4uiv_params
19595 TEB *teb;
19596 GLenum type;
19597 const GLuint *coords;
19600 struct glTexCoordPointerEXT_params
19602 TEB *teb;
19603 GLint size;
19604 GLenum type;
19605 GLsizei stride;
19606 GLsizei count;
19607 const void *pointer;
19610 struct glTexCoordPointerListIBM_params
19612 TEB *teb;
19613 GLint size;
19614 GLenum type;
19615 GLint stride;
19616 const void **pointer;
19617 GLint ptrstride;
19620 struct glTexCoordPointervINTEL_params
19622 TEB *teb;
19623 GLint size;
19624 GLenum type;
19625 const void **pointer;
19628 struct glTexEnvxOES_params
19630 TEB *teb;
19631 GLenum target;
19632 GLenum pname;
19633 GLfixed param;
19636 struct glTexEnvxvOES_params
19638 TEB *teb;
19639 GLenum target;
19640 GLenum pname;
19641 const GLfixed *params;
19644 struct glTexFilterFuncSGIS_params
19646 TEB *teb;
19647 GLenum target;
19648 GLenum filter;
19649 GLsizei n;
19650 const GLfloat *weights;
19653 struct glTexGenxOES_params
19655 TEB *teb;
19656 GLenum coord;
19657 GLenum pname;
19658 GLfixed param;
19661 struct glTexGenxvOES_params
19663 TEB *teb;
19664 GLenum coord;
19665 GLenum pname;
19666 const GLfixed *params;
19669 struct glTexImage2DMultisample_params
19671 TEB *teb;
19672 GLenum target;
19673 GLsizei samples;
19674 GLenum internalformat;
19675 GLsizei width;
19676 GLsizei height;
19677 GLboolean fixedsamplelocations;
19680 struct glTexImage2DMultisampleCoverageNV_params
19682 TEB *teb;
19683 GLenum target;
19684 GLsizei coverageSamples;
19685 GLsizei colorSamples;
19686 GLint internalFormat;
19687 GLsizei width;
19688 GLsizei height;
19689 GLboolean fixedSampleLocations;
19692 struct glTexImage3D_params
19694 TEB *teb;
19695 GLenum target;
19696 GLint level;
19697 GLint internalformat;
19698 GLsizei width;
19699 GLsizei height;
19700 GLsizei depth;
19701 GLint border;
19702 GLenum format;
19703 GLenum type;
19704 const void *pixels;
19707 struct glTexImage3DEXT_params
19709 TEB *teb;
19710 GLenum target;
19711 GLint level;
19712 GLenum internalformat;
19713 GLsizei width;
19714 GLsizei height;
19715 GLsizei depth;
19716 GLint border;
19717 GLenum format;
19718 GLenum type;
19719 const void *pixels;
19722 struct glTexImage3DMultisample_params
19724 TEB *teb;
19725 GLenum target;
19726 GLsizei samples;
19727 GLenum internalformat;
19728 GLsizei width;
19729 GLsizei height;
19730 GLsizei depth;
19731 GLboolean fixedsamplelocations;
19734 struct glTexImage3DMultisampleCoverageNV_params
19736 TEB *teb;
19737 GLenum target;
19738 GLsizei coverageSamples;
19739 GLsizei colorSamples;
19740 GLint internalFormat;
19741 GLsizei width;
19742 GLsizei height;
19743 GLsizei depth;
19744 GLboolean fixedSampleLocations;
19747 struct glTexImage4DSGIS_params
19749 TEB *teb;
19750 GLenum target;
19751 GLint level;
19752 GLenum internalformat;
19753 GLsizei width;
19754 GLsizei height;
19755 GLsizei depth;
19756 GLsizei size4d;
19757 GLint border;
19758 GLenum format;
19759 GLenum type;
19760 const void *pixels;
19763 struct glTexPageCommitmentARB_params
19765 TEB *teb;
19766 GLenum target;
19767 GLint level;
19768 GLint xoffset;
19769 GLint yoffset;
19770 GLint zoffset;
19771 GLsizei width;
19772 GLsizei height;
19773 GLsizei depth;
19774 GLboolean commit;
19777 struct glTexParameterIiv_params
19779 TEB *teb;
19780 GLenum target;
19781 GLenum pname;
19782 const GLint *params;
19785 struct glTexParameterIivEXT_params
19787 TEB *teb;
19788 GLenum target;
19789 GLenum pname;
19790 const GLint *params;
19793 struct glTexParameterIuiv_params
19795 TEB *teb;
19796 GLenum target;
19797 GLenum pname;
19798 const GLuint *params;
19801 struct glTexParameterIuivEXT_params
19803 TEB *teb;
19804 GLenum target;
19805 GLenum pname;
19806 const GLuint *params;
19809 struct glTexParameterxOES_params
19811 TEB *teb;
19812 GLenum target;
19813 GLenum pname;
19814 GLfixed param;
19817 struct glTexParameterxvOES_params
19819 TEB *teb;
19820 GLenum target;
19821 GLenum pname;
19822 const GLfixed *params;
19825 struct glTexRenderbufferNV_params
19827 TEB *teb;
19828 GLenum target;
19829 GLuint renderbuffer;
19832 struct glTexStorage1D_params
19834 TEB *teb;
19835 GLenum target;
19836 GLsizei levels;
19837 GLenum internalformat;
19838 GLsizei width;
19841 struct glTexStorage2D_params
19843 TEB *teb;
19844 GLenum target;
19845 GLsizei levels;
19846 GLenum internalformat;
19847 GLsizei width;
19848 GLsizei height;
19851 struct glTexStorage2DMultisample_params
19853 TEB *teb;
19854 GLenum target;
19855 GLsizei samples;
19856 GLenum internalformat;
19857 GLsizei width;
19858 GLsizei height;
19859 GLboolean fixedsamplelocations;
19862 struct glTexStorage3D_params
19864 TEB *teb;
19865 GLenum target;
19866 GLsizei levels;
19867 GLenum internalformat;
19868 GLsizei width;
19869 GLsizei height;
19870 GLsizei depth;
19873 struct glTexStorage3DMultisample_params
19875 TEB *teb;
19876 GLenum target;
19877 GLsizei samples;
19878 GLenum internalformat;
19879 GLsizei width;
19880 GLsizei height;
19881 GLsizei depth;
19882 GLboolean fixedsamplelocations;
19885 struct glTexStorageMem1DEXT_params
19887 TEB *teb;
19888 GLenum target;
19889 GLsizei levels;
19890 GLenum internalFormat;
19891 GLsizei width;
19892 GLuint memory;
19893 GLuint64 offset;
19896 struct glTexStorageMem2DEXT_params
19898 TEB *teb;
19899 GLenum target;
19900 GLsizei levels;
19901 GLenum internalFormat;
19902 GLsizei width;
19903 GLsizei height;
19904 GLuint memory;
19905 GLuint64 offset;
19908 struct glTexStorageMem2DMultisampleEXT_params
19910 TEB *teb;
19911 GLenum target;
19912 GLsizei samples;
19913 GLenum internalFormat;
19914 GLsizei width;
19915 GLsizei height;
19916 GLboolean fixedSampleLocations;
19917 GLuint memory;
19918 GLuint64 offset;
19921 struct glTexStorageMem3DEXT_params
19923 TEB *teb;
19924 GLenum target;
19925 GLsizei levels;
19926 GLenum internalFormat;
19927 GLsizei width;
19928 GLsizei height;
19929 GLsizei depth;
19930 GLuint memory;
19931 GLuint64 offset;
19934 struct glTexStorageMem3DMultisampleEXT_params
19936 TEB *teb;
19937 GLenum target;
19938 GLsizei samples;
19939 GLenum internalFormat;
19940 GLsizei width;
19941 GLsizei height;
19942 GLsizei depth;
19943 GLboolean fixedSampleLocations;
19944 GLuint memory;
19945 GLuint64 offset;
19948 struct glTexStorageSparseAMD_params
19950 TEB *teb;
19951 GLenum target;
19952 GLenum internalFormat;
19953 GLsizei width;
19954 GLsizei height;
19955 GLsizei depth;
19956 GLsizei layers;
19957 GLbitfield flags;
19960 struct glTexSubImage1DEXT_params
19962 TEB *teb;
19963 GLenum target;
19964 GLint level;
19965 GLint xoffset;
19966 GLsizei width;
19967 GLenum format;
19968 GLenum type;
19969 const void *pixels;
19972 struct glTexSubImage2DEXT_params
19974 TEB *teb;
19975 GLenum target;
19976 GLint level;
19977 GLint xoffset;
19978 GLint yoffset;
19979 GLsizei width;
19980 GLsizei height;
19981 GLenum format;
19982 GLenum type;
19983 const void *pixels;
19986 struct glTexSubImage3D_params
19988 TEB *teb;
19989 GLenum target;
19990 GLint level;
19991 GLint xoffset;
19992 GLint yoffset;
19993 GLint zoffset;
19994 GLsizei width;
19995 GLsizei height;
19996 GLsizei depth;
19997 GLenum format;
19998 GLenum type;
19999 const void *pixels;
20002 struct glTexSubImage3DEXT_params
20004 TEB *teb;
20005 GLenum target;
20006 GLint level;
20007 GLint xoffset;
20008 GLint yoffset;
20009 GLint zoffset;
20010 GLsizei width;
20011 GLsizei height;
20012 GLsizei depth;
20013 GLenum format;
20014 GLenum type;
20015 const void *pixels;
20018 struct glTexSubImage4DSGIS_params
20020 TEB *teb;
20021 GLenum target;
20022 GLint level;
20023 GLint xoffset;
20024 GLint yoffset;
20025 GLint zoffset;
20026 GLint woffset;
20027 GLsizei width;
20028 GLsizei height;
20029 GLsizei depth;
20030 GLsizei size4d;
20031 GLenum format;
20032 GLenum type;
20033 const void *pixels;
20036 struct glTextureAttachMemoryNV_params
20038 TEB *teb;
20039 GLuint texture;
20040 GLuint memory;
20041 GLuint64 offset;
20044 struct glTextureBarrier_params
20046 TEB *teb;
20049 struct glTextureBarrierNV_params
20051 TEB *teb;
20054 struct glTextureBuffer_params
20056 TEB *teb;
20057 GLuint texture;
20058 GLenum internalformat;
20059 GLuint buffer;
20062 struct glTextureBufferEXT_params
20064 TEB *teb;
20065 GLuint texture;
20066 GLenum target;
20067 GLenum internalformat;
20068 GLuint buffer;
20071 struct glTextureBufferRange_params
20073 TEB *teb;
20074 GLuint texture;
20075 GLenum internalformat;
20076 GLuint buffer;
20077 GLintptr offset;
20078 GLsizeiptr size;
20081 struct glTextureBufferRangeEXT_params
20083 TEB *teb;
20084 GLuint texture;
20085 GLenum target;
20086 GLenum internalformat;
20087 GLuint buffer;
20088 GLintptr offset;
20089 GLsizeiptr size;
20092 struct glTextureColorMaskSGIS_params
20094 TEB *teb;
20095 GLboolean red;
20096 GLboolean green;
20097 GLboolean blue;
20098 GLboolean alpha;
20101 struct glTextureImage1DEXT_params
20103 TEB *teb;
20104 GLuint texture;
20105 GLenum target;
20106 GLint level;
20107 GLint internalformat;
20108 GLsizei width;
20109 GLint border;
20110 GLenum format;
20111 GLenum type;
20112 const void *pixels;
20115 struct glTextureImage2DEXT_params
20117 TEB *teb;
20118 GLuint texture;
20119 GLenum target;
20120 GLint level;
20121 GLint internalformat;
20122 GLsizei width;
20123 GLsizei height;
20124 GLint border;
20125 GLenum format;
20126 GLenum type;
20127 const void *pixels;
20130 struct glTextureImage2DMultisampleCoverageNV_params
20132 TEB *teb;
20133 GLuint texture;
20134 GLenum target;
20135 GLsizei coverageSamples;
20136 GLsizei colorSamples;
20137 GLint internalFormat;
20138 GLsizei width;
20139 GLsizei height;
20140 GLboolean fixedSampleLocations;
20143 struct glTextureImage2DMultisampleNV_params
20145 TEB *teb;
20146 GLuint texture;
20147 GLenum target;
20148 GLsizei samples;
20149 GLint internalFormat;
20150 GLsizei width;
20151 GLsizei height;
20152 GLboolean fixedSampleLocations;
20155 struct glTextureImage3DEXT_params
20157 TEB *teb;
20158 GLuint texture;
20159 GLenum target;
20160 GLint level;
20161 GLint internalformat;
20162 GLsizei width;
20163 GLsizei height;
20164 GLsizei depth;
20165 GLint border;
20166 GLenum format;
20167 GLenum type;
20168 const void *pixels;
20171 struct glTextureImage3DMultisampleCoverageNV_params
20173 TEB *teb;
20174 GLuint texture;
20175 GLenum target;
20176 GLsizei coverageSamples;
20177 GLsizei colorSamples;
20178 GLint internalFormat;
20179 GLsizei width;
20180 GLsizei height;
20181 GLsizei depth;
20182 GLboolean fixedSampleLocations;
20185 struct glTextureImage3DMultisampleNV_params
20187 TEB *teb;
20188 GLuint texture;
20189 GLenum target;
20190 GLsizei samples;
20191 GLint internalFormat;
20192 GLsizei width;
20193 GLsizei height;
20194 GLsizei depth;
20195 GLboolean fixedSampleLocations;
20198 struct glTextureLightEXT_params
20200 TEB *teb;
20201 GLenum pname;
20204 struct glTextureMaterialEXT_params
20206 TEB *teb;
20207 GLenum face;
20208 GLenum mode;
20211 struct glTextureNormalEXT_params
20213 TEB *teb;
20214 GLenum mode;
20217 struct glTexturePageCommitmentEXT_params
20219 TEB *teb;
20220 GLuint texture;
20221 GLint level;
20222 GLint xoffset;
20223 GLint yoffset;
20224 GLint zoffset;
20225 GLsizei width;
20226 GLsizei height;
20227 GLsizei depth;
20228 GLboolean commit;
20231 struct glTextureParameterIiv_params
20233 TEB *teb;
20234 GLuint texture;
20235 GLenum pname;
20236 const GLint *params;
20239 struct glTextureParameterIivEXT_params
20241 TEB *teb;
20242 GLuint texture;
20243 GLenum target;
20244 GLenum pname;
20245 const GLint *params;
20248 struct glTextureParameterIuiv_params
20250 TEB *teb;
20251 GLuint texture;
20252 GLenum pname;
20253 const GLuint *params;
20256 struct glTextureParameterIuivEXT_params
20258 TEB *teb;
20259 GLuint texture;
20260 GLenum target;
20261 GLenum pname;
20262 const GLuint *params;
20265 struct glTextureParameterf_params
20267 TEB *teb;
20268 GLuint texture;
20269 GLenum pname;
20270 GLfloat param;
20273 struct glTextureParameterfEXT_params
20275 TEB *teb;
20276 GLuint texture;
20277 GLenum target;
20278 GLenum pname;
20279 GLfloat param;
20282 struct glTextureParameterfv_params
20284 TEB *teb;
20285 GLuint texture;
20286 GLenum pname;
20287 const GLfloat *param;
20290 struct glTextureParameterfvEXT_params
20292 TEB *teb;
20293 GLuint texture;
20294 GLenum target;
20295 GLenum pname;
20296 const GLfloat *params;
20299 struct glTextureParameteri_params
20301 TEB *teb;
20302 GLuint texture;
20303 GLenum pname;
20304 GLint param;
20307 struct glTextureParameteriEXT_params
20309 TEB *teb;
20310 GLuint texture;
20311 GLenum target;
20312 GLenum pname;
20313 GLint param;
20316 struct glTextureParameteriv_params
20318 TEB *teb;
20319 GLuint texture;
20320 GLenum pname;
20321 const GLint *param;
20324 struct glTextureParameterivEXT_params
20326 TEB *teb;
20327 GLuint texture;
20328 GLenum target;
20329 GLenum pname;
20330 const GLint *params;
20333 struct glTextureRangeAPPLE_params
20335 TEB *teb;
20336 GLenum target;
20337 GLsizei length;
20338 const void *pointer;
20341 struct glTextureRenderbufferEXT_params
20343 TEB *teb;
20344 GLuint texture;
20345 GLenum target;
20346 GLuint renderbuffer;
20349 struct glTextureStorage1D_params
20351 TEB *teb;
20352 GLuint texture;
20353 GLsizei levels;
20354 GLenum internalformat;
20355 GLsizei width;
20358 struct glTextureStorage1DEXT_params
20360 TEB *teb;
20361 GLuint texture;
20362 GLenum target;
20363 GLsizei levels;
20364 GLenum internalformat;
20365 GLsizei width;
20368 struct glTextureStorage2D_params
20370 TEB *teb;
20371 GLuint texture;
20372 GLsizei levels;
20373 GLenum internalformat;
20374 GLsizei width;
20375 GLsizei height;
20378 struct glTextureStorage2DEXT_params
20380 TEB *teb;
20381 GLuint texture;
20382 GLenum target;
20383 GLsizei levels;
20384 GLenum internalformat;
20385 GLsizei width;
20386 GLsizei height;
20389 struct glTextureStorage2DMultisample_params
20391 TEB *teb;
20392 GLuint texture;
20393 GLsizei samples;
20394 GLenum internalformat;
20395 GLsizei width;
20396 GLsizei height;
20397 GLboolean fixedsamplelocations;
20400 struct glTextureStorage2DMultisampleEXT_params
20402 TEB *teb;
20403 GLuint texture;
20404 GLenum target;
20405 GLsizei samples;
20406 GLenum internalformat;
20407 GLsizei width;
20408 GLsizei height;
20409 GLboolean fixedsamplelocations;
20412 struct glTextureStorage3D_params
20414 TEB *teb;
20415 GLuint texture;
20416 GLsizei levels;
20417 GLenum internalformat;
20418 GLsizei width;
20419 GLsizei height;
20420 GLsizei depth;
20423 struct glTextureStorage3DEXT_params
20425 TEB *teb;
20426 GLuint texture;
20427 GLenum target;
20428 GLsizei levels;
20429 GLenum internalformat;
20430 GLsizei width;
20431 GLsizei height;
20432 GLsizei depth;
20435 struct glTextureStorage3DMultisample_params
20437 TEB *teb;
20438 GLuint texture;
20439 GLsizei samples;
20440 GLenum internalformat;
20441 GLsizei width;
20442 GLsizei height;
20443 GLsizei depth;
20444 GLboolean fixedsamplelocations;
20447 struct glTextureStorage3DMultisampleEXT_params
20449 TEB *teb;
20450 GLuint texture;
20451 GLenum target;
20452 GLsizei samples;
20453 GLenum internalformat;
20454 GLsizei width;
20455 GLsizei height;
20456 GLsizei depth;
20457 GLboolean fixedsamplelocations;
20460 struct glTextureStorageMem1DEXT_params
20462 TEB *teb;
20463 GLuint texture;
20464 GLsizei levels;
20465 GLenum internalFormat;
20466 GLsizei width;
20467 GLuint memory;
20468 GLuint64 offset;
20471 struct glTextureStorageMem2DEXT_params
20473 TEB *teb;
20474 GLuint texture;
20475 GLsizei levels;
20476 GLenum internalFormat;
20477 GLsizei width;
20478 GLsizei height;
20479 GLuint memory;
20480 GLuint64 offset;
20483 struct glTextureStorageMem2DMultisampleEXT_params
20485 TEB *teb;
20486 GLuint texture;
20487 GLsizei samples;
20488 GLenum internalFormat;
20489 GLsizei width;
20490 GLsizei height;
20491 GLboolean fixedSampleLocations;
20492 GLuint memory;
20493 GLuint64 offset;
20496 struct glTextureStorageMem3DEXT_params
20498 TEB *teb;
20499 GLuint texture;
20500 GLsizei levels;
20501 GLenum internalFormat;
20502 GLsizei width;
20503 GLsizei height;
20504 GLsizei depth;
20505 GLuint memory;
20506 GLuint64 offset;
20509 struct glTextureStorageMem3DMultisampleEXT_params
20511 TEB *teb;
20512 GLuint texture;
20513 GLsizei samples;
20514 GLenum internalFormat;
20515 GLsizei width;
20516 GLsizei height;
20517 GLsizei depth;
20518 GLboolean fixedSampleLocations;
20519 GLuint memory;
20520 GLuint64 offset;
20523 struct glTextureStorageSparseAMD_params
20525 TEB *teb;
20526 GLuint texture;
20527 GLenum target;
20528 GLenum internalFormat;
20529 GLsizei width;
20530 GLsizei height;
20531 GLsizei depth;
20532 GLsizei layers;
20533 GLbitfield flags;
20536 struct glTextureSubImage1D_params
20538 TEB *teb;
20539 GLuint texture;
20540 GLint level;
20541 GLint xoffset;
20542 GLsizei width;
20543 GLenum format;
20544 GLenum type;
20545 const void *pixels;
20548 struct glTextureSubImage1DEXT_params
20550 TEB *teb;
20551 GLuint texture;
20552 GLenum target;
20553 GLint level;
20554 GLint xoffset;
20555 GLsizei width;
20556 GLenum format;
20557 GLenum type;
20558 const void *pixels;
20561 struct glTextureSubImage2D_params
20563 TEB *teb;
20564 GLuint texture;
20565 GLint level;
20566 GLint xoffset;
20567 GLint yoffset;
20568 GLsizei width;
20569 GLsizei height;
20570 GLenum format;
20571 GLenum type;
20572 const void *pixels;
20575 struct glTextureSubImage2DEXT_params
20577 TEB *teb;
20578 GLuint texture;
20579 GLenum target;
20580 GLint level;
20581 GLint xoffset;
20582 GLint yoffset;
20583 GLsizei width;
20584 GLsizei height;
20585 GLenum format;
20586 GLenum type;
20587 const void *pixels;
20590 struct glTextureSubImage3D_params
20592 TEB *teb;
20593 GLuint texture;
20594 GLint level;
20595 GLint xoffset;
20596 GLint yoffset;
20597 GLint zoffset;
20598 GLsizei width;
20599 GLsizei height;
20600 GLsizei depth;
20601 GLenum format;
20602 GLenum type;
20603 const void *pixels;
20606 struct glTextureSubImage3DEXT_params
20608 TEB *teb;
20609 GLuint texture;
20610 GLenum target;
20611 GLint level;
20612 GLint xoffset;
20613 GLint yoffset;
20614 GLint zoffset;
20615 GLsizei width;
20616 GLsizei height;
20617 GLsizei depth;
20618 GLenum format;
20619 GLenum type;
20620 const void *pixels;
20623 struct glTextureView_params
20625 TEB *teb;
20626 GLuint texture;
20627 GLenum target;
20628 GLuint origtexture;
20629 GLenum internalformat;
20630 GLuint minlevel;
20631 GLuint numlevels;
20632 GLuint minlayer;
20633 GLuint numlayers;
20636 struct glTrackMatrixNV_params
20638 TEB *teb;
20639 GLenum target;
20640 GLuint address;
20641 GLenum matrix;
20642 GLenum transform;
20645 struct glTransformFeedbackAttribsNV_params
20647 TEB *teb;
20648 GLsizei count;
20649 const GLint *attribs;
20650 GLenum bufferMode;
20653 struct glTransformFeedbackBufferBase_params
20655 TEB *teb;
20656 GLuint xfb;
20657 GLuint index;
20658 GLuint buffer;
20661 struct glTransformFeedbackBufferRange_params
20663 TEB *teb;
20664 GLuint xfb;
20665 GLuint index;
20666 GLuint buffer;
20667 GLintptr offset;
20668 GLsizeiptr size;
20671 struct glTransformFeedbackStreamAttribsNV_params
20673 TEB *teb;
20674 GLsizei count;
20675 const GLint *attribs;
20676 GLsizei nbuffers;
20677 const GLint *bufstreams;
20678 GLenum bufferMode;
20681 struct glTransformFeedbackVaryings_params
20683 TEB *teb;
20684 GLuint program;
20685 GLsizei count;
20686 const GLchar *const*varyings;
20687 GLenum bufferMode;
20690 struct glTransformFeedbackVaryingsEXT_params
20692 TEB *teb;
20693 GLuint program;
20694 GLsizei count;
20695 const GLchar *const*varyings;
20696 GLenum bufferMode;
20699 struct glTransformFeedbackVaryingsNV_params
20701 TEB *teb;
20702 GLuint program;
20703 GLsizei count;
20704 const GLint *locations;
20705 GLenum bufferMode;
20708 struct glTransformPathNV_params
20710 TEB *teb;
20711 GLuint resultPath;
20712 GLuint srcPath;
20713 GLenum transformType;
20714 const GLfloat *transformValues;
20717 struct glTranslatexOES_params
20719 TEB *teb;
20720 GLfixed x;
20721 GLfixed y;
20722 GLfixed z;
20725 struct glUniform1d_params
20727 TEB *teb;
20728 GLint location;
20729 GLdouble x;
20732 struct glUniform1dv_params
20734 TEB *teb;
20735 GLint location;
20736 GLsizei count;
20737 const GLdouble *value;
20740 struct glUniform1f_params
20742 TEB *teb;
20743 GLint location;
20744 GLfloat v0;
20747 struct glUniform1fARB_params
20749 TEB *teb;
20750 GLint location;
20751 GLfloat v0;
20754 struct glUniform1fv_params
20756 TEB *teb;
20757 GLint location;
20758 GLsizei count;
20759 const GLfloat *value;
20762 struct glUniform1fvARB_params
20764 TEB *teb;
20765 GLint location;
20766 GLsizei count;
20767 const GLfloat *value;
20770 struct glUniform1i_params
20772 TEB *teb;
20773 GLint location;
20774 GLint v0;
20777 struct glUniform1i64ARB_params
20779 TEB *teb;
20780 GLint location;
20781 GLint64 x;
20784 struct glUniform1i64NV_params
20786 TEB *teb;
20787 GLint location;
20788 GLint64EXT x;
20791 struct glUniform1i64vARB_params
20793 TEB *teb;
20794 GLint location;
20795 GLsizei count;
20796 const GLint64 *value;
20799 struct glUniform1i64vNV_params
20801 TEB *teb;
20802 GLint location;
20803 GLsizei count;
20804 const GLint64EXT *value;
20807 struct glUniform1iARB_params
20809 TEB *teb;
20810 GLint location;
20811 GLint v0;
20814 struct glUniform1iv_params
20816 TEB *teb;
20817 GLint location;
20818 GLsizei count;
20819 const GLint *value;
20822 struct glUniform1ivARB_params
20824 TEB *teb;
20825 GLint location;
20826 GLsizei count;
20827 const GLint *value;
20830 struct glUniform1ui_params
20832 TEB *teb;
20833 GLint location;
20834 GLuint v0;
20837 struct glUniform1ui64ARB_params
20839 TEB *teb;
20840 GLint location;
20841 GLuint64 x;
20844 struct glUniform1ui64NV_params
20846 TEB *teb;
20847 GLint location;
20848 GLuint64EXT x;
20851 struct glUniform1ui64vARB_params
20853 TEB *teb;
20854 GLint location;
20855 GLsizei count;
20856 const GLuint64 *value;
20859 struct glUniform1ui64vNV_params
20861 TEB *teb;
20862 GLint location;
20863 GLsizei count;
20864 const GLuint64EXT *value;
20867 struct glUniform1uiEXT_params
20869 TEB *teb;
20870 GLint location;
20871 GLuint v0;
20874 struct glUniform1uiv_params
20876 TEB *teb;
20877 GLint location;
20878 GLsizei count;
20879 const GLuint *value;
20882 struct glUniform1uivEXT_params
20884 TEB *teb;
20885 GLint location;
20886 GLsizei count;
20887 const GLuint *value;
20890 struct glUniform2d_params
20892 TEB *teb;
20893 GLint location;
20894 GLdouble x;
20895 GLdouble y;
20898 struct glUniform2dv_params
20900 TEB *teb;
20901 GLint location;
20902 GLsizei count;
20903 const GLdouble *value;
20906 struct glUniform2f_params
20908 TEB *teb;
20909 GLint location;
20910 GLfloat v0;
20911 GLfloat v1;
20914 struct glUniform2fARB_params
20916 TEB *teb;
20917 GLint location;
20918 GLfloat v0;
20919 GLfloat v1;
20922 struct glUniform2fv_params
20924 TEB *teb;
20925 GLint location;
20926 GLsizei count;
20927 const GLfloat *value;
20930 struct glUniform2fvARB_params
20932 TEB *teb;
20933 GLint location;
20934 GLsizei count;
20935 const GLfloat *value;
20938 struct glUniform2i_params
20940 TEB *teb;
20941 GLint location;
20942 GLint v0;
20943 GLint v1;
20946 struct glUniform2i64ARB_params
20948 TEB *teb;
20949 GLint location;
20950 GLint64 x;
20951 GLint64 y;
20954 struct glUniform2i64NV_params
20956 TEB *teb;
20957 GLint location;
20958 GLint64EXT x;
20959 GLint64EXT y;
20962 struct glUniform2i64vARB_params
20964 TEB *teb;
20965 GLint location;
20966 GLsizei count;
20967 const GLint64 *value;
20970 struct glUniform2i64vNV_params
20972 TEB *teb;
20973 GLint location;
20974 GLsizei count;
20975 const GLint64EXT *value;
20978 struct glUniform2iARB_params
20980 TEB *teb;
20981 GLint location;
20982 GLint v0;
20983 GLint v1;
20986 struct glUniform2iv_params
20988 TEB *teb;
20989 GLint location;
20990 GLsizei count;
20991 const GLint *value;
20994 struct glUniform2ivARB_params
20996 TEB *teb;
20997 GLint location;
20998 GLsizei count;
20999 const GLint *value;
21002 struct glUniform2ui_params
21004 TEB *teb;
21005 GLint location;
21006 GLuint v0;
21007 GLuint v1;
21010 struct glUniform2ui64ARB_params
21012 TEB *teb;
21013 GLint location;
21014 GLuint64 x;
21015 GLuint64 y;
21018 struct glUniform2ui64NV_params
21020 TEB *teb;
21021 GLint location;
21022 GLuint64EXT x;
21023 GLuint64EXT y;
21026 struct glUniform2ui64vARB_params
21028 TEB *teb;
21029 GLint location;
21030 GLsizei count;
21031 const GLuint64 *value;
21034 struct glUniform2ui64vNV_params
21036 TEB *teb;
21037 GLint location;
21038 GLsizei count;
21039 const GLuint64EXT *value;
21042 struct glUniform2uiEXT_params
21044 TEB *teb;
21045 GLint location;
21046 GLuint v0;
21047 GLuint v1;
21050 struct glUniform2uiv_params
21052 TEB *teb;
21053 GLint location;
21054 GLsizei count;
21055 const GLuint *value;
21058 struct glUniform2uivEXT_params
21060 TEB *teb;
21061 GLint location;
21062 GLsizei count;
21063 const GLuint *value;
21066 struct glUniform3d_params
21068 TEB *teb;
21069 GLint location;
21070 GLdouble x;
21071 GLdouble y;
21072 GLdouble z;
21075 struct glUniform3dv_params
21077 TEB *teb;
21078 GLint location;
21079 GLsizei count;
21080 const GLdouble *value;
21083 struct glUniform3f_params
21085 TEB *teb;
21086 GLint location;
21087 GLfloat v0;
21088 GLfloat v1;
21089 GLfloat v2;
21092 struct glUniform3fARB_params
21094 TEB *teb;
21095 GLint location;
21096 GLfloat v0;
21097 GLfloat v1;
21098 GLfloat v2;
21101 struct glUniform3fv_params
21103 TEB *teb;
21104 GLint location;
21105 GLsizei count;
21106 const GLfloat *value;
21109 struct glUniform3fvARB_params
21111 TEB *teb;
21112 GLint location;
21113 GLsizei count;
21114 const GLfloat *value;
21117 struct glUniform3i_params
21119 TEB *teb;
21120 GLint location;
21121 GLint v0;
21122 GLint v1;
21123 GLint v2;
21126 struct glUniform3i64ARB_params
21128 TEB *teb;
21129 GLint location;
21130 GLint64 x;
21131 GLint64 y;
21132 GLint64 z;
21135 struct glUniform3i64NV_params
21137 TEB *teb;
21138 GLint location;
21139 GLint64EXT x;
21140 GLint64EXT y;
21141 GLint64EXT z;
21144 struct glUniform3i64vARB_params
21146 TEB *teb;
21147 GLint location;
21148 GLsizei count;
21149 const GLint64 *value;
21152 struct glUniform3i64vNV_params
21154 TEB *teb;
21155 GLint location;
21156 GLsizei count;
21157 const GLint64EXT *value;
21160 struct glUniform3iARB_params
21162 TEB *teb;
21163 GLint location;
21164 GLint v0;
21165 GLint v1;
21166 GLint v2;
21169 struct glUniform3iv_params
21171 TEB *teb;
21172 GLint location;
21173 GLsizei count;
21174 const GLint *value;
21177 struct glUniform3ivARB_params
21179 TEB *teb;
21180 GLint location;
21181 GLsizei count;
21182 const GLint *value;
21185 struct glUniform3ui_params
21187 TEB *teb;
21188 GLint location;
21189 GLuint v0;
21190 GLuint v1;
21191 GLuint v2;
21194 struct glUniform3ui64ARB_params
21196 TEB *teb;
21197 GLint location;
21198 GLuint64 x;
21199 GLuint64 y;
21200 GLuint64 z;
21203 struct glUniform3ui64NV_params
21205 TEB *teb;
21206 GLint location;
21207 GLuint64EXT x;
21208 GLuint64EXT y;
21209 GLuint64EXT z;
21212 struct glUniform3ui64vARB_params
21214 TEB *teb;
21215 GLint location;
21216 GLsizei count;
21217 const GLuint64 *value;
21220 struct glUniform3ui64vNV_params
21222 TEB *teb;
21223 GLint location;
21224 GLsizei count;
21225 const GLuint64EXT *value;
21228 struct glUniform3uiEXT_params
21230 TEB *teb;
21231 GLint location;
21232 GLuint v0;
21233 GLuint v1;
21234 GLuint v2;
21237 struct glUniform3uiv_params
21239 TEB *teb;
21240 GLint location;
21241 GLsizei count;
21242 const GLuint *value;
21245 struct glUniform3uivEXT_params
21247 TEB *teb;
21248 GLint location;
21249 GLsizei count;
21250 const GLuint *value;
21253 struct glUniform4d_params
21255 TEB *teb;
21256 GLint location;
21257 GLdouble x;
21258 GLdouble y;
21259 GLdouble z;
21260 GLdouble w;
21263 struct glUniform4dv_params
21265 TEB *teb;
21266 GLint location;
21267 GLsizei count;
21268 const GLdouble *value;
21271 struct glUniform4f_params
21273 TEB *teb;
21274 GLint location;
21275 GLfloat v0;
21276 GLfloat v1;
21277 GLfloat v2;
21278 GLfloat v3;
21281 struct glUniform4fARB_params
21283 TEB *teb;
21284 GLint location;
21285 GLfloat v0;
21286 GLfloat v1;
21287 GLfloat v2;
21288 GLfloat v3;
21291 struct glUniform4fv_params
21293 TEB *teb;
21294 GLint location;
21295 GLsizei count;
21296 const GLfloat *value;
21299 struct glUniform4fvARB_params
21301 TEB *teb;
21302 GLint location;
21303 GLsizei count;
21304 const GLfloat *value;
21307 struct glUniform4i_params
21309 TEB *teb;
21310 GLint location;
21311 GLint v0;
21312 GLint v1;
21313 GLint v2;
21314 GLint v3;
21317 struct glUniform4i64ARB_params
21319 TEB *teb;
21320 GLint location;
21321 GLint64 x;
21322 GLint64 y;
21323 GLint64 z;
21324 GLint64 w;
21327 struct glUniform4i64NV_params
21329 TEB *teb;
21330 GLint location;
21331 GLint64EXT x;
21332 GLint64EXT y;
21333 GLint64EXT z;
21334 GLint64EXT w;
21337 struct glUniform4i64vARB_params
21339 TEB *teb;
21340 GLint location;
21341 GLsizei count;
21342 const GLint64 *value;
21345 struct glUniform4i64vNV_params
21347 TEB *teb;
21348 GLint location;
21349 GLsizei count;
21350 const GLint64EXT *value;
21353 struct glUniform4iARB_params
21355 TEB *teb;
21356 GLint location;
21357 GLint v0;
21358 GLint v1;
21359 GLint v2;
21360 GLint v3;
21363 struct glUniform4iv_params
21365 TEB *teb;
21366 GLint location;
21367 GLsizei count;
21368 const GLint *value;
21371 struct glUniform4ivARB_params
21373 TEB *teb;
21374 GLint location;
21375 GLsizei count;
21376 const GLint *value;
21379 struct glUniform4ui_params
21381 TEB *teb;
21382 GLint location;
21383 GLuint v0;
21384 GLuint v1;
21385 GLuint v2;
21386 GLuint v3;
21389 struct glUniform4ui64ARB_params
21391 TEB *teb;
21392 GLint location;
21393 GLuint64 x;
21394 GLuint64 y;
21395 GLuint64 z;
21396 GLuint64 w;
21399 struct glUniform4ui64NV_params
21401 TEB *teb;
21402 GLint location;
21403 GLuint64EXT x;
21404 GLuint64EXT y;
21405 GLuint64EXT z;
21406 GLuint64EXT w;
21409 struct glUniform4ui64vARB_params
21411 TEB *teb;
21412 GLint location;
21413 GLsizei count;
21414 const GLuint64 *value;
21417 struct glUniform4ui64vNV_params
21419 TEB *teb;
21420 GLint location;
21421 GLsizei count;
21422 const GLuint64EXT *value;
21425 struct glUniform4uiEXT_params
21427 TEB *teb;
21428 GLint location;
21429 GLuint v0;
21430 GLuint v1;
21431 GLuint v2;
21432 GLuint v3;
21435 struct glUniform4uiv_params
21437 TEB *teb;
21438 GLint location;
21439 GLsizei count;
21440 const GLuint *value;
21443 struct glUniform4uivEXT_params
21445 TEB *teb;
21446 GLint location;
21447 GLsizei count;
21448 const GLuint *value;
21451 struct glUniformBlockBinding_params
21453 TEB *teb;
21454 GLuint program;
21455 GLuint uniformBlockIndex;
21456 GLuint uniformBlockBinding;
21459 struct glUniformBufferEXT_params
21461 TEB *teb;
21462 GLuint program;
21463 GLint location;
21464 GLuint buffer;
21467 struct glUniformHandleui64ARB_params
21469 TEB *teb;
21470 GLint location;
21471 GLuint64 value;
21474 struct glUniformHandleui64NV_params
21476 TEB *teb;
21477 GLint location;
21478 GLuint64 value;
21481 struct glUniformHandleui64vARB_params
21483 TEB *teb;
21484 GLint location;
21485 GLsizei count;
21486 const GLuint64 *value;
21489 struct glUniformHandleui64vNV_params
21491 TEB *teb;
21492 GLint location;
21493 GLsizei count;
21494 const GLuint64 *value;
21497 struct glUniformMatrix2dv_params
21499 TEB *teb;
21500 GLint location;
21501 GLsizei count;
21502 GLboolean transpose;
21503 const GLdouble *value;
21506 struct glUniformMatrix2fv_params
21508 TEB *teb;
21509 GLint location;
21510 GLsizei count;
21511 GLboolean transpose;
21512 const GLfloat *value;
21515 struct glUniformMatrix2fvARB_params
21517 TEB *teb;
21518 GLint location;
21519 GLsizei count;
21520 GLboolean transpose;
21521 const GLfloat *value;
21524 struct glUniformMatrix2x3dv_params
21526 TEB *teb;
21527 GLint location;
21528 GLsizei count;
21529 GLboolean transpose;
21530 const GLdouble *value;
21533 struct glUniformMatrix2x3fv_params
21535 TEB *teb;
21536 GLint location;
21537 GLsizei count;
21538 GLboolean transpose;
21539 const GLfloat *value;
21542 struct glUniformMatrix2x4dv_params
21544 TEB *teb;
21545 GLint location;
21546 GLsizei count;
21547 GLboolean transpose;
21548 const GLdouble *value;
21551 struct glUniformMatrix2x4fv_params
21553 TEB *teb;
21554 GLint location;
21555 GLsizei count;
21556 GLboolean transpose;
21557 const GLfloat *value;
21560 struct glUniformMatrix3dv_params
21562 TEB *teb;
21563 GLint location;
21564 GLsizei count;
21565 GLboolean transpose;
21566 const GLdouble *value;
21569 struct glUniformMatrix3fv_params
21571 TEB *teb;
21572 GLint location;
21573 GLsizei count;
21574 GLboolean transpose;
21575 const GLfloat *value;
21578 struct glUniformMatrix3fvARB_params
21580 TEB *teb;
21581 GLint location;
21582 GLsizei count;
21583 GLboolean transpose;
21584 const GLfloat *value;
21587 struct glUniformMatrix3x2dv_params
21589 TEB *teb;
21590 GLint location;
21591 GLsizei count;
21592 GLboolean transpose;
21593 const GLdouble *value;
21596 struct glUniformMatrix3x2fv_params
21598 TEB *teb;
21599 GLint location;
21600 GLsizei count;
21601 GLboolean transpose;
21602 const GLfloat *value;
21605 struct glUniformMatrix3x4dv_params
21607 TEB *teb;
21608 GLint location;
21609 GLsizei count;
21610 GLboolean transpose;
21611 const GLdouble *value;
21614 struct glUniformMatrix3x4fv_params
21616 TEB *teb;
21617 GLint location;
21618 GLsizei count;
21619 GLboolean transpose;
21620 const GLfloat *value;
21623 struct glUniformMatrix4dv_params
21625 TEB *teb;
21626 GLint location;
21627 GLsizei count;
21628 GLboolean transpose;
21629 const GLdouble *value;
21632 struct glUniformMatrix4fv_params
21634 TEB *teb;
21635 GLint location;
21636 GLsizei count;
21637 GLboolean transpose;
21638 const GLfloat *value;
21641 struct glUniformMatrix4fvARB_params
21643 TEB *teb;
21644 GLint location;
21645 GLsizei count;
21646 GLboolean transpose;
21647 const GLfloat *value;
21650 struct glUniformMatrix4x2dv_params
21652 TEB *teb;
21653 GLint location;
21654 GLsizei count;
21655 GLboolean transpose;
21656 const GLdouble *value;
21659 struct glUniformMatrix4x2fv_params
21661 TEB *teb;
21662 GLint location;
21663 GLsizei count;
21664 GLboolean transpose;
21665 const GLfloat *value;
21668 struct glUniformMatrix4x3dv_params
21670 TEB *teb;
21671 GLint location;
21672 GLsizei count;
21673 GLboolean transpose;
21674 const GLdouble *value;
21677 struct glUniformMatrix4x3fv_params
21679 TEB *teb;
21680 GLint location;
21681 GLsizei count;
21682 GLboolean transpose;
21683 const GLfloat *value;
21686 struct glUniformSubroutinesuiv_params
21688 TEB *teb;
21689 GLenum shadertype;
21690 GLsizei count;
21691 const GLuint *indices;
21694 struct glUniformui64NV_params
21696 TEB *teb;
21697 GLint location;
21698 GLuint64EXT value;
21701 struct glUniformui64vNV_params
21703 TEB *teb;
21704 GLint location;
21705 GLsizei count;
21706 const GLuint64EXT *value;
21709 struct glUnlockArraysEXT_params
21711 TEB *teb;
21714 struct glUnmapBuffer_params
21716 TEB *teb;
21717 GLenum target;
21718 GLboolean ret;
21721 struct glUnmapBufferARB_params
21723 TEB *teb;
21724 GLenum target;
21725 GLboolean ret;
21728 struct glUnmapNamedBuffer_params
21730 TEB *teb;
21731 GLuint buffer;
21732 GLboolean ret;
21735 struct glUnmapNamedBufferEXT_params
21737 TEB *teb;
21738 GLuint buffer;
21739 GLboolean ret;
21742 struct glUnmapObjectBufferATI_params
21744 TEB *teb;
21745 GLuint buffer;
21748 struct glUnmapTexture2DINTEL_params
21750 TEB *teb;
21751 GLuint texture;
21752 GLint level;
21755 struct glUpdateObjectBufferATI_params
21757 TEB *teb;
21758 GLuint buffer;
21759 GLuint offset;
21760 GLsizei size;
21761 const void *pointer;
21762 GLenum preserve;
21765 struct glUploadGpuMaskNVX_params
21767 TEB *teb;
21768 GLbitfield mask;
21771 struct glUseProgram_params
21773 TEB *teb;
21774 GLuint program;
21777 struct glUseProgramObjectARB_params
21779 TEB *teb;
21780 GLhandleARB programObj;
21783 struct glUseProgramStages_params
21785 TEB *teb;
21786 GLuint pipeline;
21787 GLbitfield stages;
21788 GLuint program;
21791 struct glUseShaderProgramEXT_params
21793 TEB *teb;
21794 GLenum type;
21795 GLuint program;
21798 struct glVDPAUFiniNV_params
21800 TEB *teb;
21803 struct glVDPAUGetSurfaceivNV_params
21805 TEB *teb;
21806 GLvdpauSurfaceNV surface;
21807 GLenum pname;
21808 GLsizei count;
21809 GLsizei *length;
21810 GLint *values;
21813 struct glVDPAUInitNV_params
21815 TEB *teb;
21816 const void *vdpDevice;
21817 const void *getProcAddress;
21820 struct glVDPAUIsSurfaceNV_params
21822 TEB *teb;
21823 GLvdpauSurfaceNV surface;
21824 GLboolean ret;
21827 struct glVDPAUMapSurfacesNV_params
21829 TEB *teb;
21830 GLsizei numSurfaces;
21831 const GLvdpauSurfaceNV *surfaces;
21834 struct glVDPAURegisterOutputSurfaceNV_params
21836 TEB *teb;
21837 const void *vdpSurface;
21838 GLenum target;
21839 GLsizei numTextureNames;
21840 const GLuint *textureNames;
21841 GLvdpauSurfaceNV ret;
21844 struct glVDPAURegisterVideoSurfaceNV_params
21846 TEB *teb;
21847 const void *vdpSurface;
21848 GLenum target;
21849 GLsizei numTextureNames;
21850 const GLuint *textureNames;
21851 GLvdpauSurfaceNV ret;
21854 struct glVDPAURegisterVideoSurfaceWithPictureStructureNV_params
21856 TEB *teb;
21857 const void *vdpSurface;
21858 GLenum target;
21859 GLsizei numTextureNames;
21860 const GLuint *textureNames;
21861 GLboolean isFrameStructure;
21862 GLvdpauSurfaceNV ret;
21865 struct glVDPAUSurfaceAccessNV_params
21867 TEB *teb;
21868 GLvdpauSurfaceNV surface;
21869 GLenum access;
21872 struct glVDPAUUnmapSurfacesNV_params
21874 TEB *teb;
21875 GLsizei numSurface;
21876 const GLvdpauSurfaceNV *surfaces;
21879 struct glVDPAUUnregisterSurfaceNV_params
21881 TEB *teb;
21882 GLvdpauSurfaceNV surface;
21885 struct glValidateProgram_params
21887 TEB *teb;
21888 GLuint program;
21891 struct glValidateProgramARB_params
21893 TEB *teb;
21894 GLhandleARB programObj;
21897 struct glValidateProgramPipeline_params
21899 TEB *teb;
21900 GLuint pipeline;
21903 struct glVariantArrayObjectATI_params
21905 TEB *teb;
21906 GLuint id;
21907 GLenum type;
21908 GLsizei stride;
21909 GLuint buffer;
21910 GLuint offset;
21913 struct glVariantPointerEXT_params
21915 TEB *teb;
21916 GLuint id;
21917 GLenum type;
21918 GLuint stride;
21919 const void *addr;
21922 struct glVariantbvEXT_params
21924 TEB *teb;
21925 GLuint id;
21926 const GLbyte *addr;
21929 struct glVariantdvEXT_params
21931 TEB *teb;
21932 GLuint id;
21933 const GLdouble *addr;
21936 struct glVariantfvEXT_params
21938 TEB *teb;
21939 GLuint id;
21940 const GLfloat *addr;
21943 struct glVariantivEXT_params
21945 TEB *teb;
21946 GLuint id;
21947 const GLint *addr;
21950 struct glVariantsvEXT_params
21952 TEB *teb;
21953 GLuint id;
21954 const GLshort *addr;
21957 struct glVariantubvEXT_params
21959 TEB *teb;
21960 GLuint id;
21961 const GLubyte *addr;
21964 struct glVariantuivEXT_params
21966 TEB *teb;
21967 GLuint id;
21968 const GLuint *addr;
21971 struct glVariantusvEXT_params
21973 TEB *teb;
21974 GLuint id;
21975 const GLushort *addr;
21978 struct glVertex2bOES_params
21980 TEB *teb;
21981 GLbyte x;
21982 GLbyte y;
21985 struct glVertex2bvOES_params
21987 TEB *teb;
21988 const GLbyte *coords;
21991 struct glVertex2hNV_params
21993 TEB *teb;
21994 GLhalfNV x;
21995 GLhalfNV y;
21998 struct glVertex2hvNV_params
22000 TEB *teb;
22001 const GLhalfNV *v;
22004 struct glVertex2xOES_params
22006 TEB *teb;
22007 GLfixed x;
22010 struct glVertex2xvOES_params
22012 TEB *teb;
22013 const GLfixed *coords;
22016 struct glVertex3bOES_params
22018 TEB *teb;
22019 GLbyte x;
22020 GLbyte y;
22021 GLbyte z;
22024 struct glVertex3bvOES_params
22026 TEB *teb;
22027 const GLbyte *coords;
22030 struct glVertex3hNV_params
22032 TEB *teb;
22033 GLhalfNV x;
22034 GLhalfNV y;
22035 GLhalfNV z;
22038 struct glVertex3hvNV_params
22040 TEB *teb;
22041 const GLhalfNV *v;
22044 struct glVertex3xOES_params
22046 TEB *teb;
22047 GLfixed x;
22048 GLfixed y;
22051 struct glVertex3xvOES_params
22053 TEB *teb;
22054 const GLfixed *coords;
22057 struct glVertex4bOES_params
22059 TEB *teb;
22060 GLbyte x;
22061 GLbyte y;
22062 GLbyte z;
22063 GLbyte w;
22066 struct glVertex4bvOES_params
22068 TEB *teb;
22069 const GLbyte *coords;
22072 struct glVertex4hNV_params
22074 TEB *teb;
22075 GLhalfNV x;
22076 GLhalfNV y;
22077 GLhalfNV z;
22078 GLhalfNV w;
22081 struct glVertex4hvNV_params
22083 TEB *teb;
22084 const GLhalfNV *v;
22087 struct glVertex4xOES_params
22089 TEB *teb;
22090 GLfixed x;
22091 GLfixed y;
22092 GLfixed z;
22095 struct glVertex4xvOES_params
22097 TEB *teb;
22098 const GLfixed *coords;
22101 struct glVertexArrayAttribBinding_params
22103 TEB *teb;
22104 GLuint vaobj;
22105 GLuint attribindex;
22106 GLuint bindingindex;
22109 struct glVertexArrayAttribFormat_params
22111 TEB *teb;
22112 GLuint vaobj;
22113 GLuint attribindex;
22114 GLint size;
22115 GLenum type;
22116 GLboolean normalized;
22117 GLuint relativeoffset;
22120 struct glVertexArrayAttribIFormat_params
22122 TEB *teb;
22123 GLuint vaobj;
22124 GLuint attribindex;
22125 GLint size;
22126 GLenum type;
22127 GLuint relativeoffset;
22130 struct glVertexArrayAttribLFormat_params
22132 TEB *teb;
22133 GLuint vaobj;
22134 GLuint attribindex;
22135 GLint size;
22136 GLenum type;
22137 GLuint relativeoffset;
22140 struct glVertexArrayBindVertexBufferEXT_params
22142 TEB *teb;
22143 GLuint vaobj;
22144 GLuint bindingindex;
22145 GLuint buffer;
22146 GLintptr offset;
22147 GLsizei stride;
22150 struct glVertexArrayBindingDivisor_params
22152 TEB *teb;
22153 GLuint vaobj;
22154 GLuint bindingindex;
22155 GLuint divisor;
22158 struct glVertexArrayColorOffsetEXT_params
22160 TEB *teb;
22161 GLuint vaobj;
22162 GLuint buffer;
22163 GLint size;
22164 GLenum type;
22165 GLsizei stride;
22166 GLintptr offset;
22169 struct glVertexArrayEdgeFlagOffsetEXT_params
22171 TEB *teb;
22172 GLuint vaobj;
22173 GLuint buffer;
22174 GLsizei stride;
22175 GLintptr offset;
22178 struct glVertexArrayElementBuffer_params
22180 TEB *teb;
22181 GLuint vaobj;
22182 GLuint buffer;
22185 struct glVertexArrayFogCoordOffsetEXT_params
22187 TEB *teb;
22188 GLuint vaobj;
22189 GLuint buffer;
22190 GLenum type;
22191 GLsizei stride;
22192 GLintptr offset;
22195 struct glVertexArrayIndexOffsetEXT_params
22197 TEB *teb;
22198 GLuint vaobj;
22199 GLuint buffer;
22200 GLenum type;
22201 GLsizei stride;
22202 GLintptr offset;
22205 struct glVertexArrayMultiTexCoordOffsetEXT_params
22207 TEB *teb;
22208 GLuint vaobj;
22209 GLuint buffer;
22210 GLenum texunit;
22211 GLint size;
22212 GLenum type;
22213 GLsizei stride;
22214 GLintptr offset;
22217 struct glVertexArrayNormalOffsetEXT_params
22219 TEB *teb;
22220 GLuint vaobj;
22221 GLuint buffer;
22222 GLenum type;
22223 GLsizei stride;
22224 GLintptr offset;
22227 struct glVertexArrayParameteriAPPLE_params
22229 TEB *teb;
22230 GLenum pname;
22231 GLint param;
22234 struct glVertexArrayRangeAPPLE_params
22236 TEB *teb;
22237 GLsizei length;
22238 void *pointer;
22241 struct glVertexArrayRangeNV_params
22243 TEB *teb;
22244 GLsizei length;
22245 const void *pointer;
22248 struct glVertexArraySecondaryColorOffsetEXT_params
22250 TEB *teb;
22251 GLuint vaobj;
22252 GLuint buffer;
22253 GLint size;
22254 GLenum type;
22255 GLsizei stride;
22256 GLintptr offset;
22259 struct glVertexArrayTexCoordOffsetEXT_params
22261 TEB *teb;
22262 GLuint vaobj;
22263 GLuint buffer;
22264 GLint size;
22265 GLenum type;
22266 GLsizei stride;
22267 GLintptr offset;
22270 struct glVertexArrayVertexAttribBindingEXT_params
22272 TEB *teb;
22273 GLuint vaobj;
22274 GLuint attribindex;
22275 GLuint bindingindex;
22278 struct glVertexArrayVertexAttribDivisorEXT_params
22280 TEB *teb;
22281 GLuint vaobj;
22282 GLuint index;
22283 GLuint divisor;
22286 struct glVertexArrayVertexAttribFormatEXT_params
22288 TEB *teb;
22289 GLuint vaobj;
22290 GLuint attribindex;
22291 GLint size;
22292 GLenum type;
22293 GLboolean normalized;
22294 GLuint relativeoffset;
22297 struct glVertexArrayVertexAttribIFormatEXT_params
22299 TEB *teb;
22300 GLuint vaobj;
22301 GLuint attribindex;
22302 GLint size;
22303 GLenum type;
22304 GLuint relativeoffset;
22307 struct glVertexArrayVertexAttribIOffsetEXT_params
22309 TEB *teb;
22310 GLuint vaobj;
22311 GLuint buffer;
22312 GLuint index;
22313 GLint size;
22314 GLenum type;
22315 GLsizei stride;
22316 GLintptr offset;
22319 struct glVertexArrayVertexAttribLFormatEXT_params
22321 TEB *teb;
22322 GLuint vaobj;
22323 GLuint attribindex;
22324 GLint size;
22325 GLenum type;
22326 GLuint relativeoffset;
22329 struct glVertexArrayVertexAttribLOffsetEXT_params
22331 TEB *teb;
22332 GLuint vaobj;
22333 GLuint buffer;
22334 GLuint index;
22335 GLint size;
22336 GLenum type;
22337 GLsizei stride;
22338 GLintptr offset;
22341 struct glVertexArrayVertexAttribOffsetEXT_params
22343 TEB *teb;
22344 GLuint vaobj;
22345 GLuint buffer;
22346 GLuint index;
22347 GLint size;
22348 GLenum type;
22349 GLboolean normalized;
22350 GLsizei stride;
22351 GLintptr offset;
22354 struct glVertexArrayVertexBindingDivisorEXT_params
22356 TEB *teb;
22357 GLuint vaobj;
22358 GLuint bindingindex;
22359 GLuint divisor;
22362 struct glVertexArrayVertexBuffer_params
22364 TEB *teb;
22365 GLuint vaobj;
22366 GLuint bindingindex;
22367 GLuint buffer;
22368 GLintptr offset;
22369 GLsizei stride;
22372 struct glVertexArrayVertexBuffers_params
22374 TEB *teb;
22375 GLuint vaobj;
22376 GLuint first;
22377 GLsizei count;
22378 const GLuint *buffers;
22379 const GLintptr *offsets;
22380 const GLsizei *strides;
22383 struct glVertexArrayVertexOffsetEXT_params
22385 TEB *teb;
22386 GLuint vaobj;
22387 GLuint buffer;
22388 GLint size;
22389 GLenum type;
22390 GLsizei stride;
22391 GLintptr offset;
22394 struct glVertexAttrib1d_params
22396 TEB *teb;
22397 GLuint index;
22398 GLdouble x;
22401 struct glVertexAttrib1dARB_params
22403 TEB *teb;
22404 GLuint index;
22405 GLdouble x;
22408 struct glVertexAttrib1dNV_params
22410 TEB *teb;
22411 GLuint index;
22412 GLdouble x;
22415 struct glVertexAttrib1dv_params
22417 TEB *teb;
22418 GLuint index;
22419 const GLdouble *v;
22422 struct glVertexAttrib1dvARB_params
22424 TEB *teb;
22425 GLuint index;
22426 const GLdouble *v;
22429 struct glVertexAttrib1dvNV_params
22431 TEB *teb;
22432 GLuint index;
22433 const GLdouble *v;
22436 struct glVertexAttrib1f_params
22438 TEB *teb;
22439 GLuint index;
22440 GLfloat x;
22443 struct glVertexAttrib1fARB_params
22445 TEB *teb;
22446 GLuint index;
22447 GLfloat x;
22450 struct glVertexAttrib1fNV_params
22452 TEB *teb;
22453 GLuint index;
22454 GLfloat x;
22457 struct glVertexAttrib1fv_params
22459 TEB *teb;
22460 GLuint index;
22461 const GLfloat *v;
22464 struct glVertexAttrib1fvARB_params
22466 TEB *teb;
22467 GLuint index;
22468 const GLfloat *v;
22471 struct glVertexAttrib1fvNV_params
22473 TEB *teb;
22474 GLuint index;
22475 const GLfloat *v;
22478 struct glVertexAttrib1hNV_params
22480 TEB *teb;
22481 GLuint index;
22482 GLhalfNV x;
22485 struct glVertexAttrib1hvNV_params
22487 TEB *teb;
22488 GLuint index;
22489 const GLhalfNV *v;
22492 struct glVertexAttrib1s_params
22494 TEB *teb;
22495 GLuint index;
22496 GLshort x;
22499 struct glVertexAttrib1sARB_params
22501 TEB *teb;
22502 GLuint index;
22503 GLshort x;
22506 struct glVertexAttrib1sNV_params
22508 TEB *teb;
22509 GLuint index;
22510 GLshort x;
22513 struct glVertexAttrib1sv_params
22515 TEB *teb;
22516 GLuint index;
22517 const GLshort *v;
22520 struct glVertexAttrib1svARB_params
22522 TEB *teb;
22523 GLuint index;
22524 const GLshort *v;
22527 struct glVertexAttrib1svNV_params
22529 TEB *teb;
22530 GLuint index;
22531 const GLshort *v;
22534 struct glVertexAttrib2d_params
22536 TEB *teb;
22537 GLuint index;
22538 GLdouble x;
22539 GLdouble y;
22542 struct glVertexAttrib2dARB_params
22544 TEB *teb;
22545 GLuint index;
22546 GLdouble x;
22547 GLdouble y;
22550 struct glVertexAttrib2dNV_params
22552 TEB *teb;
22553 GLuint index;
22554 GLdouble x;
22555 GLdouble y;
22558 struct glVertexAttrib2dv_params
22560 TEB *teb;
22561 GLuint index;
22562 const GLdouble *v;
22565 struct glVertexAttrib2dvARB_params
22567 TEB *teb;
22568 GLuint index;
22569 const GLdouble *v;
22572 struct glVertexAttrib2dvNV_params
22574 TEB *teb;
22575 GLuint index;
22576 const GLdouble *v;
22579 struct glVertexAttrib2f_params
22581 TEB *teb;
22582 GLuint index;
22583 GLfloat x;
22584 GLfloat y;
22587 struct glVertexAttrib2fARB_params
22589 TEB *teb;
22590 GLuint index;
22591 GLfloat x;
22592 GLfloat y;
22595 struct glVertexAttrib2fNV_params
22597 TEB *teb;
22598 GLuint index;
22599 GLfloat x;
22600 GLfloat y;
22603 struct glVertexAttrib2fv_params
22605 TEB *teb;
22606 GLuint index;
22607 const GLfloat *v;
22610 struct glVertexAttrib2fvARB_params
22612 TEB *teb;
22613 GLuint index;
22614 const GLfloat *v;
22617 struct glVertexAttrib2fvNV_params
22619 TEB *teb;
22620 GLuint index;
22621 const GLfloat *v;
22624 struct glVertexAttrib2hNV_params
22626 TEB *teb;
22627 GLuint index;
22628 GLhalfNV x;
22629 GLhalfNV y;
22632 struct glVertexAttrib2hvNV_params
22634 TEB *teb;
22635 GLuint index;
22636 const GLhalfNV *v;
22639 struct glVertexAttrib2s_params
22641 TEB *teb;
22642 GLuint index;
22643 GLshort x;
22644 GLshort y;
22647 struct glVertexAttrib2sARB_params
22649 TEB *teb;
22650 GLuint index;
22651 GLshort x;
22652 GLshort y;
22655 struct glVertexAttrib2sNV_params
22657 TEB *teb;
22658 GLuint index;
22659 GLshort x;
22660 GLshort y;
22663 struct glVertexAttrib2sv_params
22665 TEB *teb;
22666 GLuint index;
22667 const GLshort *v;
22670 struct glVertexAttrib2svARB_params
22672 TEB *teb;
22673 GLuint index;
22674 const GLshort *v;
22677 struct glVertexAttrib2svNV_params
22679 TEB *teb;
22680 GLuint index;
22681 const GLshort *v;
22684 struct glVertexAttrib3d_params
22686 TEB *teb;
22687 GLuint index;
22688 GLdouble x;
22689 GLdouble y;
22690 GLdouble z;
22693 struct glVertexAttrib3dARB_params
22695 TEB *teb;
22696 GLuint index;
22697 GLdouble x;
22698 GLdouble y;
22699 GLdouble z;
22702 struct glVertexAttrib3dNV_params
22704 TEB *teb;
22705 GLuint index;
22706 GLdouble x;
22707 GLdouble y;
22708 GLdouble z;
22711 struct glVertexAttrib3dv_params
22713 TEB *teb;
22714 GLuint index;
22715 const GLdouble *v;
22718 struct glVertexAttrib3dvARB_params
22720 TEB *teb;
22721 GLuint index;
22722 const GLdouble *v;
22725 struct glVertexAttrib3dvNV_params
22727 TEB *teb;
22728 GLuint index;
22729 const GLdouble *v;
22732 struct glVertexAttrib3f_params
22734 TEB *teb;
22735 GLuint index;
22736 GLfloat x;
22737 GLfloat y;
22738 GLfloat z;
22741 struct glVertexAttrib3fARB_params
22743 TEB *teb;
22744 GLuint index;
22745 GLfloat x;
22746 GLfloat y;
22747 GLfloat z;
22750 struct glVertexAttrib3fNV_params
22752 TEB *teb;
22753 GLuint index;
22754 GLfloat x;
22755 GLfloat y;
22756 GLfloat z;
22759 struct glVertexAttrib3fv_params
22761 TEB *teb;
22762 GLuint index;
22763 const GLfloat *v;
22766 struct glVertexAttrib3fvARB_params
22768 TEB *teb;
22769 GLuint index;
22770 const GLfloat *v;
22773 struct glVertexAttrib3fvNV_params
22775 TEB *teb;
22776 GLuint index;
22777 const GLfloat *v;
22780 struct glVertexAttrib3hNV_params
22782 TEB *teb;
22783 GLuint index;
22784 GLhalfNV x;
22785 GLhalfNV y;
22786 GLhalfNV z;
22789 struct glVertexAttrib3hvNV_params
22791 TEB *teb;
22792 GLuint index;
22793 const GLhalfNV *v;
22796 struct glVertexAttrib3s_params
22798 TEB *teb;
22799 GLuint index;
22800 GLshort x;
22801 GLshort y;
22802 GLshort z;
22805 struct glVertexAttrib3sARB_params
22807 TEB *teb;
22808 GLuint index;
22809 GLshort x;
22810 GLshort y;
22811 GLshort z;
22814 struct glVertexAttrib3sNV_params
22816 TEB *teb;
22817 GLuint index;
22818 GLshort x;
22819 GLshort y;
22820 GLshort z;
22823 struct glVertexAttrib3sv_params
22825 TEB *teb;
22826 GLuint index;
22827 const GLshort *v;
22830 struct glVertexAttrib3svARB_params
22832 TEB *teb;
22833 GLuint index;
22834 const GLshort *v;
22837 struct glVertexAttrib3svNV_params
22839 TEB *teb;
22840 GLuint index;
22841 const GLshort *v;
22844 struct glVertexAttrib4Nbv_params
22846 TEB *teb;
22847 GLuint index;
22848 const GLbyte *v;
22851 struct glVertexAttrib4NbvARB_params
22853 TEB *teb;
22854 GLuint index;
22855 const GLbyte *v;
22858 struct glVertexAttrib4Niv_params
22860 TEB *teb;
22861 GLuint index;
22862 const GLint *v;
22865 struct glVertexAttrib4NivARB_params
22867 TEB *teb;
22868 GLuint index;
22869 const GLint *v;
22872 struct glVertexAttrib4Nsv_params
22874 TEB *teb;
22875 GLuint index;
22876 const GLshort *v;
22879 struct glVertexAttrib4NsvARB_params
22881 TEB *teb;
22882 GLuint index;
22883 const GLshort *v;
22886 struct glVertexAttrib4Nub_params
22888 TEB *teb;
22889 GLuint index;
22890 GLubyte x;
22891 GLubyte y;
22892 GLubyte z;
22893 GLubyte w;
22896 struct glVertexAttrib4NubARB_params
22898 TEB *teb;
22899 GLuint index;
22900 GLubyte x;
22901 GLubyte y;
22902 GLubyte z;
22903 GLubyte w;
22906 struct glVertexAttrib4Nubv_params
22908 TEB *teb;
22909 GLuint index;
22910 const GLubyte *v;
22913 struct glVertexAttrib4NubvARB_params
22915 TEB *teb;
22916 GLuint index;
22917 const GLubyte *v;
22920 struct glVertexAttrib4Nuiv_params
22922 TEB *teb;
22923 GLuint index;
22924 const GLuint *v;
22927 struct glVertexAttrib4NuivARB_params
22929 TEB *teb;
22930 GLuint index;
22931 const GLuint *v;
22934 struct glVertexAttrib4Nusv_params
22936 TEB *teb;
22937 GLuint index;
22938 const GLushort *v;
22941 struct glVertexAttrib4NusvARB_params
22943 TEB *teb;
22944 GLuint index;
22945 const GLushort *v;
22948 struct glVertexAttrib4bv_params
22950 TEB *teb;
22951 GLuint index;
22952 const GLbyte *v;
22955 struct glVertexAttrib4bvARB_params
22957 TEB *teb;
22958 GLuint index;
22959 const GLbyte *v;
22962 struct glVertexAttrib4d_params
22964 TEB *teb;
22965 GLuint index;
22966 GLdouble x;
22967 GLdouble y;
22968 GLdouble z;
22969 GLdouble w;
22972 struct glVertexAttrib4dARB_params
22974 TEB *teb;
22975 GLuint index;
22976 GLdouble x;
22977 GLdouble y;
22978 GLdouble z;
22979 GLdouble w;
22982 struct glVertexAttrib4dNV_params
22984 TEB *teb;
22985 GLuint index;
22986 GLdouble x;
22987 GLdouble y;
22988 GLdouble z;
22989 GLdouble w;
22992 struct glVertexAttrib4dv_params
22994 TEB *teb;
22995 GLuint index;
22996 const GLdouble *v;
22999 struct glVertexAttrib4dvARB_params
23001 TEB *teb;
23002 GLuint index;
23003 const GLdouble *v;
23006 struct glVertexAttrib4dvNV_params
23008 TEB *teb;
23009 GLuint index;
23010 const GLdouble *v;
23013 struct glVertexAttrib4f_params
23015 TEB *teb;
23016 GLuint index;
23017 GLfloat x;
23018 GLfloat y;
23019 GLfloat z;
23020 GLfloat w;
23023 struct glVertexAttrib4fARB_params
23025 TEB *teb;
23026 GLuint index;
23027 GLfloat x;
23028 GLfloat y;
23029 GLfloat z;
23030 GLfloat w;
23033 struct glVertexAttrib4fNV_params
23035 TEB *teb;
23036 GLuint index;
23037 GLfloat x;
23038 GLfloat y;
23039 GLfloat z;
23040 GLfloat w;
23043 struct glVertexAttrib4fv_params
23045 TEB *teb;
23046 GLuint index;
23047 const GLfloat *v;
23050 struct glVertexAttrib4fvARB_params
23052 TEB *teb;
23053 GLuint index;
23054 const GLfloat *v;
23057 struct glVertexAttrib4fvNV_params
23059 TEB *teb;
23060 GLuint index;
23061 const GLfloat *v;
23064 struct glVertexAttrib4hNV_params
23066 TEB *teb;
23067 GLuint index;
23068 GLhalfNV x;
23069 GLhalfNV y;
23070 GLhalfNV z;
23071 GLhalfNV w;
23074 struct glVertexAttrib4hvNV_params
23076 TEB *teb;
23077 GLuint index;
23078 const GLhalfNV *v;
23081 struct glVertexAttrib4iv_params
23083 TEB *teb;
23084 GLuint index;
23085 const GLint *v;
23088 struct glVertexAttrib4ivARB_params
23090 TEB *teb;
23091 GLuint index;
23092 const GLint *v;
23095 struct glVertexAttrib4s_params
23097 TEB *teb;
23098 GLuint index;
23099 GLshort x;
23100 GLshort y;
23101 GLshort z;
23102 GLshort w;
23105 struct glVertexAttrib4sARB_params
23107 TEB *teb;
23108 GLuint index;
23109 GLshort x;
23110 GLshort y;
23111 GLshort z;
23112 GLshort w;
23115 struct glVertexAttrib4sNV_params
23117 TEB *teb;
23118 GLuint index;
23119 GLshort x;
23120 GLshort y;
23121 GLshort z;
23122 GLshort w;
23125 struct glVertexAttrib4sv_params
23127 TEB *teb;
23128 GLuint index;
23129 const GLshort *v;
23132 struct glVertexAttrib4svARB_params
23134 TEB *teb;
23135 GLuint index;
23136 const GLshort *v;
23139 struct glVertexAttrib4svNV_params
23141 TEB *teb;
23142 GLuint index;
23143 const GLshort *v;
23146 struct glVertexAttrib4ubNV_params
23148 TEB *teb;
23149 GLuint index;
23150 GLubyte x;
23151 GLubyte y;
23152 GLubyte z;
23153 GLubyte w;
23156 struct glVertexAttrib4ubv_params
23158 TEB *teb;
23159 GLuint index;
23160 const GLubyte *v;
23163 struct glVertexAttrib4ubvARB_params
23165 TEB *teb;
23166 GLuint index;
23167 const GLubyte *v;
23170 struct glVertexAttrib4ubvNV_params
23172 TEB *teb;
23173 GLuint index;
23174 const GLubyte *v;
23177 struct glVertexAttrib4uiv_params
23179 TEB *teb;
23180 GLuint index;
23181 const GLuint *v;
23184 struct glVertexAttrib4uivARB_params
23186 TEB *teb;
23187 GLuint index;
23188 const GLuint *v;
23191 struct glVertexAttrib4usv_params
23193 TEB *teb;
23194 GLuint index;
23195 const GLushort *v;
23198 struct glVertexAttrib4usvARB_params
23200 TEB *teb;
23201 GLuint index;
23202 const GLushort *v;
23205 struct glVertexAttribArrayObjectATI_params
23207 TEB *teb;
23208 GLuint index;
23209 GLint size;
23210 GLenum type;
23211 GLboolean normalized;
23212 GLsizei stride;
23213 GLuint buffer;
23214 GLuint offset;
23217 struct glVertexAttribBinding_params
23219 TEB *teb;
23220 GLuint attribindex;
23221 GLuint bindingindex;
23224 struct glVertexAttribDivisor_params
23226 TEB *teb;
23227 GLuint index;
23228 GLuint divisor;
23231 struct glVertexAttribDivisorARB_params
23233 TEB *teb;
23234 GLuint index;
23235 GLuint divisor;
23238 struct glVertexAttribFormat_params
23240 TEB *teb;
23241 GLuint attribindex;
23242 GLint size;
23243 GLenum type;
23244 GLboolean normalized;
23245 GLuint relativeoffset;
23248 struct glVertexAttribFormatNV_params
23250 TEB *teb;
23251 GLuint index;
23252 GLint size;
23253 GLenum type;
23254 GLboolean normalized;
23255 GLsizei stride;
23258 struct glVertexAttribI1i_params
23260 TEB *teb;
23261 GLuint index;
23262 GLint x;
23265 struct glVertexAttribI1iEXT_params
23267 TEB *teb;
23268 GLuint index;
23269 GLint x;
23272 struct glVertexAttribI1iv_params
23274 TEB *teb;
23275 GLuint index;
23276 const GLint *v;
23279 struct glVertexAttribI1ivEXT_params
23281 TEB *teb;
23282 GLuint index;
23283 const GLint *v;
23286 struct glVertexAttribI1ui_params
23288 TEB *teb;
23289 GLuint index;
23290 GLuint x;
23293 struct glVertexAttribI1uiEXT_params
23295 TEB *teb;
23296 GLuint index;
23297 GLuint x;
23300 struct glVertexAttribI1uiv_params
23302 TEB *teb;
23303 GLuint index;
23304 const GLuint *v;
23307 struct glVertexAttribI1uivEXT_params
23309 TEB *teb;
23310 GLuint index;
23311 const GLuint *v;
23314 struct glVertexAttribI2i_params
23316 TEB *teb;
23317 GLuint index;
23318 GLint x;
23319 GLint y;
23322 struct glVertexAttribI2iEXT_params
23324 TEB *teb;
23325 GLuint index;
23326 GLint x;
23327 GLint y;
23330 struct glVertexAttribI2iv_params
23332 TEB *teb;
23333 GLuint index;
23334 const GLint *v;
23337 struct glVertexAttribI2ivEXT_params
23339 TEB *teb;
23340 GLuint index;
23341 const GLint *v;
23344 struct glVertexAttribI2ui_params
23346 TEB *teb;
23347 GLuint index;
23348 GLuint x;
23349 GLuint y;
23352 struct glVertexAttribI2uiEXT_params
23354 TEB *teb;
23355 GLuint index;
23356 GLuint x;
23357 GLuint y;
23360 struct glVertexAttribI2uiv_params
23362 TEB *teb;
23363 GLuint index;
23364 const GLuint *v;
23367 struct glVertexAttribI2uivEXT_params
23369 TEB *teb;
23370 GLuint index;
23371 const GLuint *v;
23374 struct glVertexAttribI3i_params
23376 TEB *teb;
23377 GLuint index;
23378 GLint x;
23379 GLint y;
23380 GLint z;
23383 struct glVertexAttribI3iEXT_params
23385 TEB *teb;
23386 GLuint index;
23387 GLint x;
23388 GLint y;
23389 GLint z;
23392 struct glVertexAttribI3iv_params
23394 TEB *teb;
23395 GLuint index;
23396 const GLint *v;
23399 struct glVertexAttribI3ivEXT_params
23401 TEB *teb;
23402 GLuint index;
23403 const GLint *v;
23406 struct glVertexAttribI3ui_params
23408 TEB *teb;
23409 GLuint index;
23410 GLuint x;
23411 GLuint y;
23412 GLuint z;
23415 struct glVertexAttribI3uiEXT_params
23417 TEB *teb;
23418 GLuint index;
23419 GLuint x;
23420 GLuint y;
23421 GLuint z;
23424 struct glVertexAttribI3uiv_params
23426 TEB *teb;
23427 GLuint index;
23428 const GLuint *v;
23431 struct glVertexAttribI3uivEXT_params
23433 TEB *teb;
23434 GLuint index;
23435 const GLuint *v;
23438 struct glVertexAttribI4bv_params
23440 TEB *teb;
23441 GLuint index;
23442 const GLbyte *v;
23445 struct glVertexAttribI4bvEXT_params
23447 TEB *teb;
23448 GLuint index;
23449 const GLbyte *v;
23452 struct glVertexAttribI4i_params
23454 TEB *teb;
23455 GLuint index;
23456 GLint x;
23457 GLint y;
23458 GLint z;
23459 GLint w;
23462 struct glVertexAttribI4iEXT_params
23464 TEB *teb;
23465 GLuint index;
23466 GLint x;
23467 GLint y;
23468 GLint z;
23469 GLint w;
23472 struct glVertexAttribI4iv_params
23474 TEB *teb;
23475 GLuint index;
23476 const GLint *v;
23479 struct glVertexAttribI4ivEXT_params
23481 TEB *teb;
23482 GLuint index;
23483 const GLint *v;
23486 struct glVertexAttribI4sv_params
23488 TEB *teb;
23489 GLuint index;
23490 const GLshort *v;
23493 struct glVertexAttribI4svEXT_params
23495 TEB *teb;
23496 GLuint index;
23497 const GLshort *v;
23500 struct glVertexAttribI4ubv_params
23502 TEB *teb;
23503 GLuint index;
23504 const GLubyte *v;
23507 struct glVertexAttribI4ubvEXT_params
23509 TEB *teb;
23510 GLuint index;
23511 const GLubyte *v;
23514 struct glVertexAttribI4ui_params
23516 TEB *teb;
23517 GLuint index;
23518 GLuint x;
23519 GLuint y;
23520 GLuint z;
23521 GLuint w;
23524 struct glVertexAttribI4uiEXT_params
23526 TEB *teb;
23527 GLuint index;
23528 GLuint x;
23529 GLuint y;
23530 GLuint z;
23531 GLuint w;
23534 struct glVertexAttribI4uiv_params
23536 TEB *teb;
23537 GLuint index;
23538 const GLuint *v;
23541 struct glVertexAttribI4uivEXT_params
23543 TEB *teb;
23544 GLuint index;
23545 const GLuint *v;
23548 struct glVertexAttribI4usv_params
23550 TEB *teb;
23551 GLuint index;
23552 const GLushort *v;
23555 struct glVertexAttribI4usvEXT_params
23557 TEB *teb;
23558 GLuint index;
23559 const GLushort *v;
23562 struct glVertexAttribIFormat_params
23564 TEB *teb;
23565 GLuint attribindex;
23566 GLint size;
23567 GLenum type;
23568 GLuint relativeoffset;
23571 struct glVertexAttribIFormatNV_params
23573 TEB *teb;
23574 GLuint index;
23575 GLint size;
23576 GLenum type;
23577 GLsizei stride;
23580 struct glVertexAttribIPointer_params
23582 TEB *teb;
23583 GLuint index;
23584 GLint size;
23585 GLenum type;
23586 GLsizei stride;
23587 const void *pointer;
23590 struct glVertexAttribIPointerEXT_params
23592 TEB *teb;
23593 GLuint index;
23594 GLint size;
23595 GLenum type;
23596 GLsizei stride;
23597 const void *pointer;
23600 struct glVertexAttribL1d_params
23602 TEB *teb;
23603 GLuint index;
23604 GLdouble x;
23607 struct glVertexAttribL1dEXT_params
23609 TEB *teb;
23610 GLuint index;
23611 GLdouble x;
23614 struct glVertexAttribL1dv_params
23616 TEB *teb;
23617 GLuint index;
23618 const GLdouble *v;
23621 struct glVertexAttribL1dvEXT_params
23623 TEB *teb;
23624 GLuint index;
23625 const GLdouble *v;
23628 struct glVertexAttribL1i64NV_params
23630 TEB *teb;
23631 GLuint index;
23632 GLint64EXT x;
23635 struct glVertexAttribL1i64vNV_params
23637 TEB *teb;
23638 GLuint index;
23639 const GLint64EXT *v;
23642 struct glVertexAttribL1ui64ARB_params
23644 TEB *teb;
23645 GLuint index;
23646 GLuint64EXT x;
23649 struct glVertexAttribL1ui64NV_params
23651 TEB *teb;
23652 GLuint index;
23653 GLuint64EXT x;
23656 struct glVertexAttribL1ui64vARB_params
23658 TEB *teb;
23659 GLuint index;
23660 const GLuint64EXT *v;
23663 struct glVertexAttribL1ui64vNV_params
23665 TEB *teb;
23666 GLuint index;
23667 const GLuint64EXT *v;
23670 struct glVertexAttribL2d_params
23672 TEB *teb;
23673 GLuint index;
23674 GLdouble x;
23675 GLdouble y;
23678 struct glVertexAttribL2dEXT_params
23680 TEB *teb;
23681 GLuint index;
23682 GLdouble x;
23683 GLdouble y;
23686 struct glVertexAttribL2dv_params
23688 TEB *teb;
23689 GLuint index;
23690 const GLdouble *v;
23693 struct glVertexAttribL2dvEXT_params
23695 TEB *teb;
23696 GLuint index;
23697 const GLdouble *v;
23700 struct glVertexAttribL2i64NV_params
23702 TEB *teb;
23703 GLuint index;
23704 GLint64EXT x;
23705 GLint64EXT y;
23708 struct glVertexAttribL2i64vNV_params
23710 TEB *teb;
23711 GLuint index;
23712 const GLint64EXT *v;
23715 struct glVertexAttribL2ui64NV_params
23717 TEB *teb;
23718 GLuint index;
23719 GLuint64EXT x;
23720 GLuint64EXT y;
23723 struct glVertexAttribL2ui64vNV_params
23725 TEB *teb;
23726 GLuint index;
23727 const GLuint64EXT *v;
23730 struct glVertexAttribL3d_params
23732 TEB *teb;
23733 GLuint index;
23734 GLdouble x;
23735 GLdouble y;
23736 GLdouble z;
23739 struct glVertexAttribL3dEXT_params
23741 TEB *teb;
23742 GLuint index;
23743 GLdouble x;
23744 GLdouble y;
23745 GLdouble z;
23748 struct glVertexAttribL3dv_params
23750 TEB *teb;
23751 GLuint index;
23752 const GLdouble *v;
23755 struct glVertexAttribL3dvEXT_params
23757 TEB *teb;
23758 GLuint index;
23759 const GLdouble *v;
23762 struct glVertexAttribL3i64NV_params
23764 TEB *teb;
23765 GLuint index;
23766 GLint64EXT x;
23767 GLint64EXT y;
23768 GLint64EXT z;
23771 struct glVertexAttribL3i64vNV_params
23773 TEB *teb;
23774 GLuint index;
23775 const GLint64EXT *v;
23778 struct glVertexAttribL3ui64NV_params
23780 TEB *teb;
23781 GLuint index;
23782 GLuint64EXT x;
23783 GLuint64EXT y;
23784 GLuint64EXT z;
23787 struct glVertexAttribL3ui64vNV_params
23789 TEB *teb;
23790 GLuint index;
23791 const GLuint64EXT *v;
23794 struct glVertexAttribL4d_params
23796 TEB *teb;
23797 GLuint index;
23798 GLdouble x;
23799 GLdouble y;
23800 GLdouble z;
23801 GLdouble w;
23804 struct glVertexAttribL4dEXT_params
23806 TEB *teb;
23807 GLuint index;
23808 GLdouble x;
23809 GLdouble y;
23810 GLdouble z;
23811 GLdouble w;
23814 struct glVertexAttribL4dv_params
23816 TEB *teb;
23817 GLuint index;
23818 const GLdouble *v;
23821 struct glVertexAttribL4dvEXT_params
23823 TEB *teb;
23824 GLuint index;
23825 const GLdouble *v;
23828 struct glVertexAttribL4i64NV_params
23830 TEB *teb;
23831 GLuint index;
23832 GLint64EXT x;
23833 GLint64EXT y;
23834 GLint64EXT z;
23835 GLint64EXT w;
23838 struct glVertexAttribL4i64vNV_params
23840 TEB *teb;
23841 GLuint index;
23842 const GLint64EXT *v;
23845 struct glVertexAttribL4ui64NV_params
23847 TEB *teb;
23848 GLuint index;
23849 GLuint64EXT x;
23850 GLuint64EXT y;
23851 GLuint64EXT z;
23852 GLuint64EXT w;
23855 struct glVertexAttribL4ui64vNV_params
23857 TEB *teb;
23858 GLuint index;
23859 const GLuint64EXT *v;
23862 struct glVertexAttribLFormat_params
23864 TEB *teb;
23865 GLuint attribindex;
23866 GLint size;
23867 GLenum type;
23868 GLuint relativeoffset;
23871 struct glVertexAttribLFormatNV_params
23873 TEB *teb;
23874 GLuint index;
23875 GLint size;
23876 GLenum type;
23877 GLsizei stride;
23880 struct glVertexAttribLPointer_params
23882 TEB *teb;
23883 GLuint index;
23884 GLint size;
23885 GLenum type;
23886 GLsizei stride;
23887 const void *pointer;
23890 struct glVertexAttribLPointerEXT_params
23892 TEB *teb;
23893 GLuint index;
23894 GLint size;
23895 GLenum type;
23896 GLsizei stride;
23897 const void *pointer;
23900 struct glVertexAttribP1ui_params
23902 TEB *teb;
23903 GLuint index;
23904 GLenum type;
23905 GLboolean normalized;
23906 GLuint value;
23909 struct glVertexAttribP1uiv_params
23911 TEB *teb;
23912 GLuint index;
23913 GLenum type;
23914 GLboolean normalized;
23915 const GLuint *value;
23918 struct glVertexAttribP2ui_params
23920 TEB *teb;
23921 GLuint index;
23922 GLenum type;
23923 GLboolean normalized;
23924 GLuint value;
23927 struct glVertexAttribP2uiv_params
23929 TEB *teb;
23930 GLuint index;
23931 GLenum type;
23932 GLboolean normalized;
23933 const GLuint *value;
23936 struct glVertexAttribP3ui_params
23938 TEB *teb;
23939 GLuint index;
23940 GLenum type;
23941 GLboolean normalized;
23942 GLuint value;
23945 struct glVertexAttribP3uiv_params
23947 TEB *teb;
23948 GLuint index;
23949 GLenum type;
23950 GLboolean normalized;
23951 const GLuint *value;
23954 struct glVertexAttribP4ui_params
23956 TEB *teb;
23957 GLuint index;
23958 GLenum type;
23959 GLboolean normalized;
23960 GLuint value;
23963 struct glVertexAttribP4uiv_params
23965 TEB *teb;
23966 GLuint index;
23967 GLenum type;
23968 GLboolean normalized;
23969 const GLuint *value;
23972 struct glVertexAttribParameteriAMD_params
23974 TEB *teb;
23975 GLuint index;
23976 GLenum pname;
23977 GLint param;
23980 struct glVertexAttribPointer_params
23982 TEB *teb;
23983 GLuint index;
23984 GLint size;
23985 GLenum type;
23986 GLboolean normalized;
23987 GLsizei stride;
23988 const void *pointer;
23991 struct glVertexAttribPointerARB_params
23993 TEB *teb;
23994 GLuint index;
23995 GLint size;
23996 GLenum type;
23997 GLboolean normalized;
23998 GLsizei stride;
23999 const void *pointer;
24002 struct glVertexAttribPointerNV_params
24004 TEB *teb;
24005 GLuint index;
24006 GLint fsize;
24007 GLenum type;
24008 GLsizei stride;
24009 const void *pointer;
24012 struct glVertexAttribs1dvNV_params
24014 TEB *teb;
24015 GLuint index;
24016 GLsizei count;
24017 const GLdouble *v;
24020 struct glVertexAttribs1fvNV_params
24022 TEB *teb;
24023 GLuint index;
24024 GLsizei count;
24025 const GLfloat *v;
24028 struct glVertexAttribs1hvNV_params
24030 TEB *teb;
24031 GLuint index;
24032 GLsizei n;
24033 const GLhalfNV *v;
24036 struct glVertexAttribs1svNV_params
24038 TEB *teb;
24039 GLuint index;
24040 GLsizei count;
24041 const GLshort *v;
24044 struct glVertexAttribs2dvNV_params
24046 TEB *teb;
24047 GLuint index;
24048 GLsizei count;
24049 const GLdouble *v;
24052 struct glVertexAttribs2fvNV_params
24054 TEB *teb;
24055 GLuint index;
24056 GLsizei count;
24057 const GLfloat *v;
24060 struct glVertexAttribs2hvNV_params
24062 TEB *teb;
24063 GLuint index;
24064 GLsizei n;
24065 const GLhalfNV *v;
24068 struct glVertexAttribs2svNV_params
24070 TEB *teb;
24071 GLuint index;
24072 GLsizei count;
24073 const GLshort *v;
24076 struct glVertexAttribs3dvNV_params
24078 TEB *teb;
24079 GLuint index;
24080 GLsizei count;
24081 const GLdouble *v;
24084 struct glVertexAttribs3fvNV_params
24086 TEB *teb;
24087 GLuint index;
24088 GLsizei count;
24089 const GLfloat *v;
24092 struct glVertexAttribs3hvNV_params
24094 TEB *teb;
24095 GLuint index;
24096 GLsizei n;
24097 const GLhalfNV *v;
24100 struct glVertexAttribs3svNV_params
24102 TEB *teb;
24103 GLuint index;
24104 GLsizei count;
24105 const GLshort *v;
24108 struct glVertexAttribs4dvNV_params
24110 TEB *teb;
24111 GLuint index;
24112 GLsizei count;
24113 const GLdouble *v;
24116 struct glVertexAttribs4fvNV_params
24118 TEB *teb;
24119 GLuint index;
24120 GLsizei count;
24121 const GLfloat *v;
24124 struct glVertexAttribs4hvNV_params
24126 TEB *teb;
24127 GLuint index;
24128 GLsizei n;
24129 const GLhalfNV *v;
24132 struct glVertexAttribs4svNV_params
24134 TEB *teb;
24135 GLuint index;
24136 GLsizei count;
24137 const GLshort *v;
24140 struct glVertexAttribs4ubvNV_params
24142 TEB *teb;
24143 GLuint index;
24144 GLsizei count;
24145 const GLubyte *v;
24148 struct glVertexBindingDivisor_params
24150 TEB *teb;
24151 GLuint bindingindex;
24152 GLuint divisor;
24155 struct glVertexBlendARB_params
24157 TEB *teb;
24158 GLint count;
24161 struct glVertexBlendEnvfATI_params
24163 TEB *teb;
24164 GLenum pname;
24165 GLfloat param;
24168 struct glVertexBlendEnviATI_params
24170 TEB *teb;
24171 GLenum pname;
24172 GLint param;
24175 struct glVertexFormatNV_params
24177 TEB *teb;
24178 GLint size;
24179 GLenum type;
24180 GLsizei stride;
24183 struct glVertexP2ui_params
24185 TEB *teb;
24186 GLenum type;
24187 GLuint value;
24190 struct glVertexP2uiv_params
24192 TEB *teb;
24193 GLenum type;
24194 const GLuint *value;
24197 struct glVertexP3ui_params
24199 TEB *teb;
24200 GLenum type;
24201 GLuint value;
24204 struct glVertexP3uiv_params
24206 TEB *teb;
24207 GLenum type;
24208 const GLuint *value;
24211 struct glVertexP4ui_params
24213 TEB *teb;
24214 GLenum type;
24215 GLuint value;
24218 struct glVertexP4uiv_params
24220 TEB *teb;
24221 GLenum type;
24222 const GLuint *value;
24225 struct glVertexPointerEXT_params
24227 TEB *teb;
24228 GLint size;
24229 GLenum type;
24230 GLsizei stride;
24231 GLsizei count;
24232 const void *pointer;
24235 struct glVertexPointerListIBM_params
24237 TEB *teb;
24238 GLint size;
24239 GLenum type;
24240 GLint stride;
24241 const void **pointer;
24242 GLint ptrstride;
24245 struct glVertexPointervINTEL_params
24247 TEB *teb;
24248 GLint size;
24249 GLenum type;
24250 const void **pointer;
24253 struct glVertexStream1dATI_params
24255 TEB *teb;
24256 GLenum stream;
24257 GLdouble x;
24260 struct glVertexStream1dvATI_params
24262 TEB *teb;
24263 GLenum stream;
24264 const GLdouble *coords;
24267 struct glVertexStream1fATI_params
24269 TEB *teb;
24270 GLenum stream;
24271 GLfloat x;
24274 struct glVertexStream1fvATI_params
24276 TEB *teb;
24277 GLenum stream;
24278 const GLfloat *coords;
24281 struct glVertexStream1iATI_params
24283 TEB *teb;
24284 GLenum stream;
24285 GLint x;
24288 struct glVertexStream1ivATI_params
24290 TEB *teb;
24291 GLenum stream;
24292 const GLint *coords;
24295 struct glVertexStream1sATI_params
24297 TEB *teb;
24298 GLenum stream;
24299 GLshort x;
24302 struct glVertexStream1svATI_params
24304 TEB *teb;
24305 GLenum stream;
24306 const GLshort *coords;
24309 struct glVertexStream2dATI_params
24311 TEB *teb;
24312 GLenum stream;
24313 GLdouble x;
24314 GLdouble y;
24317 struct glVertexStream2dvATI_params
24319 TEB *teb;
24320 GLenum stream;
24321 const GLdouble *coords;
24324 struct glVertexStream2fATI_params
24326 TEB *teb;
24327 GLenum stream;
24328 GLfloat x;
24329 GLfloat y;
24332 struct glVertexStream2fvATI_params
24334 TEB *teb;
24335 GLenum stream;
24336 const GLfloat *coords;
24339 struct glVertexStream2iATI_params
24341 TEB *teb;
24342 GLenum stream;
24343 GLint x;
24344 GLint y;
24347 struct glVertexStream2ivATI_params
24349 TEB *teb;
24350 GLenum stream;
24351 const GLint *coords;
24354 struct glVertexStream2sATI_params
24356 TEB *teb;
24357 GLenum stream;
24358 GLshort x;
24359 GLshort y;
24362 struct glVertexStream2svATI_params
24364 TEB *teb;
24365 GLenum stream;
24366 const GLshort *coords;
24369 struct glVertexStream3dATI_params
24371 TEB *teb;
24372 GLenum stream;
24373 GLdouble x;
24374 GLdouble y;
24375 GLdouble z;
24378 struct glVertexStream3dvATI_params
24380 TEB *teb;
24381 GLenum stream;
24382 const GLdouble *coords;
24385 struct glVertexStream3fATI_params
24387 TEB *teb;
24388 GLenum stream;
24389 GLfloat x;
24390 GLfloat y;
24391 GLfloat z;
24394 struct glVertexStream3fvATI_params
24396 TEB *teb;
24397 GLenum stream;
24398 const GLfloat *coords;
24401 struct glVertexStream3iATI_params
24403 TEB *teb;
24404 GLenum stream;
24405 GLint x;
24406 GLint y;
24407 GLint z;
24410 struct glVertexStream3ivATI_params
24412 TEB *teb;
24413 GLenum stream;
24414 const GLint *coords;
24417 struct glVertexStream3sATI_params
24419 TEB *teb;
24420 GLenum stream;
24421 GLshort x;
24422 GLshort y;
24423 GLshort z;
24426 struct glVertexStream3svATI_params
24428 TEB *teb;
24429 GLenum stream;
24430 const GLshort *coords;
24433 struct glVertexStream4dATI_params
24435 TEB *teb;
24436 GLenum stream;
24437 GLdouble x;
24438 GLdouble y;
24439 GLdouble z;
24440 GLdouble w;
24443 struct glVertexStream4dvATI_params
24445 TEB *teb;
24446 GLenum stream;
24447 const GLdouble *coords;
24450 struct glVertexStream4fATI_params
24452 TEB *teb;
24453 GLenum stream;
24454 GLfloat x;
24455 GLfloat y;
24456 GLfloat z;
24457 GLfloat w;
24460 struct glVertexStream4fvATI_params
24462 TEB *teb;
24463 GLenum stream;
24464 const GLfloat *coords;
24467 struct glVertexStream4iATI_params
24469 TEB *teb;
24470 GLenum stream;
24471 GLint x;
24472 GLint y;
24473 GLint z;
24474 GLint w;
24477 struct glVertexStream4ivATI_params
24479 TEB *teb;
24480 GLenum stream;
24481 const GLint *coords;
24484 struct glVertexStream4sATI_params
24486 TEB *teb;
24487 GLenum stream;
24488 GLshort x;
24489 GLshort y;
24490 GLshort z;
24491 GLshort w;
24494 struct glVertexStream4svATI_params
24496 TEB *teb;
24497 GLenum stream;
24498 const GLshort *coords;
24501 struct glVertexWeightPointerEXT_params
24503 TEB *teb;
24504 GLint size;
24505 GLenum type;
24506 GLsizei stride;
24507 const void *pointer;
24510 struct glVertexWeightfEXT_params
24512 TEB *teb;
24513 GLfloat weight;
24516 struct glVertexWeightfvEXT_params
24518 TEB *teb;
24519 const GLfloat *weight;
24522 struct glVertexWeighthNV_params
24524 TEB *teb;
24525 GLhalfNV weight;
24528 struct glVertexWeighthvNV_params
24530 TEB *teb;
24531 const GLhalfNV *weight;
24534 struct glVideoCaptureNV_params
24536 TEB *teb;
24537 GLuint video_capture_slot;
24538 GLuint *sequence_num;
24539 GLuint64EXT *capture_time;
24540 GLenum ret;
24543 struct glVideoCaptureStreamParameterdvNV_params
24545 TEB *teb;
24546 GLuint video_capture_slot;
24547 GLuint stream;
24548 GLenum pname;
24549 const GLdouble *params;
24552 struct glVideoCaptureStreamParameterfvNV_params
24554 TEB *teb;
24555 GLuint video_capture_slot;
24556 GLuint stream;
24557 GLenum pname;
24558 const GLfloat *params;
24561 struct glVideoCaptureStreamParameterivNV_params
24563 TEB *teb;
24564 GLuint video_capture_slot;
24565 GLuint stream;
24566 GLenum pname;
24567 const GLint *params;
24570 struct glViewportArrayv_params
24572 TEB *teb;
24573 GLuint first;
24574 GLsizei count;
24575 const GLfloat *v;
24578 struct glViewportIndexedf_params
24580 TEB *teb;
24581 GLuint index;
24582 GLfloat x;
24583 GLfloat y;
24584 GLfloat w;
24585 GLfloat h;
24588 struct glViewportIndexedfv_params
24590 TEB *teb;
24591 GLuint index;
24592 const GLfloat *v;
24595 struct glViewportPositionWScaleNV_params
24597 TEB *teb;
24598 GLuint index;
24599 GLfloat xcoeff;
24600 GLfloat ycoeff;
24603 struct glViewportSwizzleNV_params
24605 TEB *teb;
24606 GLuint index;
24607 GLenum swizzlex;
24608 GLenum swizzley;
24609 GLenum swizzlez;
24610 GLenum swizzlew;
24613 struct glWaitSemaphoreEXT_params
24615 TEB *teb;
24616 GLuint semaphore;
24617 GLuint numBufferBarriers;
24618 const GLuint *buffers;
24619 GLuint numTextureBarriers;
24620 const GLuint *textures;
24621 const GLenum *srcLayouts;
24624 struct glWaitSemaphoreui64NVX_params
24626 TEB *teb;
24627 GLuint waitGpu;
24628 GLsizei fenceObjectCount;
24629 const GLuint *semaphoreArray;
24630 const GLuint64 *fenceValueArray;
24633 struct glWaitSync_params
24635 TEB *teb;
24636 GLsync sync;
24637 GLbitfield flags;
24638 GLuint64 timeout;
24641 struct glWaitVkSemaphoreNV_params
24643 TEB *teb;
24644 GLuint64 vkSemaphore;
24647 struct glWeightPathsNV_params
24649 TEB *teb;
24650 GLuint resultPath;
24651 GLsizei numPaths;
24652 const GLuint *paths;
24653 const GLfloat *weights;
24656 struct glWeightPointerARB_params
24658 TEB *teb;
24659 GLint size;
24660 GLenum type;
24661 GLsizei stride;
24662 const void *pointer;
24665 struct glWeightbvARB_params
24667 TEB *teb;
24668 GLint size;
24669 const GLbyte *weights;
24672 struct glWeightdvARB_params
24674 TEB *teb;
24675 GLint size;
24676 const GLdouble *weights;
24679 struct glWeightfvARB_params
24681 TEB *teb;
24682 GLint size;
24683 const GLfloat *weights;
24686 struct glWeightivARB_params
24688 TEB *teb;
24689 GLint size;
24690 const GLint *weights;
24693 struct glWeightsvARB_params
24695 TEB *teb;
24696 GLint size;
24697 const GLshort *weights;
24700 struct glWeightubvARB_params
24702 TEB *teb;
24703 GLint size;
24704 const GLubyte *weights;
24707 struct glWeightuivARB_params
24709 TEB *teb;
24710 GLint size;
24711 const GLuint *weights;
24714 struct glWeightusvARB_params
24716 TEB *teb;
24717 GLint size;
24718 const GLushort *weights;
24721 struct glWindowPos2d_params
24723 TEB *teb;
24724 GLdouble x;
24725 GLdouble y;
24728 struct glWindowPos2dARB_params
24730 TEB *teb;
24731 GLdouble x;
24732 GLdouble y;
24735 struct glWindowPos2dMESA_params
24737 TEB *teb;
24738 GLdouble x;
24739 GLdouble y;
24742 struct glWindowPos2dv_params
24744 TEB *teb;
24745 const GLdouble *v;
24748 struct glWindowPos2dvARB_params
24750 TEB *teb;
24751 const GLdouble *v;
24754 struct glWindowPos2dvMESA_params
24756 TEB *teb;
24757 const GLdouble *v;
24760 struct glWindowPos2f_params
24762 TEB *teb;
24763 GLfloat x;
24764 GLfloat y;
24767 struct glWindowPos2fARB_params
24769 TEB *teb;
24770 GLfloat x;
24771 GLfloat y;
24774 struct glWindowPos2fMESA_params
24776 TEB *teb;
24777 GLfloat x;
24778 GLfloat y;
24781 struct glWindowPos2fv_params
24783 TEB *teb;
24784 const GLfloat *v;
24787 struct glWindowPos2fvARB_params
24789 TEB *teb;
24790 const GLfloat *v;
24793 struct glWindowPos2fvMESA_params
24795 TEB *teb;
24796 const GLfloat *v;
24799 struct glWindowPos2i_params
24801 TEB *teb;
24802 GLint x;
24803 GLint y;
24806 struct glWindowPos2iARB_params
24808 TEB *teb;
24809 GLint x;
24810 GLint y;
24813 struct glWindowPos2iMESA_params
24815 TEB *teb;
24816 GLint x;
24817 GLint y;
24820 struct glWindowPos2iv_params
24822 TEB *teb;
24823 const GLint *v;
24826 struct glWindowPos2ivARB_params
24828 TEB *teb;
24829 const GLint *v;
24832 struct glWindowPos2ivMESA_params
24834 TEB *teb;
24835 const GLint *v;
24838 struct glWindowPos2s_params
24840 TEB *teb;
24841 GLshort x;
24842 GLshort y;
24845 struct glWindowPos2sARB_params
24847 TEB *teb;
24848 GLshort x;
24849 GLshort y;
24852 struct glWindowPos2sMESA_params
24854 TEB *teb;
24855 GLshort x;
24856 GLshort y;
24859 struct glWindowPos2sv_params
24861 TEB *teb;
24862 const GLshort *v;
24865 struct glWindowPos2svARB_params
24867 TEB *teb;
24868 const GLshort *v;
24871 struct glWindowPos2svMESA_params
24873 TEB *teb;
24874 const GLshort *v;
24877 struct glWindowPos3d_params
24879 TEB *teb;
24880 GLdouble x;
24881 GLdouble y;
24882 GLdouble z;
24885 struct glWindowPos3dARB_params
24887 TEB *teb;
24888 GLdouble x;
24889 GLdouble y;
24890 GLdouble z;
24893 struct glWindowPos3dMESA_params
24895 TEB *teb;
24896 GLdouble x;
24897 GLdouble y;
24898 GLdouble z;
24901 struct glWindowPos3dv_params
24903 TEB *teb;
24904 const GLdouble *v;
24907 struct glWindowPos3dvARB_params
24909 TEB *teb;
24910 const GLdouble *v;
24913 struct glWindowPos3dvMESA_params
24915 TEB *teb;
24916 const GLdouble *v;
24919 struct glWindowPos3f_params
24921 TEB *teb;
24922 GLfloat x;
24923 GLfloat y;
24924 GLfloat z;
24927 struct glWindowPos3fARB_params
24929 TEB *teb;
24930 GLfloat x;
24931 GLfloat y;
24932 GLfloat z;
24935 struct glWindowPos3fMESA_params
24937 TEB *teb;
24938 GLfloat x;
24939 GLfloat y;
24940 GLfloat z;
24943 struct glWindowPos3fv_params
24945 TEB *teb;
24946 const GLfloat *v;
24949 struct glWindowPos3fvARB_params
24951 TEB *teb;
24952 const GLfloat *v;
24955 struct glWindowPos3fvMESA_params
24957 TEB *teb;
24958 const GLfloat *v;
24961 struct glWindowPos3i_params
24963 TEB *teb;
24964 GLint x;
24965 GLint y;
24966 GLint z;
24969 struct glWindowPos3iARB_params
24971 TEB *teb;
24972 GLint x;
24973 GLint y;
24974 GLint z;
24977 struct glWindowPos3iMESA_params
24979 TEB *teb;
24980 GLint x;
24981 GLint y;
24982 GLint z;
24985 struct glWindowPos3iv_params
24987 TEB *teb;
24988 const GLint *v;
24991 struct glWindowPos3ivARB_params
24993 TEB *teb;
24994 const GLint *v;
24997 struct glWindowPos3ivMESA_params
24999 TEB *teb;
25000 const GLint *v;
25003 struct glWindowPos3s_params
25005 TEB *teb;
25006 GLshort x;
25007 GLshort y;
25008 GLshort z;
25011 struct glWindowPos3sARB_params
25013 TEB *teb;
25014 GLshort x;
25015 GLshort y;
25016 GLshort z;
25019 struct glWindowPos3sMESA_params
25021 TEB *teb;
25022 GLshort x;
25023 GLshort y;
25024 GLshort z;
25027 struct glWindowPos3sv_params
25029 TEB *teb;
25030 const GLshort *v;
25033 struct glWindowPos3svARB_params
25035 TEB *teb;
25036 const GLshort *v;
25039 struct glWindowPos3svMESA_params
25041 TEB *teb;
25042 const GLshort *v;
25045 struct glWindowPos4dMESA_params
25047 TEB *teb;
25048 GLdouble x;
25049 GLdouble y;
25050 GLdouble z;
25051 GLdouble w;
25054 struct glWindowPos4dvMESA_params
25056 TEB *teb;
25057 const GLdouble *v;
25060 struct glWindowPos4fMESA_params
25062 TEB *teb;
25063 GLfloat x;
25064 GLfloat y;
25065 GLfloat z;
25066 GLfloat w;
25069 struct glWindowPos4fvMESA_params
25071 TEB *teb;
25072 const GLfloat *v;
25075 struct glWindowPos4iMESA_params
25077 TEB *teb;
25078 GLint x;
25079 GLint y;
25080 GLint z;
25081 GLint w;
25084 struct glWindowPos4ivMESA_params
25086 TEB *teb;
25087 const GLint *v;
25090 struct glWindowPos4sMESA_params
25092 TEB *teb;
25093 GLshort x;
25094 GLshort y;
25095 GLshort z;
25096 GLshort w;
25099 struct glWindowPos4svMESA_params
25101 TEB *teb;
25102 const GLshort *v;
25105 struct glWindowRectanglesEXT_params
25107 TEB *teb;
25108 GLenum mode;
25109 GLsizei count;
25110 const GLint *box;
25113 struct glWriteMaskEXT_params
25115 TEB *teb;
25116 GLuint res;
25117 GLuint in;
25118 GLenum outX;
25119 GLenum outY;
25120 GLenum outZ;
25121 GLenum outW;
25124 struct wglAllocateMemoryNV_params
25126 TEB *teb;
25127 GLsizei size;
25128 GLfloat readfreq;
25129 GLfloat writefreq;
25130 GLfloat priority;
25131 void *ret;
25134 struct wglBindTexImageARB_params
25136 TEB *teb;
25137 HPBUFFERARB hPbuffer;
25138 int iBuffer;
25139 BOOL ret;
25142 struct wglChoosePixelFormatARB_params
25144 TEB *teb;
25145 HDC hdc;
25146 const int *piAttribIList;
25147 const FLOAT *pfAttribFList;
25148 UINT nMaxFormats;
25149 int *piFormats;
25150 UINT *nNumFormats;
25151 BOOL ret;
25154 struct wglCreateContextAttribsARB_params
25156 TEB *teb;
25157 HDC hDC;
25158 HGLRC hShareContext;
25159 const int *attribList;
25160 HGLRC ret;
25163 struct wglCreatePbufferARB_params
25165 TEB *teb;
25166 HDC hDC;
25167 int iPixelFormat;
25168 int iWidth;
25169 int iHeight;
25170 const int *piAttribList;
25171 HPBUFFERARB ret;
25174 struct wglDestroyPbufferARB_params
25176 TEB *teb;
25177 HPBUFFERARB hPbuffer;
25178 BOOL ret;
25181 struct wglFreeMemoryNV_params
25183 TEB *teb;
25184 void *pointer;
25187 struct wglGetCurrentReadDCARB_params
25189 TEB *teb;
25190 HDC ret;
25193 struct wglGetExtensionsStringARB_params
25195 TEB *teb;
25196 HDC hdc;
25197 const char *ret;
25200 struct wglGetExtensionsStringEXT_params
25202 TEB *teb;
25203 const char *ret;
25206 struct wglGetPbufferDCARB_params
25208 TEB *teb;
25209 HPBUFFERARB hPbuffer;
25210 HDC ret;
25213 struct wglGetPixelFormatAttribfvARB_params
25215 TEB *teb;
25216 HDC hdc;
25217 int iPixelFormat;
25218 int iLayerPlane;
25219 UINT nAttributes;
25220 const int *piAttributes;
25221 FLOAT *pfValues;
25222 BOOL ret;
25225 struct wglGetPixelFormatAttribivARB_params
25227 TEB *teb;
25228 HDC hdc;
25229 int iPixelFormat;
25230 int iLayerPlane;
25231 UINT nAttributes;
25232 const int *piAttributes;
25233 int *piValues;
25234 BOOL ret;
25237 struct wglGetSwapIntervalEXT_params
25239 TEB *teb;
25240 int ret;
25243 struct wglMakeContextCurrentARB_params
25245 TEB *teb;
25246 HDC hDrawDC;
25247 HDC hReadDC;
25248 HGLRC hglrc;
25249 BOOL ret;
25252 struct wglQueryCurrentRendererIntegerWINE_params
25254 TEB *teb;
25255 GLenum attribute;
25256 GLuint *value;
25257 BOOL ret;
25260 struct wglQueryCurrentRendererStringWINE_params
25262 TEB *teb;
25263 GLenum attribute;
25264 const GLchar *ret;
25267 struct wglQueryPbufferARB_params
25269 TEB *teb;
25270 HPBUFFERARB hPbuffer;
25271 int iAttribute;
25272 int *piValue;
25273 BOOL ret;
25276 struct wglQueryRendererIntegerWINE_params
25278 TEB *teb;
25279 HDC dc;
25280 GLint renderer;
25281 GLenum attribute;
25282 GLuint *value;
25283 BOOL ret;
25286 struct wglQueryRendererStringWINE_params
25288 TEB *teb;
25289 HDC dc;
25290 GLint renderer;
25291 GLenum attribute;
25292 const GLchar *ret;
25295 struct wglReleasePbufferDCARB_params
25297 TEB *teb;
25298 HPBUFFERARB hPbuffer;
25299 HDC hDC;
25300 int ret;
25303 struct wglReleaseTexImageARB_params
25305 TEB *teb;
25306 HPBUFFERARB hPbuffer;
25307 int iBuffer;
25308 BOOL ret;
25311 struct wglSetPbufferAttribARB_params
25313 TEB *teb;
25314 HPBUFFERARB hPbuffer;
25315 const int *piAttribList;
25316 BOOL ret;
25319 struct wglSetPixelFormatWINE_params
25321 TEB *teb;
25322 HDC hdc;
25323 int format;
25324 BOOL ret;
25327 struct wglSwapIntervalEXT_params
25329 TEB *teb;
25330 int interval;
25331 BOOL ret;
25334 enum unix_funcs
25336 unix_thread_attach,
25337 unix_process_detach,
25338 unix_wglCopyContext,
25339 unix_wglCreateContext,
25340 unix_wglDeleteContext,
25341 unix_wglDescribePixelFormat,
25342 unix_wglGetPixelFormat,
25343 unix_wglGetProcAddress,
25344 unix_wglMakeCurrent,
25345 unix_wglSetPixelFormat,
25346 unix_wglShareLists,
25347 unix_wglSwapBuffers,
25348 unix_glAccum,
25349 unix_glAlphaFunc,
25350 unix_glAreTexturesResident,
25351 unix_glArrayElement,
25352 unix_glBegin,
25353 unix_glBindTexture,
25354 unix_glBitmap,
25355 unix_glBlendFunc,
25356 unix_glCallList,
25357 unix_glCallLists,
25358 unix_glClear,
25359 unix_glClearAccum,
25360 unix_glClearColor,
25361 unix_glClearDepth,
25362 unix_glClearIndex,
25363 unix_glClearStencil,
25364 unix_glClipPlane,
25365 unix_glColor3b,
25366 unix_glColor3bv,
25367 unix_glColor3d,
25368 unix_glColor3dv,
25369 unix_glColor3f,
25370 unix_glColor3fv,
25371 unix_glColor3i,
25372 unix_glColor3iv,
25373 unix_glColor3s,
25374 unix_glColor3sv,
25375 unix_glColor3ub,
25376 unix_glColor3ubv,
25377 unix_glColor3ui,
25378 unix_glColor3uiv,
25379 unix_glColor3us,
25380 unix_glColor3usv,
25381 unix_glColor4b,
25382 unix_glColor4bv,
25383 unix_glColor4d,
25384 unix_glColor4dv,
25385 unix_glColor4f,
25386 unix_glColor4fv,
25387 unix_glColor4i,
25388 unix_glColor4iv,
25389 unix_glColor4s,
25390 unix_glColor4sv,
25391 unix_glColor4ub,
25392 unix_glColor4ubv,
25393 unix_glColor4ui,
25394 unix_glColor4uiv,
25395 unix_glColor4us,
25396 unix_glColor4usv,
25397 unix_glColorMask,
25398 unix_glColorMaterial,
25399 unix_glColorPointer,
25400 unix_glCopyPixels,
25401 unix_glCopyTexImage1D,
25402 unix_glCopyTexImage2D,
25403 unix_glCopyTexSubImage1D,
25404 unix_glCopyTexSubImage2D,
25405 unix_glCullFace,
25406 unix_glDeleteLists,
25407 unix_glDeleteTextures,
25408 unix_glDepthFunc,
25409 unix_glDepthMask,
25410 unix_glDepthRange,
25411 unix_glDisable,
25412 unix_glDisableClientState,
25413 unix_glDrawArrays,
25414 unix_glDrawBuffer,
25415 unix_glDrawElements,
25416 unix_glDrawPixels,
25417 unix_glEdgeFlag,
25418 unix_glEdgeFlagPointer,
25419 unix_glEdgeFlagv,
25420 unix_glEnable,
25421 unix_glEnableClientState,
25422 unix_glEnd,
25423 unix_glEndList,
25424 unix_glEvalCoord1d,
25425 unix_glEvalCoord1dv,
25426 unix_glEvalCoord1f,
25427 unix_glEvalCoord1fv,
25428 unix_glEvalCoord2d,
25429 unix_glEvalCoord2dv,
25430 unix_glEvalCoord2f,
25431 unix_glEvalCoord2fv,
25432 unix_glEvalMesh1,
25433 unix_glEvalMesh2,
25434 unix_glEvalPoint1,
25435 unix_glEvalPoint2,
25436 unix_glFeedbackBuffer,
25437 unix_glFinish,
25438 unix_glFlush,
25439 unix_glFogf,
25440 unix_glFogfv,
25441 unix_glFogi,
25442 unix_glFogiv,
25443 unix_glFrontFace,
25444 unix_glFrustum,
25445 unix_glGenLists,
25446 unix_glGenTextures,
25447 unix_glGetBooleanv,
25448 unix_glGetClipPlane,
25449 unix_glGetDoublev,
25450 unix_glGetError,
25451 unix_glGetFloatv,
25452 unix_glGetIntegerv,
25453 unix_glGetLightfv,
25454 unix_glGetLightiv,
25455 unix_glGetMapdv,
25456 unix_glGetMapfv,
25457 unix_glGetMapiv,
25458 unix_glGetMaterialfv,
25459 unix_glGetMaterialiv,
25460 unix_glGetPixelMapfv,
25461 unix_glGetPixelMapuiv,
25462 unix_glGetPixelMapusv,
25463 unix_glGetPointerv,
25464 unix_glGetPolygonStipple,
25465 unix_glGetString,
25466 unix_glGetTexEnvfv,
25467 unix_glGetTexEnviv,
25468 unix_glGetTexGendv,
25469 unix_glGetTexGenfv,
25470 unix_glGetTexGeniv,
25471 unix_glGetTexImage,
25472 unix_glGetTexLevelParameterfv,
25473 unix_glGetTexLevelParameteriv,
25474 unix_glGetTexParameterfv,
25475 unix_glGetTexParameteriv,
25476 unix_glHint,
25477 unix_glIndexMask,
25478 unix_glIndexPointer,
25479 unix_glIndexd,
25480 unix_glIndexdv,
25481 unix_glIndexf,
25482 unix_glIndexfv,
25483 unix_glIndexi,
25484 unix_glIndexiv,
25485 unix_glIndexs,
25486 unix_glIndexsv,
25487 unix_glIndexub,
25488 unix_glIndexubv,
25489 unix_glInitNames,
25490 unix_glInterleavedArrays,
25491 unix_glIsEnabled,
25492 unix_glIsList,
25493 unix_glIsTexture,
25494 unix_glLightModelf,
25495 unix_glLightModelfv,
25496 unix_glLightModeli,
25497 unix_glLightModeliv,
25498 unix_glLightf,
25499 unix_glLightfv,
25500 unix_glLighti,
25501 unix_glLightiv,
25502 unix_glLineStipple,
25503 unix_glLineWidth,
25504 unix_glListBase,
25505 unix_glLoadIdentity,
25506 unix_glLoadMatrixd,
25507 unix_glLoadMatrixf,
25508 unix_glLoadName,
25509 unix_glLogicOp,
25510 unix_glMap1d,
25511 unix_glMap1f,
25512 unix_glMap2d,
25513 unix_glMap2f,
25514 unix_glMapGrid1d,
25515 unix_glMapGrid1f,
25516 unix_glMapGrid2d,
25517 unix_glMapGrid2f,
25518 unix_glMaterialf,
25519 unix_glMaterialfv,
25520 unix_glMateriali,
25521 unix_glMaterialiv,
25522 unix_glMatrixMode,
25523 unix_glMultMatrixd,
25524 unix_glMultMatrixf,
25525 unix_glNewList,
25526 unix_glNormal3b,
25527 unix_glNormal3bv,
25528 unix_glNormal3d,
25529 unix_glNormal3dv,
25530 unix_glNormal3f,
25531 unix_glNormal3fv,
25532 unix_glNormal3i,
25533 unix_glNormal3iv,
25534 unix_glNormal3s,
25535 unix_glNormal3sv,
25536 unix_glNormalPointer,
25537 unix_glOrtho,
25538 unix_glPassThrough,
25539 unix_glPixelMapfv,
25540 unix_glPixelMapuiv,
25541 unix_glPixelMapusv,
25542 unix_glPixelStoref,
25543 unix_glPixelStorei,
25544 unix_glPixelTransferf,
25545 unix_glPixelTransferi,
25546 unix_glPixelZoom,
25547 unix_glPointSize,
25548 unix_glPolygonMode,
25549 unix_glPolygonOffset,
25550 unix_glPolygonStipple,
25551 unix_glPopAttrib,
25552 unix_glPopClientAttrib,
25553 unix_glPopMatrix,
25554 unix_glPopName,
25555 unix_glPrioritizeTextures,
25556 unix_glPushAttrib,
25557 unix_glPushClientAttrib,
25558 unix_glPushMatrix,
25559 unix_glPushName,
25560 unix_glRasterPos2d,
25561 unix_glRasterPos2dv,
25562 unix_glRasterPos2f,
25563 unix_glRasterPos2fv,
25564 unix_glRasterPos2i,
25565 unix_glRasterPos2iv,
25566 unix_glRasterPos2s,
25567 unix_glRasterPos2sv,
25568 unix_glRasterPos3d,
25569 unix_glRasterPos3dv,
25570 unix_glRasterPos3f,
25571 unix_glRasterPos3fv,
25572 unix_glRasterPos3i,
25573 unix_glRasterPos3iv,
25574 unix_glRasterPos3s,
25575 unix_glRasterPos3sv,
25576 unix_glRasterPos4d,
25577 unix_glRasterPos4dv,
25578 unix_glRasterPos4f,
25579 unix_glRasterPos4fv,
25580 unix_glRasterPos4i,
25581 unix_glRasterPos4iv,
25582 unix_glRasterPos4s,
25583 unix_glRasterPos4sv,
25584 unix_glReadBuffer,
25585 unix_glReadPixels,
25586 unix_glRectd,
25587 unix_glRectdv,
25588 unix_glRectf,
25589 unix_glRectfv,
25590 unix_glRecti,
25591 unix_glRectiv,
25592 unix_glRects,
25593 unix_glRectsv,
25594 unix_glRenderMode,
25595 unix_glRotated,
25596 unix_glRotatef,
25597 unix_glScaled,
25598 unix_glScalef,
25599 unix_glScissor,
25600 unix_glSelectBuffer,
25601 unix_glShadeModel,
25602 unix_glStencilFunc,
25603 unix_glStencilMask,
25604 unix_glStencilOp,
25605 unix_glTexCoord1d,
25606 unix_glTexCoord1dv,
25607 unix_glTexCoord1f,
25608 unix_glTexCoord1fv,
25609 unix_glTexCoord1i,
25610 unix_glTexCoord1iv,
25611 unix_glTexCoord1s,
25612 unix_glTexCoord1sv,
25613 unix_glTexCoord2d,
25614 unix_glTexCoord2dv,
25615 unix_glTexCoord2f,
25616 unix_glTexCoord2fv,
25617 unix_glTexCoord2i,
25618 unix_glTexCoord2iv,
25619 unix_glTexCoord2s,
25620 unix_glTexCoord2sv,
25621 unix_glTexCoord3d,
25622 unix_glTexCoord3dv,
25623 unix_glTexCoord3f,
25624 unix_glTexCoord3fv,
25625 unix_glTexCoord3i,
25626 unix_glTexCoord3iv,
25627 unix_glTexCoord3s,
25628 unix_glTexCoord3sv,
25629 unix_glTexCoord4d,
25630 unix_glTexCoord4dv,
25631 unix_glTexCoord4f,
25632 unix_glTexCoord4fv,
25633 unix_glTexCoord4i,
25634 unix_glTexCoord4iv,
25635 unix_glTexCoord4s,
25636 unix_glTexCoord4sv,
25637 unix_glTexCoordPointer,
25638 unix_glTexEnvf,
25639 unix_glTexEnvfv,
25640 unix_glTexEnvi,
25641 unix_glTexEnviv,
25642 unix_glTexGend,
25643 unix_glTexGendv,
25644 unix_glTexGenf,
25645 unix_glTexGenfv,
25646 unix_glTexGeni,
25647 unix_glTexGeniv,
25648 unix_glTexImage1D,
25649 unix_glTexImage2D,
25650 unix_glTexParameterf,
25651 unix_glTexParameterfv,
25652 unix_glTexParameteri,
25653 unix_glTexParameteriv,
25654 unix_glTexSubImage1D,
25655 unix_glTexSubImage2D,
25656 unix_glTranslated,
25657 unix_glTranslatef,
25658 unix_glVertex2d,
25659 unix_glVertex2dv,
25660 unix_glVertex2f,
25661 unix_glVertex2fv,
25662 unix_glVertex2i,
25663 unix_glVertex2iv,
25664 unix_glVertex2s,
25665 unix_glVertex2sv,
25666 unix_glVertex3d,
25667 unix_glVertex3dv,
25668 unix_glVertex3f,
25669 unix_glVertex3fv,
25670 unix_glVertex3i,
25671 unix_glVertex3iv,
25672 unix_glVertex3s,
25673 unix_glVertex3sv,
25674 unix_glVertex4d,
25675 unix_glVertex4dv,
25676 unix_glVertex4f,
25677 unix_glVertex4fv,
25678 unix_glVertex4i,
25679 unix_glVertex4iv,
25680 unix_glVertex4s,
25681 unix_glVertex4sv,
25682 unix_glVertexPointer,
25683 unix_glViewport,
25684 unix_glAccumxOES,
25685 unix_glAcquireKeyedMutexWin32EXT,
25686 unix_glActiveProgramEXT,
25687 unix_glActiveShaderProgram,
25688 unix_glActiveStencilFaceEXT,
25689 unix_glActiveTexture,
25690 unix_glActiveTextureARB,
25691 unix_glActiveVaryingNV,
25692 unix_glAlphaFragmentOp1ATI,
25693 unix_glAlphaFragmentOp2ATI,
25694 unix_glAlphaFragmentOp3ATI,
25695 unix_glAlphaFuncxOES,
25696 unix_glAlphaToCoverageDitherControlNV,
25697 unix_glApplyFramebufferAttachmentCMAAINTEL,
25698 unix_glApplyTextureEXT,
25699 unix_glAreProgramsResidentNV,
25700 unix_glAreTexturesResidentEXT,
25701 unix_glArrayElementEXT,
25702 unix_glArrayObjectATI,
25703 unix_glAsyncCopyBufferSubDataNVX,
25704 unix_glAsyncCopyImageSubDataNVX,
25705 unix_glAsyncMarkerSGIX,
25706 unix_glAttachObjectARB,
25707 unix_glAttachShader,
25708 unix_glBeginConditionalRender,
25709 unix_glBeginConditionalRenderNV,
25710 unix_glBeginConditionalRenderNVX,
25711 unix_glBeginFragmentShaderATI,
25712 unix_glBeginOcclusionQueryNV,
25713 unix_glBeginPerfMonitorAMD,
25714 unix_glBeginPerfQueryINTEL,
25715 unix_glBeginQuery,
25716 unix_glBeginQueryARB,
25717 unix_glBeginQueryIndexed,
25718 unix_glBeginTransformFeedback,
25719 unix_glBeginTransformFeedbackEXT,
25720 unix_glBeginTransformFeedbackNV,
25721 unix_glBeginVertexShaderEXT,
25722 unix_glBeginVideoCaptureNV,
25723 unix_glBindAttribLocation,
25724 unix_glBindAttribLocationARB,
25725 unix_glBindBuffer,
25726 unix_glBindBufferARB,
25727 unix_glBindBufferBase,
25728 unix_glBindBufferBaseEXT,
25729 unix_glBindBufferBaseNV,
25730 unix_glBindBufferOffsetEXT,
25731 unix_glBindBufferOffsetNV,
25732 unix_glBindBufferRange,
25733 unix_glBindBufferRangeEXT,
25734 unix_glBindBufferRangeNV,
25735 unix_glBindBuffersBase,
25736 unix_glBindBuffersRange,
25737 unix_glBindFragDataLocation,
25738 unix_glBindFragDataLocationEXT,
25739 unix_glBindFragDataLocationIndexed,
25740 unix_glBindFragmentShaderATI,
25741 unix_glBindFramebuffer,
25742 unix_glBindFramebufferEXT,
25743 unix_glBindImageTexture,
25744 unix_glBindImageTextureEXT,
25745 unix_glBindImageTextures,
25746 unix_glBindLightParameterEXT,
25747 unix_glBindMaterialParameterEXT,
25748 unix_glBindMultiTextureEXT,
25749 unix_glBindParameterEXT,
25750 unix_glBindProgramARB,
25751 unix_glBindProgramNV,
25752 unix_glBindProgramPipeline,
25753 unix_glBindRenderbuffer,
25754 unix_glBindRenderbufferEXT,
25755 unix_glBindSampler,
25756 unix_glBindSamplers,
25757 unix_glBindShadingRateImageNV,
25758 unix_glBindTexGenParameterEXT,
25759 unix_glBindTextureEXT,
25760 unix_glBindTextureUnit,
25761 unix_glBindTextureUnitParameterEXT,
25762 unix_glBindTextures,
25763 unix_glBindTransformFeedback,
25764 unix_glBindTransformFeedbackNV,
25765 unix_glBindVertexArray,
25766 unix_glBindVertexArrayAPPLE,
25767 unix_glBindVertexBuffer,
25768 unix_glBindVertexBuffers,
25769 unix_glBindVertexShaderEXT,
25770 unix_glBindVideoCaptureStreamBufferNV,
25771 unix_glBindVideoCaptureStreamTextureNV,
25772 unix_glBinormal3bEXT,
25773 unix_glBinormal3bvEXT,
25774 unix_glBinormal3dEXT,
25775 unix_glBinormal3dvEXT,
25776 unix_glBinormal3fEXT,
25777 unix_glBinormal3fvEXT,
25778 unix_glBinormal3iEXT,
25779 unix_glBinormal3ivEXT,
25780 unix_glBinormal3sEXT,
25781 unix_glBinormal3svEXT,
25782 unix_glBinormalPointerEXT,
25783 unix_glBitmapxOES,
25784 unix_glBlendBarrierKHR,
25785 unix_glBlendBarrierNV,
25786 unix_glBlendColor,
25787 unix_glBlendColorEXT,
25788 unix_glBlendColorxOES,
25789 unix_glBlendEquation,
25790 unix_glBlendEquationEXT,
25791 unix_glBlendEquationIndexedAMD,
25792 unix_glBlendEquationSeparate,
25793 unix_glBlendEquationSeparateEXT,
25794 unix_glBlendEquationSeparateIndexedAMD,
25795 unix_glBlendEquationSeparatei,
25796 unix_glBlendEquationSeparateiARB,
25797 unix_glBlendEquationi,
25798 unix_glBlendEquationiARB,
25799 unix_glBlendFuncIndexedAMD,
25800 unix_glBlendFuncSeparate,
25801 unix_glBlendFuncSeparateEXT,
25802 unix_glBlendFuncSeparateINGR,
25803 unix_glBlendFuncSeparateIndexedAMD,
25804 unix_glBlendFuncSeparatei,
25805 unix_glBlendFuncSeparateiARB,
25806 unix_glBlendFunci,
25807 unix_glBlendFunciARB,
25808 unix_glBlendParameteriNV,
25809 unix_glBlitFramebuffer,
25810 unix_glBlitFramebufferEXT,
25811 unix_glBlitNamedFramebuffer,
25812 unix_glBufferAddressRangeNV,
25813 unix_glBufferAttachMemoryNV,
25814 unix_glBufferData,
25815 unix_glBufferDataARB,
25816 unix_glBufferPageCommitmentARB,
25817 unix_glBufferParameteriAPPLE,
25818 unix_glBufferRegionEnabled,
25819 unix_glBufferStorage,
25820 unix_glBufferStorageExternalEXT,
25821 unix_glBufferStorageMemEXT,
25822 unix_glBufferSubData,
25823 unix_glBufferSubDataARB,
25824 unix_glCallCommandListNV,
25825 unix_glCheckFramebufferStatus,
25826 unix_glCheckFramebufferStatusEXT,
25827 unix_glCheckNamedFramebufferStatus,
25828 unix_glCheckNamedFramebufferStatusEXT,
25829 unix_glClampColor,
25830 unix_glClampColorARB,
25831 unix_glClearAccumxOES,
25832 unix_glClearBufferData,
25833 unix_glClearBufferSubData,
25834 unix_glClearBufferfi,
25835 unix_glClearBufferfv,
25836 unix_glClearBufferiv,
25837 unix_glClearBufferuiv,
25838 unix_glClearColorIiEXT,
25839 unix_glClearColorIuiEXT,
25840 unix_glClearColorxOES,
25841 unix_glClearDepthdNV,
25842 unix_glClearDepthf,
25843 unix_glClearDepthfOES,
25844 unix_glClearDepthxOES,
25845 unix_glClearNamedBufferData,
25846 unix_glClearNamedBufferDataEXT,
25847 unix_glClearNamedBufferSubData,
25848 unix_glClearNamedBufferSubDataEXT,
25849 unix_glClearNamedFramebufferfi,
25850 unix_glClearNamedFramebufferfv,
25851 unix_glClearNamedFramebufferiv,
25852 unix_glClearNamedFramebufferuiv,
25853 unix_glClearTexImage,
25854 unix_glClearTexSubImage,
25855 unix_glClientActiveTexture,
25856 unix_glClientActiveTextureARB,
25857 unix_glClientActiveVertexStreamATI,
25858 unix_glClientAttribDefaultEXT,
25859 unix_glClientWaitSemaphoreui64NVX,
25860 unix_glClientWaitSync,
25861 unix_glClipControl,
25862 unix_glClipPlanefOES,
25863 unix_glClipPlanexOES,
25864 unix_glColor3fVertex3fSUN,
25865 unix_glColor3fVertex3fvSUN,
25866 unix_glColor3hNV,
25867 unix_glColor3hvNV,
25868 unix_glColor3xOES,
25869 unix_glColor3xvOES,
25870 unix_glColor4fNormal3fVertex3fSUN,
25871 unix_glColor4fNormal3fVertex3fvSUN,
25872 unix_glColor4hNV,
25873 unix_glColor4hvNV,
25874 unix_glColor4ubVertex2fSUN,
25875 unix_glColor4ubVertex2fvSUN,
25876 unix_glColor4ubVertex3fSUN,
25877 unix_glColor4ubVertex3fvSUN,
25878 unix_glColor4xOES,
25879 unix_glColor4xvOES,
25880 unix_glColorFormatNV,
25881 unix_glColorFragmentOp1ATI,
25882 unix_glColorFragmentOp2ATI,
25883 unix_glColorFragmentOp3ATI,
25884 unix_glColorMaskIndexedEXT,
25885 unix_glColorMaski,
25886 unix_glColorP3ui,
25887 unix_glColorP3uiv,
25888 unix_glColorP4ui,
25889 unix_glColorP4uiv,
25890 unix_glColorPointerEXT,
25891 unix_glColorPointerListIBM,
25892 unix_glColorPointervINTEL,
25893 unix_glColorSubTable,
25894 unix_glColorSubTableEXT,
25895 unix_glColorTable,
25896 unix_glColorTableEXT,
25897 unix_glColorTableParameterfv,
25898 unix_glColorTableParameterfvSGI,
25899 unix_glColorTableParameteriv,
25900 unix_glColorTableParameterivSGI,
25901 unix_glColorTableSGI,
25902 unix_glCombinerInputNV,
25903 unix_glCombinerOutputNV,
25904 unix_glCombinerParameterfNV,
25905 unix_glCombinerParameterfvNV,
25906 unix_glCombinerParameteriNV,
25907 unix_glCombinerParameterivNV,
25908 unix_glCombinerStageParameterfvNV,
25909 unix_glCommandListSegmentsNV,
25910 unix_glCompileCommandListNV,
25911 unix_glCompileShader,
25912 unix_glCompileShaderARB,
25913 unix_glCompileShaderIncludeARB,
25914 unix_glCompressedMultiTexImage1DEXT,
25915 unix_glCompressedMultiTexImage2DEXT,
25916 unix_glCompressedMultiTexImage3DEXT,
25917 unix_glCompressedMultiTexSubImage1DEXT,
25918 unix_glCompressedMultiTexSubImage2DEXT,
25919 unix_glCompressedMultiTexSubImage3DEXT,
25920 unix_glCompressedTexImage1D,
25921 unix_glCompressedTexImage1DARB,
25922 unix_glCompressedTexImage2D,
25923 unix_glCompressedTexImage2DARB,
25924 unix_glCompressedTexImage3D,
25925 unix_glCompressedTexImage3DARB,
25926 unix_glCompressedTexSubImage1D,
25927 unix_glCompressedTexSubImage1DARB,
25928 unix_glCompressedTexSubImage2D,
25929 unix_glCompressedTexSubImage2DARB,
25930 unix_glCompressedTexSubImage3D,
25931 unix_glCompressedTexSubImage3DARB,
25932 unix_glCompressedTextureImage1DEXT,
25933 unix_glCompressedTextureImage2DEXT,
25934 unix_glCompressedTextureImage3DEXT,
25935 unix_glCompressedTextureSubImage1D,
25936 unix_glCompressedTextureSubImage1DEXT,
25937 unix_glCompressedTextureSubImage2D,
25938 unix_glCompressedTextureSubImage2DEXT,
25939 unix_glCompressedTextureSubImage3D,
25940 unix_glCompressedTextureSubImage3DEXT,
25941 unix_glConservativeRasterParameterfNV,
25942 unix_glConservativeRasterParameteriNV,
25943 unix_glConvolutionFilter1D,
25944 unix_glConvolutionFilter1DEXT,
25945 unix_glConvolutionFilter2D,
25946 unix_glConvolutionFilter2DEXT,
25947 unix_glConvolutionParameterf,
25948 unix_glConvolutionParameterfEXT,
25949 unix_glConvolutionParameterfv,
25950 unix_glConvolutionParameterfvEXT,
25951 unix_glConvolutionParameteri,
25952 unix_glConvolutionParameteriEXT,
25953 unix_glConvolutionParameteriv,
25954 unix_glConvolutionParameterivEXT,
25955 unix_glConvolutionParameterxOES,
25956 unix_glConvolutionParameterxvOES,
25957 unix_glCopyBufferSubData,
25958 unix_glCopyColorSubTable,
25959 unix_glCopyColorSubTableEXT,
25960 unix_glCopyColorTable,
25961 unix_glCopyColorTableSGI,
25962 unix_glCopyConvolutionFilter1D,
25963 unix_glCopyConvolutionFilter1DEXT,
25964 unix_glCopyConvolutionFilter2D,
25965 unix_glCopyConvolutionFilter2DEXT,
25966 unix_glCopyImageSubData,
25967 unix_glCopyImageSubDataNV,
25968 unix_glCopyMultiTexImage1DEXT,
25969 unix_glCopyMultiTexImage2DEXT,
25970 unix_glCopyMultiTexSubImage1DEXT,
25971 unix_glCopyMultiTexSubImage2DEXT,
25972 unix_glCopyMultiTexSubImage3DEXT,
25973 unix_glCopyNamedBufferSubData,
25974 unix_glCopyPathNV,
25975 unix_glCopyTexImage1DEXT,
25976 unix_glCopyTexImage2DEXT,
25977 unix_glCopyTexSubImage1DEXT,
25978 unix_glCopyTexSubImage2DEXT,
25979 unix_glCopyTexSubImage3D,
25980 unix_glCopyTexSubImage3DEXT,
25981 unix_glCopyTextureImage1DEXT,
25982 unix_glCopyTextureImage2DEXT,
25983 unix_glCopyTextureSubImage1D,
25984 unix_glCopyTextureSubImage1DEXT,
25985 unix_glCopyTextureSubImage2D,
25986 unix_glCopyTextureSubImage2DEXT,
25987 unix_glCopyTextureSubImage3D,
25988 unix_glCopyTextureSubImage3DEXT,
25989 unix_glCoverFillPathInstancedNV,
25990 unix_glCoverFillPathNV,
25991 unix_glCoverStrokePathInstancedNV,
25992 unix_glCoverStrokePathNV,
25993 unix_glCoverageModulationNV,
25994 unix_glCoverageModulationTableNV,
25995 unix_glCreateBuffers,
25996 unix_glCreateCommandListsNV,
25997 unix_glCreateFramebuffers,
25998 unix_glCreateMemoryObjectsEXT,
25999 unix_glCreatePerfQueryINTEL,
26000 unix_glCreateProgram,
26001 unix_glCreateProgramObjectARB,
26002 unix_glCreateProgramPipelines,
26003 unix_glCreateProgressFenceNVX,
26004 unix_glCreateQueries,
26005 unix_glCreateRenderbuffers,
26006 unix_glCreateSamplers,
26007 unix_glCreateShader,
26008 unix_glCreateShaderObjectARB,
26009 unix_glCreateShaderProgramEXT,
26010 unix_glCreateShaderProgramv,
26011 unix_glCreateStatesNV,
26012 unix_glCreateSyncFromCLeventARB,
26013 unix_glCreateTextures,
26014 unix_glCreateTransformFeedbacks,
26015 unix_glCreateVertexArrays,
26016 unix_glCullParameterdvEXT,
26017 unix_glCullParameterfvEXT,
26018 unix_glCurrentPaletteMatrixARB,
26019 unix_glDebugMessageCallback,
26020 unix_glDebugMessageCallbackAMD,
26021 unix_glDebugMessageCallbackARB,
26022 unix_glDebugMessageControl,
26023 unix_glDebugMessageControlARB,
26024 unix_glDebugMessageEnableAMD,
26025 unix_glDebugMessageInsert,
26026 unix_glDebugMessageInsertAMD,
26027 unix_glDebugMessageInsertARB,
26028 unix_glDeformSGIX,
26029 unix_glDeformationMap3dSGIX,
26030 unix_glDeformationMap3fSGIX,
26031 unix_glDeleteAsyncMarkersSGIX,
26032 unix_glDeleteBufferRegion,
26033 unix_glDeleteBuffers,
26034 unix_glDeleteBuffersARB,
26035 unix_glDeleteCommandListsNV,
26036 unix_glDeleteFencesAPPLE,
26037 unix_glDeleteFencesNV,
26038 unix_glDeleteFragmentShaderATI,
26039 unix_glDeleteFramebuffers,
26040 unix_glDeleteFramebuffersEXT,
26041 unix_glDeleteMemoryObjectsEXT,
26042 unix_glDeleteNamedStringARB,
26043 unix_glDeleteNamesAMD,
26044 unix_glDeleteObjectARB,
26045 unix_glDeleteObjectBufferATI,
26046 unix_glDeleteOcclusionQueriesNV,
26047 unix_glDeletePathsNV,
26048 unix_glDeletePerfMonitorsAMD,
26049 unix_glDeletePerfQueryINTEL,
26050 unix_glDeleteProgram,
26051 unix_glDeleteProgramPipelines,
26052 unix_glDeleteProgramsARB,
26053 unix_glDeleteProgramsNV,
26054 unix_glDeleteQueries,
26055 unix_glDeleteQueriesARB,
26056 unix_glDeleteQueryResourceTagNV,
26057 unix_glDeleteRenderbuffers,
26058 unix_glDeleteRenderbuffersEXT,
26059 unix_glDeleteSamplers,
26060 unix_glDeleteSemaphoresEXT,
26061 unix_glDeleteShader,
26062 unix_glDeleteStatesNV,
26063 unix_glDeleteSync,
26064 unix_glDeleteTexturesEXT,
26065 unix_glDeleteTransformFeedbacks,
26066 unix_glDeleteTransformFeedbacksNV,
26067 unix_glDeleteVertexArrays,
26068 unix_glDeleteVertexArraysAPPLE,
26069 unix_glDeleteVertexShaderEXT,
26070 unix_glDepthBoundsEXT,
26071 unix_glDepthBoundsdNV,
26072 unix_glDepthRangeArraydvNV,
26073 unix_glDepthRangeArrayv,
26074 unix_glDepthRangeIndexed,
26075 unix_glDepthRangeIndexeddNV,
26076 unix_glDepthRangedNV,
26077 unix_glDepthRangef,
26078 unix_glDepthRangefOES,
26079 unix_glDepthRangexOES,
26080 unix_glDetachObjectARB,
26081 unix_glDetachShader,
26082 unix_glDetailTexFuncSGIS,
26083 unix_glDisableClientStateIndexedEXT,
26084 unix_glDisableClientStateiEXT,
26085 unix_glDisableIndexedEXT,
26086 unix_glDisableVariantClientStateEXT,
26087 unix_glDisableVertexArrayAttrib,
26088 unix_glDisableVertexArrayAttribEXT,
26089 unix_glDisableVertexArrayEXT,
26090 unix_glDisableVertexAttribAPPLE,
26091 unix_glDisableVertexAttribArray,
26092 unix_glDisableVertexAttribArrayARB,
26093 unix_glDisablei,
26094 unix_glDispatchCompute,
26095 unix_glDispatchComputeGroupSizeARB,
26096 unix_glDispatchComputeIndirect,
26097 unix_glDrawArraysEXT,
26098 unix_glDrawArraysIndirect,
26099 unix_glDrawArraysInstanced,
26100 unix_glDrawArraysInstancedARB,
26101 unix_glDrawArraysInstancedBaseInstance,
26102 unix_glDrawArraysInstancedEXT,
26103 unix_glDrawBufferRegion,
26104 unix_glDrawBuffers,
26105 unix_glDrawBuffersARB,
26106 unix_glDrawBuffersATI,
26107 unix_glDrawCommandsAddressNV,
26108 unix_glDrawCommandsNV,
26109 unix_glDrawCommandsStatesAddressNV,
26110 unix_glDrawCommandsStatesNV,
26111 unix_glDrawElementArrayAPPLE,
26112 unix_glDrawElementArrayATI,
26113 unix_glDrawElementsBaseVertex,
26114 unix_glDrawElementsIndirect,
26115 unix_glDrawElementsInstanced,
26116 unix_glDrawElementsInstancedARB,
26117 unix_glDrawElementsInstancedBaseInstance,
26118 unix_glDrawElementsInstancedBaseVertex,
26119 unix_glDrawElementsInstancedBaseVertexBaseInstance,
26120 unix_glDrawElementsInstancedEXT,
26121 unix_glDrawMeshArraysSUN,
26122 unix_glDrawMeshTasksIndirectNV,
26123 unix_glDrawMeshTasksNV,
26124 unix_glDrawRangeElementArrayAPPLE,
26125 unix_glDrawRangeElementArrayATI,
26126 unix_glDrawRangeElements,
26127 unix_glDrawRangeElementsBaseVertex,
26128 unix_glDrawRangeElementsEXT,
26129 unix_glDrawTextureNV,
26130 unix_glDrawTransformFeedback,
26131 unix_glDrawTransformFeedbackInstanced,
26132 unix_glDrawTransformFeedbackNV,
26133 unix_glDrawTransformFeedbackStream,
26134 unix_glDrawTransformFeedbackStreamInstanced,
26135 unix_glDrawVkImageNV,
26136 unix_glEGLImageTargetTexStorageEXT,
26137 unix_glEGLImageTargetTextureStorageEXT,
26138 unix_glEdgeFlagFormatNV,
26139 unix_glEdgeFlagPointerEXT,
26140 unix_glEdgeFlagPointerListIBM,
26141 unix_glElementPointerAPPLE,
26142 unix_glElementPointerATI,
26143 unix_glEnableClientStateIndexedEXT,
26144 unix_glEnableClientStateiEXT,
26145 unix_glEnableIndexedEXT,
26146 unix_glEnableVariantClientStateEXT,
26147 unix_glEnableVertexArrayAttrib,
26148 unix_glEnableVertexArrayAttribEXT,
26149 unix_glEnableVertexArrayEXT,
26150 unix_glEnableVertexAttribAPPLE,
26151 unix_glEnableVertexAttribArray,
26152 unix_glEnableVertexAttribArrayARB,
26153 unix_glEnablei,
26154 unix_glEndConditionalRender,
26155 unix_glEndConditionalRenderNV,
26156 unix_glEndConditionalRenderNVX,
26157 unix_glEndFragmentShaderATI,
26158 unix_glEndOcclusionQueryNV,
26159 unix_glEndPerfMonitorAMD,
26160 unix_glEndPerfQueryINTEL,
26161 unix_glEndQuery,
26162 unix_glEndQueryARB,
26163 unix_glEndQueryIndexed,
26164 unix_glEndTransformFeedback,
26165 unix_glEndTransformFeedbackEXT,
26166 unix_glEndTransformFeedbackNV,
26167 unix_glEndVertexShaderEXT,
26168 unix_glEndVideoCaptureNV,
26169 unix_glEvalCoord1xOES,
26170 unix_glEvalCoord1xvOES,
26171 unix_glEvalCoord2xOES,
26172 unix_glEvalCoord2xvOES,
26173 unix_glEvalMapsNV,
26174 unix_glEvaluateDepthValuesARB,
26175 unix_glExecuteProgramNV,
26176 unix_glExtractComponentEXT,
26177 unix_glFeedbackBufferxOES,
26178 unix_glFenceSync,
26179 unix_glFinalCombinerInputNV,
26180 unix_glFinishAsyncSGIX,
26181 unix_glFinishFenceAPPLE,
26182 unix_glFinishFenceNV,
26183 unix_glFinishObjectAPPLE,
26184 unix_glFinishTextureSUNX,
26185 unix_glFlushMappedBufferRange,
26186 unix_glFlushMappedBufferRangeAPPLE,
26187 unix_glFlushMappedNamedBufferRange,
26188 unix_glFlushMappedNamedBufferRangeEXT,
26189 unix_glFlushPixelDataRangeNV,
26190 unix_glFlushRasterSGIX,
26191 unix_glFlushStaticDataIBM,
26192 unix_glFlushVertexArrayRangeAPPLE,
26193 unix_glFlushVertexArrayRangeNV,
26194 unix_glFogCoordFormatNV,
26195 unix_glFogCoordPointer,
26196 unix_glFogCoordPointerEXT,
26197 unix_glFogCoordPointerListIBM,
26198 unix_glFogCoordd,
26199 unix_glFogCoorddEXT,
26200 unix_glFogCoorddv,
26201 unix_glFogCoorddvEXT,
26202 unix_glFogCoordf,
26203 unix_glFogCoordfEXT,
26204 unix_glFogCoordfv,
26205 unix_glFogCoordfvEXT,
26206 unix_glFogCoordhNV,
26207 unix_glFogCoordhvNV,
26208 unix_glFogFuncSGIS,
26209 unix_glFogxOES,
26210 unix_glFogxvOES,
26211 unix_glFragmentColorMaterialSGIX,
26212 unix_glFragmentCoverageColorNV,
26213 unix_glFragmentLightModelfSGIX,
26214 unix_glFragmentLightModelfvSGIX,
26215 unix_glFragmentLightModeliSGIX,
26216 unix_glFragmentLightModelivSGIX,
26217 unix_glFragmentLightfSGIX,
26218 unix_glFragmentLightfvSGIX,
26219 unix_glFragmentLightiSGIX,
26220 unix_glFragmentLightivSGIX,
26221 unix_glFragmentMaterialfSGIX,
26222 unix_glFragmentMaterialfvSGIX,
26223 unix_glFragmentMaterialiSGIX,
26224 unix_glFragmentMaterialivSGIX,
26225 unix_glFrameTerminatorGREMEDY,
26226 unix_glFrameZoomSGIX,
26227 unix_glFramebufferDrawBufferEXT,
26228 unix_glFramebufferDrawBuffersEXT,
26229 unix_glFramebufferFetchBarrierEXT,
26230 unix_glFramebufferParameteri,
26231 unix_glFramebufferParameteriMESA,
26232 unix_glFramebufferReadBufferEXT,
26233 unix_glFramebufferRenderbuffer,
26234 unix_glFramebufferRenderbufferEXT,
26235 unix_glFramebufferSampleLocationsfvARB,
26236 unix_glFramebufferSampleLocationsfvNV,
26237 unix_glFramebufferSamplePositionsfvAMD,
26238 unix_glFramebufferTexture,
26239 unix_glFramebufferTexture1D,
26240 unix_glFramebufferTexture1DEXT,
26241 unix_glFramebufferTexture2D,
26242 unix_glFramebufferTexture2DEXT,
26243 unix_glFramebufferTexture3D,
26244 unix_glFramebufferTexture3DEXT,
26245 unix_glFramebufferTextureARB,
26246 unix_glFramebufferTextureEXT,
26247 unix_glFramebufferTextureFaceARB,
26248 unix_glFramebufferTextureFaceEXT,
26249 unix_glFramebufferTextureLayer,
26250 unix_glFramebufferTextureLayerARB,
26251 unix_glFramebufferTextureLayerEXT,
26252 unix_glFramebufferTextureMultiviewOVR,
26253 unix_glFreeObjectBufferATI,
26254 unix_glFrustumfOES,
26255 unix_glFrustumxOES,
26256 unix_glGenAsyncMarkersSGIX,
26257 unix_glGenBuffers,
26258 unix_glGenBuffersARB,
26259 unix_glGenFencesAPPLE,
26260 unix_glGenFencesNV,
26261 unix_glGenFragmentShadersATI,
26262 unix_glGenFramebuffers,
26263 unix_glGenFramebuffersEXT,
26264 unix_glGenNamesAMD,
26265 unix_glGenOcclusionQueriesNV,
26266 unix_glGenPathsNV,
26267 unix_glGenPerfMonitorsAMD,
26268 unix_glGenProgramPipelines,
26269 unix_glGenProgramsARB,
26270 unix_glGenProgramsNV,
26271 unix_glGenQueries,
26272 unix_glGenQueriesARB,
26273 unix_glGenQueryResourceTagNV,
26274 unix_glGenRenderbuffers,
26275 unix_glGenRenderbuffersEXT,
26276 unix_glGenSamplers,
26277 unix_glGenSemaphoresEXT,
26278 unix_glGenSymbolsEXT,
26279 unix_glGenTexturesEXT,
26280 unix_glGenTransformFeedbacks,
26281 unix_glGenTransformFeedbacksNV,
26282 unix_glGenVertexArrays,
26283 unix_glGenVertexArraysAPPLE,
26284 unix_glGenVertexShadersEXT,
26285 unix_glGenerateMipmap,
26286 unix_glGenerateMipmapEXT,
26287 unix_glGenerateMultiTexMipmapEXT,
26288 unix_glGenerateTextureMipmap,
26289 unix_glGenerateTextureMipmapEXT,
26290 unix_glGetActiveAtomicCounterBufferiv,
26291 unix_glGetActiveAttrib,
26292 unix_glGetActiveAttribARB,
26293 unix_glGetActiveSubroutineName,
26294 unix_glGetActiveSubroutineUniformName,
26295 unix_glGetActiveSubroutineUniformiv,
26296 unix_glGetActiveUniform,
26297 unix_glGetActiveUniformARB,
26298 unix_glGetActiveUniformBlockName,
26299 unix_glGetActiveUniformBlockiv,
26300 unix_glGetActiveUniformName,
26301 unix_glGetActiveUniformsiv,
26302 unix_glGetActiveVaryingNV,
26303 unix_glGetArrayObjectfvATI,
26304 unix_glGetArrayObjectivATI,
26305 unix_glGetAttachedObjectsARB,
26306 unix_glGetAttachedShaders,
26307 unix_glGetAttribLocation,
26308 unix_glGetAttribLocationARB,
26309 unix_glGetBooleanIndexedvEXT,
26310 unix_glGetBooleani_v,
26311 unix_glGetBufferParameteri64v,
26312 unix_glGetBufferParameteriv,
26313 unix_glGetBufferParameterivARB,
26314 unix_glGetBufferParameterui64vNV,
26315 unix_glGetBufferPointerv,
26316 unix_glGetBufferPointervARB,
26317 unix_glGetBufferSubData,
26318 unix_glGetBufferSubDataARB,
26319 unix_glGetClipPlanefOES,
26320 unix_glGetClipPlanexOES,
26321 unix_glGetColorTable,
26322 unix_glGetColorTableEXT,
26323 unix_glGetColorTableParameterfv,
26324 unix_glGetColorTableParameterfvEXT,
26325 unix_glGetColorTableParameterfvSGI,
26326 unix_glGetColorTableParameteriv,
26327 unix_glGetColorTableParameterivEXT,
26328 unix_glGetColorTableParameterivSGI,
26329 unix_glGetColorTableSGI,
26330 unix_glGetCombinerInputParameterfvNV,
26331 unix_glGetCombinerInputParameterivNV,
26332 unix_glGetCombinerOutputParameterfvNV,
26333 unix_glGetCombinerOutputParameterivNV,
26334 unix_glGetCombinerStageParameterfvNV,
26335 unix_glGetCommandHeaderNV,
26336 unix_glGetCompressedMultiTexImageEXT,
26337 unix_glGetCompressedTexImage,
26338 unix_glGetCompressedTexImageARB,
26339 unix_glGetCompressedTextureImage,
26340 unix_glGetCompressedTextureImageEXT,
26341 unix_glGetCompressedTextureSubImage,
26342 unix_glGetConvolutionFilter,
26343 unix_glGetConvolutionFilterEXT,
26344 unix_glGetConvolutionParameterfv,
26345 unix_glGetConvolutionParameterfvEXT,
26346 unix_glGetConvolutionParameteriv,
26347 unix_glGetConvolutionParameterivEXT,
26348 unix_glGetConvolutionParameterxvOES,
26349 unix_glGetCoverageModulationTableNV,
26350 unix_glGetDebugMessageLog,
26351 unix_glGetDebugMessageLogAMD,
26352 unix_glGetDebugMessageLogARB,
26353 unix_glGetDetailTexFuncSGIS,
26354 unix_glGetDoubleIndexedvEXT,
26355 unix_glGetDoublei_v,
26356 unix_glGetDoublei_vEXT,
26357 unix_glGetFenceivNV,
26358 unix_glGetFinalCombinerInputParameterfvNV,
26359 unix_glGetFinalCombinerInputParameterivNV,
26360 unix_glGetFirstPerfQueryIdINTEL,
26361 unix_glGetFixedvOES,
26362 unix_glGetFloatIndexedvEXT,
26363 unix_glGetFloati_v,
26364 unix_glGetFloati_vEXT,
26365 unix_glGetFogFuncSGIS,
26366 unix_glGetFragDataIndex,
26367 unix_glGetFragDataLocation,
26368 unix_glGetFragDataLocationEXT,
26369 unix_glGetFragmentLightfvSGIX,
26370 unix_glGetFragmentLightivSGIX,
26371 unix_glGetFragmentMaterialfvSGIX,
26372 unix_glGetFragmentMaterialivSGIX,
26373 unix_glGetFramebufferAttachmentParameteriv,
26374 unix_glGetFramebufferAttachmentParameterivEXT,
26375 unix_glGetFramebufferParameterfvAMD,
26376 unix_glGetFramebufferParameteriv,
26377 unix_glGetFramebufferParameterivEXT,
26378 unix_glGetFramebufferParameterivMESA,
26379 unix_glGetGraphicsResetStatus,
26380 unix_glGetGraphicsResetStatusARB,
26381 unix_glGetHandleARB,
26382 unix_glGetHistogram,
26383 unix_glGetHistogramEXT,
26384 unix_glGetHistogramParameterfv,
26385 unix_glGetHistogramParameterfvEXT,
26386 unix_glGetHistogramParameteriv,
26387 unix_glGetHistogramParameterivEXT,
26388 unix_glGetHistogramParameterxvOES,
26389 unix_glGetImageHandleARB,
26390 unix_glGetImageHandleNV,
26391 unix_glGetImageTransformParameterfvHP,
26392 unix_glGetImageTransformParameterivHP,
26393 unix_glGetInfoLogARB,
26394 unix_glGetInstrumentsSGIX,
26395 unix_glGetInteger64i_v,
26396 unix_glGetInteger64v,
26397 unix_glGetIntegerIndexedvEXT,
26398 unix_glGetIntegeri_v,
26399 unix_glGetIntegerui64i_vNV,
26400 unix_glGetIntegerui64vNV,
26401 unix_glGetInternalformatSampleivNV,
26402 unix_glGetInternalformati64v,
26403 unix_glGetInternalformativ,
26404 unix_glGetInvariantBooleanvEXT,
26405 unix_glGetInvariantFloatvEXT,
26406 unix_glGetInvariantIntegervEXT,
26407 unix_glGetLightxOES,
26408 unix_glGetListParameterfvSGIX,
26409 unix_glGetListParameterivSGIX,
26410 unix_glGetLocalConstantBooleanvEXT,
26411 unix_glGetLocalConstantFloatvEXT,
26412 unix_glGetLocalConstantIntegervEXT,
26413 unix_glGetMapAttribParameterfvNV,
26414 unix_glGetMapAttribParameterivNV,
26415 unix_glGetMapControlPointsNV,
26416 unix_glGetMapParameterfvNV,
26417 unix_glGetMapParameterivNV,
26418 unix_glGetMapxvOES,
26419 unix_glGetMaterialxOES,
26420 unix_glGetMemoryObjectDetachedResourcesuivNV,
26421 unix_glGetMemoryObjectParameterivEXT,
26422 unix_glGetMinmax,
26423 unix_glGetMinmaxEXT,
26424 unix_glGetMinmaxParameterfv,
26425 unix_glGetMinmaxParameterfvEXT,
26426 unix_glGetMinmaxParameteriv,
26427 unix_glGetMinmaxParameterivEXT,
26428 unix_glGetMultiTexEnvfvEXT,
26429 unix_glGetMultiTexEnvivEXT,
26430 unix_glGetMultiTexGendvEXT,
26431 unix_glGetMultiTexGenfvEXT,
26432 unix_glGetMultiTexGenivEXT,
26433 unix_glGetMultiTexImageEXT,
26434 unix_glGetMultiTexLevelParameterfvEXT,
26435 unix_glGetMultiTexLevelParameterivEXT,
26436 unix_glGetMultiTexParameterIivEXT,
26437 unix_glGetMultiTexParameterIuivEXT,
26438 unix_glGetMultiTexParameterfvEXT,
26439 unix_glGetMultiTexParameterivEXT,
26440 unix_glGetMultisamplefv,
26441 unix_glGetMultisamplefvNV,
26442 unix_glGetNamedBufferParameteri64v,
26443 unix_glGetNamedBufferParameteriv,
26444 unix_glGetNamedBufferParameterivEXT,
26445 unix_glGetNamedBufferParameterui64vNV,
26446 unix_glGetNamedBufferPointerv,
26447 unix_glGetNamedBufferPointervEXT,
26448 unix_glGetNamedBufferSubData,
26449 unix_glGetNamedBufferSubDataEXT,
26450 unix_glGetNamedFramebufferAttachmentParameteriv,
26451 unix_glGetNamedFramebufferAttachmentParameterivEXT,
26452 unix_glGetNamedFramebufferParameterfvAMD,
26453 unix_glGetNamedFramebufferParameteriv,
26454 unix_glGetNamedFramebufferParameterivEXT,
26455 unix_glGetNamedProgramLocalParameterIivEXT,
26456 unix_glGetNamedProgramLocalParameterIuivEXT,
26457 unix_glGetNamedProgramLocalParameterdvEXT,
26458 unix_glGetNamedProgramLocalParameterfvEXT,
26459 unix_glGetNamedProgramStringEXT,
26460 unix_glGetNamedProgramivEXT,
26461 unix_glGetNamedRenderbufferParameteriv,
26462 unix_glGetNamedRenderbufferParameterivEXT,
26463 unix_glGetNamedStringARB,
26464 unix_glGetNamedStringivARB,
26465 unix_glGetNextPerfQueryIdINTEL,
26466 unix_glGetObjectBufferfvATI,
26467 unix_glGetObjectBufferivATI,
26468 unix_glGetObjectLabel,
26469 unix_glGetObjectLabelEXT,
26470 unix_glGetObjectParameterfvARB,
26471 unix_glGetObjectParameterivAPPLE,
26472 unix_glGetObjectParameterivARB,
26473 unix_glGetObjectPtrLabel,
26474 unix_glGetOcclusionQueryivNV,
26475 unix_glGetOcclusionQueryuivNV,
26476 unix_glGetPathColorGenfvNV,
26477 unix_glGetPathColorGenivNV,
26478 unix_glGetPathCommandsNV,
26479 unix_glGetPathCoordsNV,
26480 unix_glGetPathDashArrayNV,
26481 unix_glGetPathLengthNV,
26482 unix_glGetPathMetricRangeNV,
26483 unix_glGetPathMetricsNV,
26484 unix_glGetPathParameterfvNV,
26485 unix_glGetPathParameterivNV,
26486 unix_glGetPathSpacingNV,
26487 unix_glGetPathTexGenfvNV,
26488 unix_glGetPathTexGenivNV,
26489 unix_glGetPerfCounterInfoINTEL,
26490 unix_glGetPerfMonitorCounterDataAMD,
26491 unix_glGetPerfMonitorCounterInfoAMD,
26492 unix_glGetPerfMonitorCounterStringAMD,
26493 unix_glGetPerfMonitorCountersAMD,
26494 unix_glGetPerfMonitorGroupStringAMD,
26495 unix_glGetPerfMonitorGroupsAMD,
26496 unix_glGetPerfQueryDataINTEL,
26497 unix_glGetPerfQueryIdByNameINTEL,
26498 unix_glGetPerfQueryInfoINTEL,
26499 unix_glGetPixelMapxv,
26500 unix_glGetPixelTexGenParameterfvSGIS,
26501 unix_glGetPixelTexGenParameterivSGIS,
26502 unix_glGetPixelTransformParameterfvEXT,
26503 unix_glGetPixelTransformParameterivEXT,
26504 unix_glGetPointerIndexedvEXT,
26505 unix_glGetPointeri_vEXT,
26506 unix_glGetPointervEXT,
26507 unix_glGetProgramBinary,
26508 unix_glGetProgramEnvParameterIivNV,
26509 unix_glGetProgramEnvParameterIuivNV,
26510 unix_glGetProgramEnvParameterdvARB,
26511 unix_glGetProgramEnvParameterfvARB,
26512 unix_glGetProgramInfoLog,
26513 unix_glGetProgramInterfaceiv,
26514 unix_glGetProgramLocalParameterIivNV,
26515 unix_glGetProgramLocalParameterIuivNV,
26516 unix_glGetProgramLocalParameterdvARB,
26517 unix_glGetProgramLocalParameterfvARB,
26518 unix_glGetProgramNamedParameterdvNV,
26519 unix_glGetProgramNamedParameterfvNV,
26520 unix_glGetProgramParameterdvNV,
26521 unix_glGetProgramParameterfvNV,
26522 unix_glGetProgramPipelineInfoLog,
26523 unix_glGetProgramPipelineiv,
26524 unix_glGetProgramResourceIndex,
26525 unix_glGetProgramResourceLocation,
26526 unix_glGetProgramResourceLocationIndex,
26527 unix_glGetProgramResourceName,
26528 unix_glGetProgramResourcefvNV,
26529 unix_glGetProgramResourceiv,
26530 unix_glGetProgramStageiv,
26531 unix_glGetProgramStringARB,
26532 unix_glGetProgramStringNV,
26533 unix_glGetProgramSubroutineParameteruivNV,
26534 unix_glGetProgramiv,
26535 unix_glGetProgramivARB,
26536 unix_glGetProgramivNV,
26537 unix_glGetQueryBufferObjecti64v,
26538 unix_glGetQueryBufferObjectiv,
26539 unix_glGetQueryBufferObjectui64v,
26540 unix_glGetQueryBufferObjectuiv,
26541 unix_glGetQueryIndexediv,
26542 unix_glGetQueryObjecti64v,
26543 unix_glGetQueryObjecti64vEXT,
26544 unix_glGetQueryObjectiv,
26545 unix_glGetQueryObjectivARB,
26546 unix_glGetQueryObjectui64v,
26547 unix_glGetQueryObjectui64vEXT,
26548 unix_glGetQueryObjectuiv,
26549 unix_glGetQueryObjectuivARB,
26550 unix_glGetQueryiv,
26551 unix_glGetQueryivARB,
26552 unix_glGetRenderbufferParameteriv,
26553 unix_glGetRenderbufferParameterivEXT,
26554 unix_glGetSamplerParameterIiv,
26555 unix_glGetSamplerParameterIuiv,
26556 unix_glGetSamplerParameterfv,
26557 unix_glGetSamplerParameteriv,
26558 unix_glGetSemaphoreParameterui64vEXT,
26559 unix_glGetSeparableFilter,
26560 unix_glGetSeparableFilterEXT,
26561 unix_glGetShaderInfoLog,
26562 unix_glGetShaderPrecisionFormat,
26563 unix_glGetShaderSource,
26564 unix_glGetShaderSourceARB,
26565 unix_glGetShaderiv,
26566 unix_glGetShadingRateImagePaletteNV,
26567 unix_glGetShadingRateSampleLocationivNV,
26568 unix_glGetSharpenTexFuncSGIS,
26569 unix_glGetStageIndexNV,
26570 unix_glGetStringi,
26571 unix_glGetSubroutineIndex,
26572 unix_glGetSubroutineUniformLocation,
26573 unix_glGetSynciv,
26574 unix_glGetTexBumpParameterfvATI,
26575 unix_glGetTexBumpParameterivATI,
26576 unix_glGetTexEnvxvOES,
26577 unix_glGetTexFilterFuncSGIS,
26578 unix_glGetTexGenxvOES,
26579 unix_glGetTexLevelParameterxvOES,
26580 unix_glGetTexParameterIiv,
26581 unix_glGetTexParameterIivEXT,
26582 unix_glGetTexParameterIuiv,
26583 unix_glGetTexParameterIuivEXT,
26584 unix_glGetTexParameterPointervAPPLE,
26585 unix_glGetTexParameterxvOES,
26586 unix_glGetTextureHandleARB,
26587 unix_glGetTextureHandleNV,
26588 unix_glGetTextureImage,
26589 unix_glGetTextureImageEXT,
26590 unix_glGetTextureLevelParameterfv,
26591 unix_glGetTextureLevelParameterfvEXT,
26592 unix_glGetTextureLevelParameteriv,
26593 unix_glGetTextureLevelParameterivEXT,
26594 unix_glGetTextureParameterIiv,
26595 unix_glGetTextureParameterIivEXT,
26596 unix_glGetTextureParameterIuiv,
26597 unix_glGetTextureParameterIuivEXT,
26598 unix_glGetTextureParameterfv,
26599 unix_glGetTextureParameterfvEXT,
26600 unix_glGetTextureParameteriv,
26601 unix_glGetTextureParameterivEXT,
26602 unix_glGetTextureSamplerHandleARB,
26603 unix_glGetTextureSamplerHandleNV,
26604 unix_glGetTextureSubImage,
26605 unix_glGetTrackMatrixivNV,
26606 unix_glGetTransformFeedbackVarying,
26607 unix_glGetTransformFeedbackVaryingEXT,
26608 unix_glGetTransformFeedbackVaryingNV,
26609 unix_glGetTransformFeedbacki64_v,
26610 unix_glGetTransformFeedbacki_v,
26611 unix_glGetTransformFeedbackiv,
26612 unix_glGetUniformBlockIndex,
26613 unix_glGetUniformBufferSizeEXT,
26614 unix_glGetUniformIndices,
26615 unix_glGetUniformLocation,
26616 unix_glGetUniformLocationARB,
26617 unix_glGetUniformOffsetEXT,
26618 unix_glGetUniformSubroutineuiv,
26619 unix_glGetUniformdv,
26620 unix_glGetUniformfv,
26621 unix_glGetUniformfvARB,
26622 unix_glGetUniformi64vARB,
26623 unix_glGetUniformi64vNV,
26624 unix_glGetUniformiv,
26625 unix_glGetUniformivARB,
26626 unix_glGetUniformui64vARB,
26627 unix_glGetUniformui64vNV,
26628 unix_glGetUniformuiv,
26629 unix_glGetUniformuivEXT,
26630 unix_glGetUnsignedBytei_vEXT,
26631 unix_glGetUnsignedBytevEXT,
26632 unix_glGetVariantArrayObjectfvATI,
26633 unix_glGetVariantArrayObjectivATI,
26634 unix_glGetVariantBooleanvEXT,
26635 unix_glGetVariantFloatvEXT,
26636 unix_glGetVariantIntegervEXT,
26637 unix_glGetVariantPointervEXT,
26638 unix_glGetVaryingLocationNV,
26639 unix_glGetVertexArrayIndexed64iv,
26640 unix_glGetVertexArrayIndexediv,
26641 unix_glGetVertexArrayIntegeri_vEXT,
26642 unix_glGetVertexArrayIntegervEXT,
26643 unix_glGetVertexArrayPointeri_vEXT,
26644 unix_glGetVertexArrayPointervEXT,
26645 unix_glGetVertexArrayiv,
26646 unix_glGetVertexAttribArrayObjectfvATI,
26647 unix_glGetVertexAttribArrayObjectivATI,
26648 unix_glGetVertexAttribIiv,
26649 unix_glGetVertexAttribIivEXT,
26650 unix_glGetVertexAttribIuiv,
26651 unix_glGetVertexAttribIuivEXT,
26652 unix_glGetVertexAttribLdv,
26653 unix_glGetVertexAttribLdvEXT,
26654 unix_glGetVertexAttribLi64vNV,
26655 unix_glGetVertexAttribLui64vARB,
26656 unix_glGetVertexAttribLui64vNV,
26657 unix_glGetVertexAttribPointerv,
26658 unix_glGetVertexAttribPointervARB,
26659 unix_glGetVertexAttribPointervNV,
26660 unix_glGetVertexAttribdv,
26661 unix_glGetVertexAttribdvARB,
26662 unix_glGetVertexAttribdvNV,
26663 unix_glGetVertexAttribfv,
26664 unix_glGetVertexAttribfvARB,
26665 unix_glGetVertexAttribfvNV,
26666 unix_glGetVertexAttribiv,
26667 unix_glGetVertexAttribivARB,
26668 unix_glGetVertexAttribivNV,
26669 unix_glGetVideoCaptureStreamdvNV,
26670 unix_glGetVideoCaptureStreamfvNV,
26671 unix_glGetVideoCaptureStreamivNV,
26672 unix_glGetVideoCaptureivNV,
26673 unix_glGetVideoi64vNV,
26674 unix_glGetVideoivNV,
26675 unix_glGetVideoui64vNV,
26676 unix_glGetVideouivNV,
26677 unix_glGetVkProcAddrNV,
26678 unix_glGetnColorTable,
26679 unix_glGetnColorTableARB,
26680 unix_glGetnCompressedTexImage,
26681 unix_glGetnCompressedTexImageARB,
26682 unix_glGetnConvolutionFilter,
26683 unix_glGetnConvolutionFilterARB,
26684 unix_glGetnHistogram,
26685 unix_glGetnHistogramARB,
26686 unix_glGetnMapdv,
26687 unix_glGetnMapdvARB,
26688 unix_glGetnMapfv,
26689 unix_glGetnMapfvARB,
26690 unix_glGetnMapiv,
26691 unix_glGetnMapivARB,
26692 unix_glGetnMinmax,
26693 unix_glGetnMinmaxARB,
26694 unix_glGetnPixelMapfv,
26695 unix_glGetnPixelMapfvARB,
26696 unix_glGetnPixelMapuiv,
26697 unix_glGetnPixelMapuivARB,
26698 unix_glGetnPixelMapusv,
26699 unix_glGetnPixelMapusvARB,
26700 unix_glGetnPolygonStipple,
26701 unix_glGetnPolygonStippleARB,
26702 unix_glGetnSeparableFilter,
26703 unix_glGetnSeparableFilterARB,
26704 unix_glGetnTexImage,
26705 unix_glGetnTexImageARB,
26706 unix_glGetnUniformdv,
26707 unix_glGetnUniformdvARB,
26708 unix_glGetnUniformfv,
26709 unix_glGetnUniformfvARB,
26710 unix_glGetnUniformi64vARB,
26711 unix_glGetnUniformiv,
26712 unix_glGetnUniformivARB,
26713 unix_glGetnUniformui64vARB,
26714 unix_glGetnUniformuiv,
26715 unix_glGetnUniformuivARB,
26716 unix_glGlobalAlphaFactorbSUN,
26717 unix_glGlobalAlphaFactordSUN,
26718 unix_glGlobalAlphaFactorfSUN,
26719 unix_glGlobalAlphaFactoriSUN,
26720 unix_glGlobalAlphaFactorsSUN,
26721 unix_glGlobalAlphaFactorubSUN,
26722 unix_glGlobalAlphaFactoruiSUN,
26723 unix_glGlobalAlphaFactorusSUN,
26724 unix_glHintPGI,
26725 unix_glHistogram,
26726 unix_glHistogramEXT,
26727 unix_glIglooInterfaceSGIX,
26728 unix_glImageTransformParameterfHP,
26729 unix_glImageTransformParameterfvHP,
26730 unix_glImageTransformParameteriHP,
26731 unix_glImageTransformParameterivHP,
26732 unix_glImportMemoryFdEXT,
26733 unix_glImportMemoryWin32HandleEXT,
26734 unix_glImportMemoryWin32NameEXT,
26735 unix_glImportSemaphoreFdEXT,
26736 unix_glImportSemaphoreWin32HandleEXT,
26737 unix_glImportSemaphoreWin32NameEXT,
26738 unix_glImportSyncEXT,
26739 unix_glIndexFormatNV,
26740 unix_glIndexFuncEXT,
26741 unix_glIndexMaterialEXT,
26742 unix_glIndexPointerEXT,
26743 unix_glIndexPointerListIBM,
26744 unix_glIndexxOES,
26745 unix_glIndexxvOES,
26746 unix_glInsertComponentEXT,
26747 unix_glInsertEventMarkerEXT,
26748 unix_glInstrumentsBufferSGIX,
26749 unix_glInterpolatePathsNV,
26750 unix_glInvalidateBufferData,
26751 unix_glInvalidateBufferSubData,
26752 unix_glInvalidateFramebuffer,
26753 unix_glInvalidateNamedFramebufferData,
26754 unix_glInvalidateNamedFramebufferSubData,
26755 unix_glInvalidateSubFramebuffer,
26756 unix_glInvalidateTexImage,
26757 unix_glInvalidateTexSubImage,
26758 unix_glIsAsyncMarkerSGIX,
26759 unix_glIsBuffer,
26760 unix_glIsBufferARB,
26761 unix_glIsBufferResidentNV,
26762 unix_glIsCommandListNV,
26763 unix_glIsEnabledIndexedEXT,
26764 unix_glIsEnabledi,
26765 unix_glIsFenceAPPLE,
26766 unix_glIsFenceNV,
26767 unix_glIsFramebuffer,
26768 unix_glIsFramebufferEXT,
26769 unix_glIsImageHandleResidentARB,
26770 unix_glIsImageHandleResidentNV,
26771 unix_glIsMemoryObjectEXT,
26772 unix_glIsNameAMD,
26773 unix_glIsNamedBufferResidentNV,
26774 unix_glIsNamedStringARB,
26775 unix_glIsObjectBufferATI,
26776 unix_glIsOcclusionQueryNV,
26777 unix_glIsPathNV,
26778 unix_glIsPointInFillPathNV,
26779 unix_glIsPointInStrokePathNV,
26780 unix_glIsProgram,
26781 unix_glIsProgramARB,
26782 unix_glIsProgramNV,
26783 unix_glIsProgramPipeline,
26784 unix_glIsQuery,
26785 unix_glIsQueryARB,
26786 unix_glIsRenderbuffer,
26787 unix_glIsRenderbufferEXT,
26788 unix_glIsSampler,
26789 unix_glIsSemaphoreEXT,
26790 unix_glIsShader,
26791 unix_glIsStateNV,
26792 unix_glIsSync,
26793 unix_glIsTextureEXT,
26794 unix_glIsTextureHandleResidentARB,
26795 unix_glIsTextureHandleResidentNV,
26796 unix_glIsTransformFeedback,
26797 unix_glIsTransformFeedbackNV,
26798 unix_glIsVariantEnabledEXT,
26799 unix_glIsVertexArray,
26800 unix_glIsVertexArrayAPPLE,
26801 unix_glIsVertexAttribEnabledAPPLE,
26802 unix_glLGPUCopyImageSubDataNVX,
26803 unix_glLGPUInterlockNVX,
26804 unix_glLGPUNamedBufferSubDataNVX,
26805 unix_glLabelObjectEXT,
26806 unix_glLightEnviSGIX,
26807 unix_glLightModelxOES,
26808 unix_glLightModelxvOES,
26809 unix_glLightxOES,
26810 unix_glLightxvOES,
26811 unix_glLineWidthxOES,
26812 unix_glLinkProgram,
26813 unix_glLinkProgramARB,
26814 unix_glListDrawCommandsStatesClientNV,
26815 unix_glListParameterfSGIX,
26816 unix_glListParameterfvSGIX,
26817 unix_glListParameteriSGIX,
26818 unix_glListParameterivSGIX,
26819 unix_glLoadIdentityDeformationMapSGIX,
26820 unix_glLoadMatrixxOES,
26821 unix_glLoadProgramNV,
26822 unix_glLoadTransposeMatrixd,
26823 unix_glLoadTransposeMatrixdARB,
26824 unix_glLoadTransposeMatrixf,
26825 unix_glLoadTransposeMatrixfARB,
26826 unix_glLoadTransposeMatrixxOES,
26827 unix_glLockArraysEXT,
26828 unix_glMTexCoord2fSGIS,
26829 unix_glMTexCoord2fvSGIS,
26830 unix_glMakeBufferNonResidentNV,
26831 unix_glMakeBufferResidentNV,
26832 unix_glMakeImageHandleNonResidentARB,
26833 unix_glMakeImageHandleNonResidentNV,
26834 unix_glMakeImageHandleResidentARB,
26835 unix_glMakeImageHandleResidentNV,
26836 unix_glMakeNamedBufferNonResidentNV,
26837 unix_glMakeNamedBufferResidentNV,
26838 unix_glMakeTextureHandleNonResidentARB,
26839 unix_glMakeTextureHandleNonResidentNV,
26840 unix_glMakeTextureHandleResidentARB,
26841 unix_glMakeTextureHandleResidentNV,
26842 unix_glMap1xOES,
26843 unix_glMap2xOES,
26844 unix_glMapBuffer,
26845 unix_glMapBufferARB,
26846 unix_glMapBufferRange,
26847 unix_glMapControlPointsNV,
26848 unix_glMapGrid1xOES,
26849 unix_glMapGrid2xOES,
26850 unix_glMapNamedBuffer,
26851 unix_glMapNamedBufferEXT,
26852 unix_glMapNamedBufferRange,
26853 unix_glMapNamedBufferRangeEXT,
26854 unix_glMapObjectBufferATI,
26855 unix_glMapParameterfvNV,
26856 unix_glMapParameterivNV,
26857 unix_glMapTexture2DINTEL,
26858 unix_glMapVertexAttrib1dAPPLE,
26859 unix_glMapVertexAttrib1fAPPLE,
26860 unix_glMapVertexAttrib2dAPPLE,
26861 unix_glMapVertexAttrib2fAPPLE,
26862 unix_glMaterialxOES,
26863 unix_glMaterialxvOES,
26864 unix_glMatrixFrustumEXT,
26865 unix_glMatrixIndexPointerARB,
26866 unix_glMatrixIndexubvARB,
26867 unix_glMatrixIndexuivARB,
26868 unix_glMatrixIndexusvARB,
26869 unix_glMatrixLoad3x2fNV,
26870 unix_glMatrixLoad3x3fNV,
26871 unix_glMatrixLoadIdentityEXT,
26872 unix_glMatrixLoadTranspose3x3fNV,
26873 unix_glMatrixLoadTransposedEXT,
26874 unix_glMatrixLoadTransposefEXT,
26875 unix_glMatrixLoaddEXT,
26876 unix_glMatrixLoadfEXT,
26877 unix_glMatrixMult3x2fNV,
26878 unix_glMatrixMult3x3fNV,
26879 unix_glMatrixMultTranspose3x3fNV,
26880 unix_glMatrixMultTransposedEXT,
26881 unix_glMatrixMultTransposefEXT,
26882 unix_glMatrixMultdEXT,
26883 unix_glMatrixMultfEXT,
26884 unix_glMatrixOrthoEXT,
26885 unix_glMatrixPopEXT,
26886 unix_glMatrixPushEXT,
26887 unix_glMatrixRotatedEXT,
26888 unix_glMatrixRotatefEXT,
26889 unix_glMatrixScaledEXT,
26890 unix_glMatrixScalefEXT,
26891 unix_glMatrixTranslatedEXT,
26892 unix_glMatrixTranslatefEXT,
26893 unix_glMaxShaderCompilerThreadsARB,
26894 unix_glMaxShaderCompilerThreadsKHR,
26895 unix_glMemoryBarrier,
26896 unix_glMemoryBarrierByRegion,
26897 unix_glMemoryBarrierEXT,
26898 unix_glMemoryObjectParameterivEXT,
26899 unix_glMinSampleShading,
26900 unix_glMinSampleShadingARB,
26901 unix_glMinmax,
26902 unix_glMinmaxEXT,
26903 unix_glMultMatrixxOES,
26904 unix_glMultTransposeMatrixd,
26905 unix_glMultTransposeMatrixdARB,
26906 unix_glMultTransposeMatrixf,
26907 unix_glMultTransposeMatrixfARB,
26908 unix_glMultTransposeMatrixxOES,
26909 unix_glMultiDrawArrays,
26910 unix_glMultiDrawArraysEXT,
26911 unix_glMultiDrawArraysIndirect,
26912 unix_glMultiDrawArraysIndirectAMD,
26913 unix_glMultiDrawArraysIndirectBindlessCountNV,
26914 unix_glMultiDrawArraysIndirectBindlessNV,
26915 unix_glMultiDrawArraysIndirectCount,
26916 unix_glMultiDrawArraysIndirectCountARB,
26917 unix_glMultiDrawElementArrayAPPLE,
26918 unix_glMultiDrawElements,
26919 unix_glMultiDrawElementsBaseVertex,
26920 unix_glMultiDrawElementsEXT,
26921 unix_glMultiDrawElementsIndirect,
26922 unix_glMultiDrawElementsIndirectAMD,
26923 unix_glMultiDrawElementsIndirectBindlessCountNV,
26924 unix_glMultiDrawElementsIndirectBindlessNV,
26925 unix_glMultiDrawElementsIndirectCount,
26926 unix_glMultiDrawElementsIndirectCountARB,
26927 unix_glMultiDrawMeshTasksIndirectCountNV,
26928 unix_glMultiDrawMeshTasksIndirectNV,
26929 unix_glMultiDrawRangeElementArrayAPPLE,
26930 unix_glMultiModeDrawArraysIBM,
26931 unix_glMultiModeDrawElementsIBM,
26932 unix_glMultiTexBufferEXT,
26933 unix_glMultiTexCoord1bOES,
26934 unix_glMultiTexCoord1bvOES,
26935 unix_glMultiTexCoord1d,
26936 unix_glMultiTexCoord1dARB,
26937 unix_glMultiTexCoord1dSGIS,
26938 unix_glMultiTexCoord1dv,
26939 unix_glMultiTexCoord1dvARB,
26940 unix_glMultiTexCoord1dvSGIS,
26941 unix_glMultiTexCoord1f,
26942 unix_glMultiTexCoord1fARB,
26943 unix_glMultiTexCoord1fSGIS,
26944 unix_glMultiTexCoord1fv,
26945 unix_glMultiTexCoord1fvARB,
26946 unix_glMultiTexCoord1fvSGIS,
26947 unix_glMultiTexCoord1hNV,
26948 unix_glMultiTexCoord1hvNV,
26949 unix_glMultiTexCoord1i,
26950 unix_glMultiTexCoord1iARB,
26951 unix_glMultiTexCoord1iSGIS,
26952 unix_glMultiTexCoord1iv,
26953 unix_glMultiTexCoord1ivARB,
26954 unix_glMultiTexCoord1ivSGIS,
26955 unix_glMultiTexCoord1s,
26956 unix_glMultiTexCoord1sARB,
26957 unix_glMultiTexCoord1sSGIS,
26958 unix_glMultiTexCoord1sv,
26959 unix_glMultiTexCoord1svARB,
26960 unix_glMultiTexCoord1svSGIS,
26961 unix_glMultiTexCoord1xOES,
26962 unix_glMultiTexCoord1xvOES,
26963 unix_glMultiTexCoord2bOES,
26964 unix_glMultiTexCoord2bvOES,
26965 unix_glMultiTexCoord2d,
26966 unix_glMultiTexCoord2dARB,
26967 unix_glMultiTexCoord2dSGIS,
26968 unix_glMultiTexCoord2dv,
26969 unix_glMultiTexCoord2dvARB,
26970 unix_glMultiTexCoord2dvSGIS,
26971 unix_glMultiTexCoord2f,
26972 unix_glMultiTexCoord2fARB,
26973 unix_glMultiTexCoord2fSGIS,
26974 unix_glMultiTexCoord2fv,
26975 unix_glMultiTexCoord2fvARB,
26976 unix_glMultiTexCoord2fvSGIS,
26977 unix_glMultiTexCoord2hNV,
26978 unix_glMultiTexCoord2hvNV,
26979 unix_glMultiTexCoord2i,
26980 unix_glMultiTexCoord2iARB,
26981 unix_glMultiTexCoord2iSGIS,
26982 unix_glMultiTexCoord2iv,
26983 unix_glMultiTexCoord2ivARB,
26984 unix_glMultiTexCoord2ivSGIS,
26985 unix_glMultiTexCoord2s,
26986 unix_glMultiTexCoord2sARB,
26987 unix_glMultiTexCoord2sSGIS,
26988 unix_glMultiTexCoord2sv,
26989 unix_glMultiTexCoord2svARB,
26990 unix_glMultiTexCoord2svSGIS,
26991 unix_glMultiTexCoord2xOES,
26992 unix_glMultiTexCoord2xvOES,
26993 unix_glMultiTexCoord3bOES,
26994 unix_glMultiTexCoord3bvOES,
26995 unix_glMultiTexCoord3d,
26996 unix_glMultiTexCoord3dARB,
26997 unix_glMultiTexCoord3dSGIS,
26998 unix_glMultiTexCoord3dv,
26999 unix_glMultiTexCoord3dvARB,
27000 unix_glMultiTexCoord3dvSGIS,
27001 unix_glMultiTexCoord3f,
27002 unix_glMultiTexCoord3fARB,
27003 unix_glMultiTexCoord3fSGIS,
27004 unix_glMultiTexCoord3fv,
27005 unix_glMultiTexCoord3fvARB,
27006 unix_glMultiTexCoord3fvSGIS,
27007 unix_glMultiTexCoord3hNV,
27008 unix_glMultiTexCoord3hvNV,
27009 unix_glMultiTexCoord3i,
27010 unix_glMultiTexCoord3iARB,
27011 unix_glMultiTexCoord3iSGIS,
27012 unix_glMultiTexCoord3iv,
27013 unix_glMultiTexCoord3ivARB,
27014 unix_glMultiTexCoord3ivSGIS,
27015 unix_glMultiTexCoord3s,
27016 unix_glMultiTexCoord3sARB,
27017 unix_glMultiTexCoord3sSGIS,
27018 unix_glMultiTexCoord3sv,
27019 unix_glMultiTexCoord3svARB,
27020 unix_glMultiTexCoord3svSGIS,
27021 unix_glMultiTexCoord3xOES,
27022 unix_glMultiTexCoord3xvOES,
27023 unix_glMultiTexCoord4bOES,
27024 unix_glMultiTexCoord4bvOES,
27025 unix_glMultiTexCoord4d,
27026 unix_glMultiTexCoord4dARB,
27027 unix_glMultiTexCoord4dSGIS,
27028 unix_glMultiTexCoord4dv,
27029 unix_glMultiTexCoord4dvARB,
27030 unix_glMultiTexCoord4dvSGIS,
27031 unix_glMultiTexCoord4f,
27032 unix_glMultiTexCoord4fARB,
27033 unix_glMultiTexCoord4fSGIS,
27034 unix_glMultiTexCoord4fv,
27035 unix_glMultiTexCoord4fvARB,
27036 unix_glMultiTexCoord4fvSGIS,
27037 unix_glMultiTexCoord4hNV,
27038 unix_glMultiTexCoord4hvNV,
27039 unix_glMultiTexCoord4i,
27040 unix_glMultiTexCoord4iARB,
27041 unix_glMultiTexCoord4iSGIS,
27042 unix_glMultiTexCoord4iv,
27043 unix_glMultiTexCoord4ivARB,
27044 unix_glMultiTexCoord4ivSGIS,
27045 unix_glMultiTexCoord4s,
27046 unix_glMultiTexCoord4sARB,
27047 unix_glMultiTexCoord4sSGIS,
27048 unix_glMultiTexCoord4sv,
27049 unix_glMultiTexCoord4svARB,
27050 unix_glMultiTexCoord4svSGIS,
27051 unix_glMultiTexCoord4xOES,
27052 unix_glMultiTexCoord4xvOES,
27053 unix_glMultiTexCoordP1ui,
27054 unix_glMultiTexCoordP1uiv,
27055 unix_glMultiTexCoordP2ui,
27056 unix_glMultiTexCoordP2uiv,
27057 unix_glMultiTexCoordP3ui,
27058 unix_glMultiTexCoordP3uiv,
27059 unix_glMultiTexCoordP4ui,
27060 unix_glMultiTexCoordP4uiv,
27061 unix_glMultiTexCoordPointerEXT,
27062 unix_glMultiTexCoordPointerSGIS,
27063 unix_glMultiTexEnvfEXT,
27064 unix_glMultiTexEnvfvEXT,
27065 unix_glMultiTexEnviEXT,
27066 unix_glMultiTexEnvivEXT,
27067 unix_glMultiTexGendEXT,
27068 unix_glMultiTexGendvEXT,
27069 unix_glMultiTexGenfEXT,
27070 unix_glMultiTexGenfvEXT,
27071 unix_glMultiTexGeniEXT,
27072 unix_glMultiTexGenivEXT,
27073 unix_glMultiTexImage1DEXT,
27074 unix_glMultiTexImage2DEXT,
27075 unix_glMultiTexImage3DEXT,
27076 unix_glMultiTexParameterIivEXT,
27077 unix_glMultiTexParameterIuivEXT,
27078 unix_glMultiTexParameterfEXT,
27079 unix_glMultiTexParameterfvEXT,
27080 unix_glMultiTexParameteriEXT,
27081 unix_glMultiTexParameterivEXT,
27082 unix_glMultiTexRenderbufferEXT,
27083 unix_glMultiTexSubImage1DEXT,
27084 unix_glMultiTexSubImage2DEXT,
27085 unix_glMultiTexSubImage3DEXT,
27086 unix_glMulticastBarrierNV,
27087 unix_glMulticastBlitFramebufferNV,
27088 unix_glMulticastBufferSubDataNV,
27089 unix_glMulticastCopyBufferSubDataNV,
27090 unix_glMulticastCopyImageSubDataNV,
27091 unix_glMulticastFramebufferSampleLocationsfvNV,
27092 unix_glMulticastGetQueryObjecti64vNV,
27093 unix_glMulticastGetQueryObjectivNV,
27094 unix_glMulticastGetQueryObjectui64vNV,
27095 unix_glMulticastGetQueryObjectuivNV,
27096 unix_glMulticastScissorArrayvNVX,
27097 unix_glMulticastViewportArrayvNVX,
27098 unix_glMulticastViewportPositionWScaleNVX,
27099 unix_glMulticastWaitSyncNV,
27100 unix_glNamedBufferAttachMemoryNV,
27101 unix_glNamedBufferData,
27102 unix_glNamedBufferDataEXT,
27103 unix_glNamedBufferPageCommitmentARB,
27104 unix_glNamedBufferPageCommitmentEXT,
27105 unix_glNamedBufferStorage,
27106 unix_glNamedBufferStorageEXT,
27107 unix_glNamedBufferStorageExternalEXT,
27108 unix_glNamedBufferStorageMemEXT,
27109 unix_glNamedBufferSubData,
27110 unix_glNamedBufferSubDataEXT,
27111 unix_glNamedCopyBufferSubDataEXT,
27112 unix_glNamedFramebufferDrawBuffer,
27113 unix_glNamedFramebufferDrawBuffers,
27114 unix_glNamedFramebufferParameteri,
27115 unix_glNamedFramebufferParameteriEXT,
27116 unix_glNamedFramebufferReadBuffer,
27117 unix_glNamedFramebufferRenderbuffer,
27118 unix_glNamedFramebufferRenderbufferEXT,
27119 unix_glNamedFramebufferSampleLocationsfvARB,
27120 unix_glNamedFramebufferSampleLocationsfvNV,
27121 unix_glNamedFramebufferSamplePositionsfvAMD,
27122 unix_glNamedFramebufferTexture,
27123 unix_glNamedFramebufferTexture1DEXT,
27124 unix_glNamedFramebufferTexture2DEXT,
27125 unix_glNamedFramebufferTexture3DEXT,
27126 unix_glNamedFramebufferTextureEXT,
27127 unix_glNamedFramebufferTextureFaceEXT,
27128 unix_glNamedFramebufferTextureLayer,
27129 unix_glNamedFramebufferTextureLayerEXT,
27130 unix_glNamedProgramLocalParameter4dEXT,
27131 unix_glNamedProgramLocalParameter4dvEXT,
27132 unix_glNamedProgramLocalParameter4fEXT,
27133 unix_glNamedProgramLocalParameter4fvEXT,
27134 unix_glNamedProgramLocalParameterI4iEXT,
27135 unix_glNamedProgramLocalParameterI4ivEXT,
27136 unix_glNamedProgramLocalParameterI4uiEXT,
27137 unix_glNamedProgramLocalParameterI4uivEXT,
27138 unix_glNamedProgramLocalParameters4fvEXT,
27139 unix_glNamedProgramLocalParametersI4ivEXT,
27140 unix_glNamedProgramLocalParametersI4uivEXT,
27141 unix_glNamedProgramStringEXT,
27142 unix_glNamedRenderbufferStorage,
27143 unix_glNamedRenderbufferStorageEXT,
27144 unix_glNamedRenderbufferStorageMultisample,
27145 unix_glNamedRenderbufferStorageMultisampleAdvancedAMD,
27146 unix_glNamedRenderbufferStorageMultisampleCoverageEXT,
27147 unix_glNamedRenderbufferStorageMultisampleEXT,
27148 unix_glNamedStringARB,
27149 unix_glNewBufferRegion,
27150 unix_glNewObjectBufferATI,
27151 unix_glNormal3fVertex3fSUN,
27152 unix_glNormal3fVertex3fvSUN,
27153 unix_glNormal3hNV,
27154 unix_glNormal3hvNV,
27155 unix_glNormal3xOES,
27156 unix_glNormal3xvOES,
27157 unix_glNormalFormatNV,
27158 unix_glNormalP3ui,
27159 unix_glNormalP3uiv,
27160 unix_glNormalPointerEXT,
27161 unix_glNormalPointerListIBM,
27162 unix_glNormalPointervINTEL,
27163 unix_glNormalStream3bATI,
27164 unix_glNormalStream3bvATI,
27165 unix_glNormalStream3dATI,
27166 unix_glNormalStream3dvATI,
27167 unix_glNormalStream3fATI,
27168 unix_glNormalStream3fvATI,
27169 unix_glNormalStream3iATI,
27170 unix_glNormalStream3ivATI,
27171 unix_glNormalStream3sATI,
27172 unix_glNormalStream3svATI,
27173 unix_glObjectLabel,
27174 unix_glObjectPtrLabel,
27175 unix_glObjectPurgeableAPPLE,
27176 unix_glObjectUnpurgeableAPPLE,
27177 unix_glOrthofOES,
27178 unix_glOrthoxOES,
27179 unix_glPNTrianglesfATI,
27180 unix_glPNTrianglesiATI,
27181 unix_glPassTexCoordATI,
27182 unix_glPassThroughxOES,
27183 unix_glPatchParameterfv,
27184 unix_glPatchParameteri,
27185 unix_glPathColorGenNV,
27186 unix_glPathCommandsNV,
27187 unix_glPathCoordsNV,
27188 unix_glPathCoverDepthFuncNV,
27189 unix_glPathDashArrayNV,
27190 unix_glPathFogGenNV,
27191 unix_glPathGlyphIndexArrayNV,
27192 unix_glPathGlyphIndexRangeNV,
27193 unix_glPathGlyphRangeNV,
27194 unix_glPathGlyphsNV,
27195 unix_glPathMemoryGlyphIndexArrayNV,
27196 unix_glPathParameterfNV,
27197 unix_glPathParameterfvNV,
27198 unix_glPathParameteriNV,
27199 unix_glPathParameterivNV,
27200 unix_glPathStencilDepthOffsetNV,
27201 unix_glPathStencilFuncNV,
27202 unix_glPathStringNV,
27203 unix_glPathSubCommandsNV,
27204 unix_glPathSubCoordsNV,
27205 unix_glPathTexGenNV,
27206 unix_glPauseTransformFeedback,
27207 unix_glPauseTransformFeedbackNV,
27208 unix_glPixelDataRangeNV,
27209 unix_glPixelMapx,
27210 unix_glPixelStorex,
27211 unix_glPixelTexGenParameterfSGIS,
27212 unix_glPixelTexGenParameterfvSGIS,
27213 unix_glPixelTexGenParameteriSGIS,
27214 unix_glPixelTexGenParameterivSGIS,
27215 unix_glPixelTexGenSGIX,
27216 unix_glPixelTransferxOES,
27217 unix_glPixelTransformParameterfEXT,
27218 unix_glPixelTransformParameterfvEXT,
27219 unix_glPixelTransformParameteriEXT,
27220 unix_glPixelTransformParameterivEXT,
27221 unix_glPixelZoomxOES,
27222 unix_glPointAlongPathNV,
27223 unix_glPointParameterf,
27224 unix_glPointParameterfARB,
27225 unix_glPointParameterfEXT,
27226 unix_glPointParameterfSGIS,
27227 unix_glPointParameterfv,
27228 unix_glPointParameterfvARB,
27229 unix_glPointParameterfvEXT,
27230 unix_glPointParameterfvSGIS,
27231 unix_glPointParameteri,
27232 unix_glPointParameteriNV,
27233 unix_glPointParameteriv,
27234 unix_glPointParameterivNV,
27235 unix_glPointParameterxvOES,
27236 unix_glPointSizexOES,
27237 unix_glPollAsyncSGIX,
27238 unix_glPollInstrumentsSGIX,
27239 unix_glPolygonOffsetClamp,
27240 unix_glPolygonOffsetClampEXT,
27241 unix_glPolygonOffsetEXT,
27242 unix_glPolygonOffsetxOES,
27243 unix_glPopDebugGroup,
27244 unix_glPopGroupMarkerEXT,
27245 unix_glPresentFrameDualFillNV,
27246 unix_glPresentFrameKeyedNV,
27247 unix_glPrimitiveBoundingBoxARB,
27248 unix_glPrimitiveRestartIndex,
27249 unix_glPrimitiveRestartIndexNV,
27250 unix_glPrimitiveRestartNV,
27251 unix_glPrioritizeTexturesEXT,
27252 unix_glPrioritizeTexturesxOES,
27253 unix_glProgramBinary,
27254 unix_glProgramBufferParametersIivNV,
27255 unix_glProgramBufferParametersIuivNV,
27256 unix_glProgramBufferParametersfvNV,
27257 unix_glProgramEnvParameter4dARB,
27258 unix_glProgramEnvParameter4dvARB,
27259 unix_glProgramEnvParameter4fARB,
27260 unix_glProgramEnvParameter4fvARB,
27261 unix_glProgramEnvParameterI4iNV,
27262 unix_glProgramEnvParameterI4ivNV,
27263 unix_glProgramEnvParameterI4uiNV,
27264 unix_glProgramEnvParameterI4uivNV,
27265 unix_glProgramEnvParameters4fvEXT,
27266 unix_glProgramEnvParametersI4ivNV,
27267 unix_glProgramEnvParametersI4uivNV,
27268 unix_glProgramLocalParameter4dARB,
27269 unix_glProgramLocalParameter4dvARB,
27270 unix_glProgramLocalParameter4fARB,
27271 unix_glProgramLocalParameter4fvARB,
27272 unix_glProgramLocalParameterI4iNV,
27273 unix_glProgramLocalParameterI4ivNV,
27274 unix_glProgramLocalParameterI4uiNV,
27275 unix_glProgramLocalParameterI4uivNV,
27276 unix_glProgramLocalParameters4fvEXT,
27277 unix_glProgramLocalParametersI4ivNV,
27278 unix_glProgramLocalParametersI4uivNV,
27279 unix_glProgramNamedParameter4dNV,
27280 unix_glProgramNamedParameter4dvNV,
27281 unix_glProgramNamedParameter4fNV,
27282 unix_glProgramNamedParameter4fvNV,
27283 unix_glProgramParameter4dNV,
27284 unix_glProgramParameter4dvNV,
27285 unix_glProgramParameter4fNV,
27286 unix_glProgramParameter4fvNV,
27287 unix_glProgramParameteri,
27288 unix_glProgramParameteriARB,
27289 unix_glProgramParameteriEXT,
27290 unix_glProgramParameters4dvNV,
27291 unix_glProgramParameters4fvNV,
27292 unix_glProgramPathFragmentInputGenNV,
27293 unix_glProgramStringARB,
27294 unix_glProgramSubroutineParametersuivNV,
27295 unix_glProgramUniform1d,
27296 unix_glProgramUniform1dEXT,
27297 unix_glProgramUniform1dv,
27298 unix_glProgramUniform1dvEXT,
27299 unix_glProgramUniform1f,
27300 unix_glProgramUniform1fEXT,
27301 unix_glProgramUniform1fv,
27302 unix_glProgramUniform1fvEXT,
27303 unix_glProgramUniform1i,
27304 unix_glProgramUniform1i64ARB,
27305 unix_glProgramUniform1i64NV,
27306 unix_glProgramUniform1i64vARB,
27307 unix_glProgramUniform1i64vNV,
27308 unix_glProgramUniform1iEXT,
27309 unix_glProgramUniform1iv,
27310 unix_glProgramUniform1ivEXT,
27311 unix_glProgramUniform1ui,
27312 unix_glProgramUniform1ui64ARB,
27313 unix_glProgramUniform1ui64NV,
27314 unix_glProgramUniform1ui64vARB,
27315 unix_glProgramUniform1ui64vNV,
27316 unix_glProgramUniform1uiEXT,
27317 unix_glProgramUniform1uiv,
27318 unix_glProgramUniform1uivEXT,
27319 unix_glProgramUniform2d,
27320 unix_glProgramUniform2dEXT,
27321 unix_glProgramUniform2dv,
27322 unix_glProgramUniform2dvEXT,
27323 unix_glProgramUniform2f,
27324 unix_glProgramUniform2fEXT,
27325 unix_glProgramUniform2fv,
27326 unix_glProgramUniform2fvEXT,
27327 unix_glProgramUniform2i,
27328 unix_glProgramUniform2i64ARB,
27329 unix_glProgramUniform2i64NV,
27330 unix_glProgramUniform2i64vARB,
27331 unix_glProgramUniform2i64vNV,
27332 unix_glProgramUniform2iEXT,
27333 unix_glProgramUniform2iv,
27334 unix_glProgramUniform2ivEXT,
27335 unix_glProgramUniform2ui,
27336 unix_glProgramUniform2ui64ARB,
27337 unix_glProgramUniform2ui64NV,
27338 unix_glProgramUniform2ui64vARB,
27339 unix_glProgramUniform2ui64vNV,
27340 unix_glProgramUniform2uiEXT,
27341 unix_glProgramUniform2uiv,
27342 unix_glProgramUniform2uivEXT,
27343 unix_glProgramUniform3d,
27344 unix_glProgramUniform3dEXT,
27345 unix_glProgramUniform3dv,
27346 unix_glProgramUniform3dvEXT,
27347 unix_glProgramUniform3f,
27348 unix_glProgramUniform3fEXT,
27349 unix_glProgramUniform3fv,
27350 unix_glProgramUniform3fvEXT,
27351 unix_glProgramUniform3i,
27352 unix_glProgramUniform3i64ARB,
27353 unix_glProgramUniform3i64NV,
27354 unix_glProgramUniform3i64vARB,
27355 unix_glProgramUniform3i64vNV,
27356 unix_glProgramUniform3iEXT,
27357 unix_glProgramUniform3iv,
27358 unix_glProgramUniform3ivEXT,
27359 unix_glProgramUniform3ui,
27360 unix_glProgramUniform3ui64ARB,
27361 unix_glProgramUniform3ui64NV,
27362 unix_glProgramUniform3ui64vARB,
27363 unix_glProgramUniform3ui64vNV,
27364 unix_glProgramUniform3uiEXT,
27365 unix_glProgramUniform3uiv,
27366 unix_glProgramUniform3uivEXT,
27367 unix_glProgramUniform4d,
27368 unix_glProgramUniform4dEXT,
27369 unix_glProgramUniform4dv,
27370 unix_glProgramUniform4dvEXT,
27371 unix_glProgramUniform4f,
27372 unix_glProgramUniform4fEXT,
27373 unix_glProgramUniform4fv,
27374 unix_glProgramUniform4fvEXT,
27375 unix_glProgramUniform4i,
27376 unix_glProgramUniform4i64ARB,
27377 unix_glProgramUniform4i64NV,
27378 unix_glProgramUniform4i64vARB,
27379 unix_glProgramUniform4i64vNV,
27380 unix_glProgramUniform4iEXT,
27381 unix_glProgramUniform4iv,
27382 unix_glProgramUniform4ivEXT,
27383 unix_glProgramUniform4ui,
27384 unix_glProgramUniform4ui64ARB,
27385 unix_glProgramUniform4ui64NV,
27386 unix_glProgramUniform4ui64vARB,
27387 unix_glProgramUniform4ui64vNV,
27388 unix_glProgramUniform4uiEXT,
27389 unix_glProgramUniform4uiv,
27390 unix_glProgramUniform4uivEXT,
27391 unix_glProgramUniformHandleui64ARB,
27392 unix_glProgramUniformHandleui64NV,
27393 unix_glProgramUniformHandleui64vARB,
27394 unix_glProgramUniformHandleui64vNV,
27395 unix_glProgramUniformMatrix2dv,
27396 unix_glProgramUniformMatrix2dvEXT,
27397 unix_glProgramUniformMatrix2fv,
27398 unix_glProgramUniformMatrix2fvEXT,
27399 unix_glProgramUniformMatrix2x3dv,
27400 unix_glProgramUniformMatrix2x3dvEXT,
27401 unix_glProgramUniformMatrix2x3fv,
27402 unix_glProgramUniformMatrix2x3fvEXT,
27403 unix_glProgramUniformMatrix2x4dv,
27404 unix_glProgramUniformMatrix2x4dvEXT,
27405 unix_glProgramUniformMatrix2x4fv,
27406 unix_glProgramUniformMatrix2x4fvEXT,
27407 unix_glProgramUniformMatrix3dv,
27408 unix_glProgramUniformMatrix3dvEXT,
27409 unix_glProgramUniformMatrix3fv,
27410 unix_glProgramUniformMatrix3fvEXT,
27411 unix_glProgramUniformMatrix3x2dv,
27412 unix_glProgramUniformMatrix3x2dvEXT,
27413 unix_glProgramUniformMatrix3x2fv,
27414 unix_glProgramUniformMatrix3x2fvEXT,
27415 unix_glProgramUniformMatrix3x4dv,
27416 unix_glProgramUniformMatrix3x4dvEXT,
27417 unix_glProgramUniformMatrix3x4fv,
27418 unix_glProgramUniformMatrix3x4fvEXT,
27419 unix_glProgramUniformMatrix4dv,
27420 unix_glProgramUniformMatrix4dvEXT,
27421 unix_glProgramUniformMatrix4fv,
27422 unix_glProgramUniformMatrix4fvEXT,
27423 unix_glProgramUniformMatrix4x2dv,
27424 unix_glProgramUniformMatrix4x2dvEXT,
27425 unix_glProgramUniformMatrix4x2fv,
27426 unix_glProgramUniformMatrix4x2fvEXT,
27427 unix_glProgramUniformMatrix4x3dv,
27428 unix_glProgramUniformMatrix4x3dvEXT,
27429 unix_glProgramUniformMatrix4x3fv,
27430 unix_glProgramUniformMatrix4x3fvEXT,
27431 unix_glProgramUniformui64NV,
27432 unix_glProgramUniformui64vNV,
27433 unix_glProgramVertexLimitNV,
27434 unix_glProvokingVertex,
27435 unix_glProvokingVertexEXT,
27436 unix_glPushClientAttribDefaultEXT,
27437 unix_glPushDebugGroup,
27438 unix_glPushGroupMarkerEXT,
27439 unix_glQueryCounter,
27440 unix_glQueryMatrixxOES,
27441 unix_glQueryObjectParameteruiAMD,
27442 unix_glQueryResourceNV,
27443 unix_glQueryResourceTagNV,
27444 unix_glRasterPos2xOES,
27445 unix_glRasterPos2xvOES,
27446 unix_glRasterPos3xOES,
27447 unix_glRasterPos3xvOES,
27448 unix_glRasterPos4xOES,
27449 unix_glRasterPos4xvOES,
27450 unix_glRasterSamplesEXT,
27451 unix_glReadBufferRegion,
27452 unix_glReadInstrumentsSGIX,
27453 unix_glReadnPixels,
27454 unix_glReadnPixelsARB,
27455 unix_glRectxOES,
27456 unix_glRectxvOES,
27457 unix_glReferencePlaneSGIX,
27458 unix_glReleaseKeyedMutexWin32EXT,
27459 unix_glReleaseShaderCompiler,
27460 unix_glRenderGpuMaskNV,
27461 unix_glRenderbufferStorage,
27462 unix_glRenderbufferStorageEXT,
27463 unix_glRenderbufferStorageMultisample,
27464 unix_glRenderbufferStorageMultisampleAdvancedAMD,
27465 unix_glRenderbufferStorageMultisampleCoverageNV,
27466 unix_glRenderbufferStorageMultisampleEXT,
27467 unix_glReplacementCodePointerSUN,
27468 unix_glReplacementCodeubSUN,
27469 unix_glReplacementCodeubvSUN,
27470 unix_glReplacementCodeuiColor3fVertex3fSUN,
27471 unix_glReplacementCodeuiColor3fVertex3fvSUN,
27472 unix_glReplacementCodeuiColor4fNormal3fVertex3fSUN,
27473 unix_glReplacementCodeuiColor4fNormal3fVertex3fvSUN,
27474 unix_glReplacementCodeuiColor4ubVertex3fSUN,
27475 unix_glReplacementCodeuiColor4ubVertex3fvSUN,
27476 unix_glReplacementCodeuiNormal3fVertex3fSUN,
27477 unix_glReplacementCodeuiNormal3fVertex3fvSUN,
27478 unix_glReplacementCodeuiSUN,
27479 unix_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN,
27480 unix_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN,
27481 unix_glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN,
27482 unix_glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN,
27483 unix_glReplacementCodeuiTexCoord2fVertex3fSUN,
27484 unix_glReplacementCodeuiTexCoord2fVertex3fvSUN,
27485 unix_glReplacementCodeuiVertex3fSUN,
27486 unix_glReplacementCodeuiVertex3fvSUN,
27487 unix_glReplacementCodeuivSUN,
27488 unix_glReplacementCodeusSUN,
27489 unix_glReplacementCodeusvSUN,
27490 unix_glRequestResidentProgramsNV,
27491 unix_glResetHistogram,
27492 unix_glResetHistogramEXT,
27493 unix_glResetMemoryObjectParameterNV,
27494 unix_glResetMinmax,
27495 unix_glResetMinmaxEXT,
27496 unix_glResizeBuffersMESA,
27497 unix_glResolveDepthValuesNV,
27498 unix_glResumeTransformFeedback,
27499 unix_glResumeTransformFeedbackNV,
27500 unix_glRotatexOES,
27501 unix_glSampleCoverage,
27502 unix_glSampleCoverageARB,
27503 unix_glSampleMapATI,
27504 unix_glSampleMaskEXT,
27505 unix_glSampleMaskIndexedNV,
27506 unix_glSampleMaskSGIS,
27507 unix_glSampleMaski,
27508 unix_glSamplePatternEXT,
27509 unix_glSamplePatternSGIS,
27510 unix_glSamplerParameterIiv,
27511 unix_glSamplerParameterIuiv,
27512 unix_glSamplerParameterf,
27513 unix_glSamplerParameterfv,
27514 unix_glSamplerParameteri,
27515 unix_glSamplerParameteriv,
27516 unix_glScalexOES,
27517 unix_glScissorArrayv,
27518 unix_glScissorExclusiveArrayvNV,
27519 unix_glScissorExclusiveNV,
27520 unix_glScissorIndexed,
27521 unix_glScissorIndexedv,
27522 unix_glSecondaryColor3b,
27523 unix_glSecondaryColor3bEXT,
27524 unix_glSecondaryColor3bv,
27525 unix_glSecondaryColor3bvEXT,
27526 unix_glSecondaryColor3d,
27527 unix_glSecondaryColor3dEXT,
27528 unix_glSecondaryColor3dv,
27529 unix_glSecondaryColor3dvEXT,
27530 unix_glSecondaryColor3f,
27531 unix_glSecondaryColor3fEXT,
27532 unix_glSecondaryColor3fv,
27533 unix_glSecondaryColor3fvEXT,
27534 unix_glSecondaryColor3hNV,
27535 unix_glSecondaryColor3hvNV,
27536 unix_glSecondaryColor3i,
27537 unix_glSecondaryColor3iEXT,
27538 unix_glSecondaryColor3iv,
27539 unix_glSecondaryColor3ivEXT,
27540 unix_glSecondaryColor3s,
27541 unix_glSecondaryColor3sEXT,
27542 unix_glSecondaryColor3sv,
27543 unix_glSecondaryColor3svEXT,
27544 unix_glSecondaryColor3ub,
27545 unix_glSecondaryColor3ubEXT,
27546 unix_glSecondaryColor3ubv,
27547 unix_glSecondaryColor3ubvEXT,
27548 unix_glSecondaryColor3ui,
27549 unix_glSecondaryColor3uiEXT,
27550 unix_glSecondaryColor3uiv,
27551 unix_glSecondaryColor3uivEXT,
27552 unix_glSecondaryColor3us,
27553 unix_glSecondaryColor3usEXT,
27554 unix_glSecondaryColor3usv,
27555 unix_glSecondaryColor3usvEXT,
27556 unix_glSecondaryColorFormatNV,
27557 unix_glSecondaryColorP3ui,
27558 unix_glSecondaryColorP3uiv,
27559 unix_glSecondaryColorPointer,
27560 unix_glSecondaryColorPointerEXT,
27561 unix_glSecondaryColorPointerListIBM,
27562 unix_glSelectPerfMonitorCountersAMD,
27563 unix_glSelectTextureCoordSetSGIS,
27564 unix_glSelectTextureSGIS,
27565 unix_glSemaphoreParameterui64vEXT,
27566 unix_glSeparableFilter2D,
27567 unix_glSeparableFilter2DEXT,
27568 unix_glSetFenceAPPLE,
27569 unix_glSetFenceNV,
27570 unix_glSetFragmentShaderConstantATI,
27571 unix_glSetInvariantEXT,
27572 unix_glSetLocalConstantEXT,
27573 unix_glSetMultisamplefvAMD,
27574 unix_glShaderBinary,
27575 unix_glShaderOp1EXT,
27576 unix_glShaderOp2EXT,
27577 unix_glShaderOp3EXT,
27578 unix_glShaderSource,
27579 unix_glShaderSourceARB,
27580 unix_glShaderStorageBlockBinding,
27581 unix_glShadingRateImageBarrierNV,
27582 unix_glShadingRateImagePaletteNV,
27583 unix_glShadingRateSampleOrderCustomNV,
27584 unix_glShadingRateSampleOrderNV,
27585 unix_glSharpenTexFuncSGIS,
27586 unix_glSignalSemaphoreEXT,
27587 unix_glSignalSemaphoreui64NVX,
27588 unix_glSignalVkFenceNV,
27589 unix_glSignalVkSemaphoreNV,
27590 unix_glSpecializeShader,
27591 unix_glSpecializeShaderARB,
27592 unix_glSpriteParameterfSGIX,
27593 unix_glSpriteParameterfvSGIX,
27594 unix_glSpriteParameteriSGIX,
27595 unix_glSpriteParameterivSGIX,
27596 unix_glStartInstrumentsSGIX,
27597 unix_glStateCaptureNV,
27598 unix_glStencilClearTagEXT,
27599 unix_glStencilFillPathInstancedNV,
27600 unix_glStencilFillPathNV,
27601 unix_glStencilFuncSeparate,
27602 unix_glStencilFuncSeparateATI,
27603 unix_glStencilMaskSeparate,
27604 unix_glStencilOpSeparate,
27605 unix_glStencilOpSeparateATI,
27606 unix_glStencilOpValueAMD,
27607 unix_glStencilStrokePathInstancedNV,
27608 unix_glStencilStrokePathNV,
27609 unix_glStencilThenCoverFillPathInstancedNV,
27610 unix_glStencilThenCoverFillPathNV,
27611 unix_glStencilThenCoverStrokePathInstancedNV,
27612 unix_glStencilThenCoverStrokePathNV,
27613 unix_glStopInstrumentsSGIX,
27614 unix_glStringMarkerGREMEDY,
27615 unix_glSubpixelPrecisionBiasNV,
27616 unix_glSwizzleEXT,
27617 unix_glSyncTextureINTEL,
27618 unix_glTagSampleBufferSGIX,
27619 unix_glTangent3bEXT,
27620 unix_glTangent3bvEXT,
27621 unix_glTangent3dEXT,
27622 unix_glTangent3dvEXT,
27623 unix_glTangent3fEXT,
27624 unix_glTangent3fvEXT,
27625 unix_glTangent3iEXT,
27626 unix_glTangent3ivEXT,
27627 unix_glTangent3sEXT,
27628 unix_glTangent3svEXT,
27629 unix_glTangentPointerEXT,
27630 unix_glTbufferMask3DFX,
27631 unix_glTessellationFactorAMD,
27632 unix_glTessellationModeAMD,
27633 unix_glTestFenceAPPLE,
27634 unix_glTestFenceNV,
27635 unix_glTestObjectAPPLE,
27636 unix_glTexAttachMemoryNV,
27637 unix_glTexBuffer,
27638 unix_glTexBufferARB,
27639 unix_glTexBufferEXT,
27640 unix_glTexBufferRange,
27641 unix_glTexBumpParameterfvATI,
27642 unix_glTexBumpParameterivATI,
27643 unix_glTexCoord1bOES,
27644 unix_glTexCoord1bvOES,
27645 unix_glTexCoord1hNV,
27646 unix_glTexCoord1hvNV,
27647 unix_glTexCoord1xOES,
27648 unix_glTexCoord1xvOES,
27649 unix_glTexCoord2bOES,
27650 unix_glTexCoord2bvOES,
27651 unix_glTexCoord2fColor3fVertex3fSUN,
27652 unix_glTexCoord2fColor3fVertex3fvSUN,
27653 unix_glTexCoord2fColor4fNormal3fVertex3fSUN,
27654 unix_glTexCoord2fColor4fNormal3fVertex3fvSUN,
27655 unix_glTexCoord2fColor4ubVertex3fSUN,
27656 unix_glTexCoord2fColor4ubVertex3fvSUN,
27657 unix_glTexCoord2fNormal3fVertex3fSUN,
27658 unix_glTexCoord2fNormal3fVertex3fvSUN,
27659 unix_glTexCoord2fVertex3fSUN,
27660 unix_glTexCoord2fVertex3fvSUN,
27661 unix_glTexCoord2hNV,
27662 unix_glTexCoord2hvNV,
27663 unix_glTexCoord2xOES,
27664 unix_glTexCoord2xvOES,
27665 unix_glTexCoord3bOES,
27666 unix_glTexCoord3bvOES,
27667 unix_glTexCoord3hNV,
27668 unix_glTexCoord3hvNV,
27669 unix_glTexCoord3xOES,
27670 unix_glTexCoord3xvOES,
27671 unix_glTexCoord4bOES,
27672 unix_glTexCoord4bvOES,
27673 unix_glTexCoord4fColor4fNormal3fVertex4fSUN,
27674 unix_glTexCoord4fColor4fNormal3fVertex4fvSUN,
27675 unix_glTexCoord4fVertex4fSUN,
27676 unix_glTexCoord4fVertex4fvSUN,
27677 unix_glTexCoord4hNV,
27678 unix_glTexCoord4hvNV,
27679 unix_glTexCoord4xOES,
27680 unix_glTexCoord4xvOES,
27681 unix_glTexCoordFormatNV,
27682 unix_glTexCoordP1ui,
27683 unix_glTexCoordP1uiv,
27684 unix_glTexCoordP2ui,
27685 unix_glTexCoordP2uiv,
27686 unix_glTexCoordP3ui,
27687 unix_glTexCoordP3uiv,
27688 unix_glTexCoordP4ui,
27689 unix_glTexCoordP4uiv,
27690 unix_glTexCoordPointerEXT,
27691 unix_glTexCoordPointerListIBM,
27692 unix_glTexCoordPointervINTEL,
27693 unix_glTexEnvxOES,
27694 unix_glTexEnvxvOES,
27695 unix_glTexFilterFuncSGIS,
27696 unix_glTexGenxOES,
27697 unix_glTexGenxvOES,
27698 unix_glTexImage2DMultisample,
27699 unix_glTexImage2DMultisampleCoverageNV,
27700 unix_glTexImage3D,
27701 unix_glTexImage3DEXT,
27702 unix_glTexImage3DMultisample,
27703 unix_glTexImage3DMultisampleCoverageNV,
27704 unix_glTexImage4DSGIS,
27705 unix_glTexPageCommitmentARB,
27706 unix_glTexParameterIiv,
27707 unix_glTexParameterIivEXT,
27708 unix_glTexParameterIuiv,
27709 unix_glTexParameterIuivEXT,
27710 unix_glTexParameterxOES,
27711 unix_glTexParameterxvOES,
27712 unix_glTexRenderbufferNV,
27713 unix_glTexStorage1D,
27714 unix_glTexStorage2D,
27715 unix_glTexStorage2DMultisample,
27716 unix_glTexStorage3D,
27717 unix_glTexStorage3DMultisample,
27718 unix_glTexStorageMem1DEXT,
27719 unix_glTexStorageMem2DEXT,
27720 unix_glTexStorageMem2DMultisampleEXT,
27721 unix_glTexStorageMem3DEXT,
27722 unix_glTexStorageMem3DMultisampleEXT,
27723 unix_glTexStorageSparseAMD,
27724 unix_glTexSubImage1DEXT,
27725 unix_glTexSubImage2DEXT,
27726 unix_glTexSubImage3D,
27727 unix_glTexSubImage3DEXT,
27728 unix_glTexSubImage4DSGIS,
27729 unix_glTextureAttachMemoryNV,
27730 unix_glTextureBarrier,
27731 unix_glTextureBarrierNV,
27732 unix_glTextureBuffer,
27733 unix_glTextureBufferEXT,
27734 unix_glTextureBufferRange,
27735 unix_glTextureBufferRangeEXT,
27736 unix_glTextureColorMaskSGIS,
27737 unix_glTextureImage1DEXT,
27738 unix_glTextureImage2DEXT,
27739 unix_glTextureImage2DMultisampleCoverageNV,
27740 unix_glTextureImage2DMultisampleNV,
27741 unix_glTextureImage3DEXT,
27742 unix_glTextureImage3DMultisampleCoverageNV,
27743 unix_glTextureImage3DMultisampleNV,
27744 unix_glTextureLightEXT,
27745 unix_glTextureMaterialEXT,
27746 unix_glTextureNormalEXT,
27747 unix_glTexturePageCommitmentEXT,
27748 unix_glTextureParameterIiv,
27749 unix_glTextureParameterIivEXT,
27750 unix_glTextureParameterIuiv,
27751 unix_glTextureParameterIuivEXT,
27752 unix_glTextureParameterf,
27753 unix_glTextureParameterfEXT,
27754 unix_glTextureParameterfv,
27755 unix_glTextureParameterfvEXT,
27756 unix_glTextureParameteri,
27757 unix_glTextureParameteriEXT,
27758 unix_glTextureParameteriv,
27759 unix_glTextureParameterivEXT,
27760 unix_glTextureRangeAPPLE,
27761 unix_glTextureRenderbufferEXT,
27762 unix_glTextureStorage1D,
27763 unix_glTextureStorage1DEXT,
27764 unix_glTextureStorage2D,
27765 unix_glTextureStorage2DEXT,
27766 unix_glTextureStorage2DMultisample,
27767 unix_glTextureStorage2DMultisampleEXT,
27768 unix_glTextureStorage3D,
27769 unix_glTextureStorage3DEXT,
27770 unix_glTextureStorage3DMultisample,
27771 unix_glTextureStorage3DMultisampleEXT,
27772 unix_glTextureStorageMem1DEXT,
27773 unix_glTextureStorageMem2DEXT,
27774 unix_glTextureStorageMem2DMultisampleEXT,
27775 unix_glTextureStorageMem3DEXT,
27776 unix_glTextureStorageMem3DMultisampleEXT,
27777 unix_glTextureStorageSparseAMD,
27778 unix_glTextureSubImage1D,
27779 unix_glTextureSubImage1DEXT,
27780 unix_glTextureSubImage2D,
27781 unix_glTextureSubImage2DEXT,
27782 unix_glTextureSubImage3D,
27783 unix_glTextureSubImage3DEXT,
27784 unix_glTextureView,
27785 unix_glTrackMatrixNV,
27786 unix_glTransformFeedbackAttribsNV,
27787 unix_glTransformFeedbackBufferBase,
27788 unix_glTransformFeedbackBufferRange,
27789 unix_glTransformFeedbackStreamAttribsNV,
27790 unix_glTransformFeedbackVaryings,
27791 unix_glTransformFeedbackVaryingsEXT,
27792 unix_glTransformFeedbackVaryingsNV,
27793 unix_glTransformPathNV,
27794 unix_glTranslatexOES,
27795 unix_glUniform1d,
27796 unix_glUniform1dv,
27797 unix_glUniform1f,
27798 unix_glUniform1fARB,
27799 unix_glUniform1fv,
27800 unix_glUniform1fvARB,
27801 unix_glUniform1i,
27802 unix_glUniform1i64ARB,
27803 unix_glUniform1i64NV,
27804 unix_glUniform1i64vARB,
27805 unix_glUniform1i64vNV,
27806 unix_glUniform1iARB,
27807 unix_glUniform1iv,
27808 unix_glUniform1ivARB,
27809 unix_glUniform1ui,
27810 unix_glUniform1ui64ARB,
27811 unix_glUniform1ui64NV,
27812 unix_glUniform1ui64vARB,
27813 unix_glUniform1ui64vNV,
27814 unix_glUniform1uiEXT,
27815 unix_glUniform1uiv,
27816 unix_glUniform1uivEXT,
27817 unix_glUniform2d,
27818 unix_glUniform2dv,
27819 unix_glUniform2f,
27820 unix_glUniform2fARB,
27821 unix_glUniform2fv,
27822 unix_glUniform2fvARB,
27823 unix_glUniform2i,
27824 unix_glUniform2i64ARB,
27825 unix_glUniform2i64NV,
27826 unix_glUniform2i64vARB,
27827 unix_glUniform2i64vNV,
27828 unix_glUniform2iARB,
27829 unix_glUniform2iv,
27830 unix_glUniform2ivARB,
27831 unix_glUniform2ui,
27832 unix_glUniform2ui64ARB,
27833 unix_glUniform2ui64NV,
27834 unix_glUniform2ui64vARB,
27835 unix_glUniform2ui64vNV,
27836 unix_glUniform2uiEXT,
27837 unix_glUniform2uiv,
27838 unix_glUniform2uivEXT,
27839 unix_glUniform3d,
27840 unix_glUniform3dv,
27841 unix_glUniform3f,
27842 unix_glUniform3fARB,
27843 unix_glUniform3fv,
27844 unix_glUniform3fvARB,
27845 unix_glUniform3i,
27846 unix_glUniform3i64ARB,
27847 unix_glUniform3i64NV,
27848 unix_glUniform3i64vARB,
27849 unix_glUniform3i64vNV,
27850 unix_glUniform3iARB,
27851 unix_glUniform3iv,
27852 unix_glUniform3ivARB,
27853 unix_glUniform3ui,
27854 unix_glUniform3ui64ARB,
27855 unix_glUniform3ui64NV,
27856 unix_glUniform3ui64vARB,
27857 unix_glUniform3ui64vNV,
27858 unix_glUniform3uiEXT,
27859 unix_glUniform3uiv,
27860 unix_glUniform3uivEXT,
27861 unix_glUniform4d,
27862 unix_glUniform4dv,
27863 unix_glUniform4f,
27864 unix_glUniform4fARB,
27865 unix_glUniform4fv,
27866 unix_glUniform4fvARB,
27867 unix_glUniform4i,
27868 unix_glUniform4i64ARB,
27869 unix_glUniform4i64NV,
27870 unix_glUniform4i64vARB,
27871 unix_glUniform4i64vNV,
27872 unix_glUniform4iARB,
27873 unix_glUniform4iv,
27874 unix_glUniform4ivARB,
27875 unix_glUniform4ui,
27876 unix_glUniform4ui64ARB,
27877 unix_glUniform4ui64NV,
27878 unix_glUniform4ui64vARB,
27879 unix_glUniform4ui64vNV,
27880 unix_glUniform4uiEXT,
27881 unix_glUniform4uiv,
27882 unix_glUniform4uivEXT,
27883 unix_glUniformBlockBinding,
27884 unix_glUniformBufferEXT,
27885 unix_glUniformHandleui64ARB,
27886 unix_glUniformHandleui64NV,
27887 unix_glUniformHandleui64vARB,
27888 unix_glUniformHandleui64vNV,
27889 unix_glUniformMatrix2dv,
27890 unix_glUniformMatrix2fv,
27891 unix_glUniformMatrix2fvARB,
27892 unix_glUniformMatrix2x3dv,
27893 unix_glUniformMatrix2x3fv,
27894 unix_glUniformMatrix2x4dv,
27895 unix_glUniformMatrix2x4fv,
27896 unix_glUniformMatrix3dv,
27897 unix_glUniformMatrix3fv,
27898 unix_glUniformMatrix3fvARB,
27899 unix_glUniformMatrix3x2dv,
27900 unix_glUniformMatrix3x2fv,
27901 unix_glUniformMatrix3x4dv,
27902 unix_glUniformMatrix3x4fv,
27903 unix_glUniformMatrix4dv,
27904 unix_glUniformMatrix4fv,
27905 unix_glUniformMatrix4fvARB,
27906 unix_glUniformMatrix4x2dv,
27907 unix_glUniformMatrix4x2fv,
27908 unix_glUniformMatrix4x3dv,
27909 unix_glUniformMatrix4x3fv,
27910 unix_glUniformSubroutinesuiv,
27911 unix_glUniformui64NV,
27912 unix_glUniformui64vNV,
27913 unix_glUnlockArraysEXT,
27914 unix_glUnmapBuffer,
27915 unix_glUnmapBufferARB,
27916 unix_glUnmapNamedBuffer,
27917 unix_glUnmapNamedBufferEXT,
27918 unix_glUnmapObjectBufferATI,
27919 unix_glUnmapTexture2DINTEL,
27920 unix_glUpdateObjectBufferATI,
27921 unix_glUploadGpuMaskNVX,
27922 unix_glUseProgram,
27923 unix_glUseProgramObjectARB,
27924 unix_glUseProgramStages,
27925 unix_glUseShaderProgramEXT,
27926 unix_glVDPAUFiniNV,
27927 unix_glVDPAUGetSurfaceivNV,
27928 unix_glVDPAUInitNV,
27929 unix_glVDPAUIsSurfaceNV,
27930 unix_glVDPAUMapSurfacesNV,
27931 unix_glVDPAURegisterOutputSurfaceNV,
27932 unix_glVDPAURegisterVideoSurfaceNV,
27933 unix_glVDPAURegisterVideoSurfaceWithPictureStructureNV,
27934 unix_glVDPAUSurfaceAccessNV,
27935 unix_glVDPAUUnmapSurfacesNV,
27936 unix_glVDPAUUnregisterSurfaceNV,
27937 unix_glValidateProgram,
27938 unix_glValidateProgramARB,
27939 unix_glValidateProgramPipeline,
27940 unix_glVariantArrayObjectATI,
27941 unix_glVariantPointerEXT,
27942 unix_glVariantbvEXT,
27943 unix_glVariantdvEXT,
27944 unix_glVariantfvEXT,
27945 unix_glVariantivEXT,
27946 unix_glVariantsvEXT,
27947 unix_glVariantubvEXT,
27948 unix_glVariantuivEXT,
27949 unix_glVariantusvEXT,
27950 unix_glVertex2bOES,
27951 unix_glVertex2bvOES,
27952 unix_glVertex2hNV,
27953 unix_glVertex2hvNV,
27954 unix_glVertex2xOES,
27955 unix_glVertex2xvOES,
27956 unix_glVertex3bOES,
27957 unix_glVertex3bvOES,
27958 unix_glVertex3hNV,
27959 unix_glVertex3hvNV,
27960 unix_glVertex3xOES,
27961 unix_glVertex3xvOES,
27962 unix_glVertex4bOES,
27963 unix_glVertex4bvOES,
27964 unix_glVertex4hNV,
27965 unix_glVertex4hvNV,
27966 unix_glVertex4xOES,
27967 unix_glVertex4xvOES,
27968 unix_glVertexArrayAttribBinding,
27969 unix_glVertexArrayAttribFormat,
27970 unix_glVertexArrayAttribIFormat,
27971 unix_glVertexArrayAttribLFormat,
27972 unix_glVertexArrayBindVertexBufferEXT,
27973 unix_glVertexArrayBindingDivisor,
27974 unix_glVertexArrayColorOffsetEXT,
27975 unix_glVertexArrayEdgeFlagOffsetEXT,
27976 unix_glVertexArrayElementBuffer,
27977 unix_glVertexArrayFogCoordOffsetEXT,
27978 unix_glVertexArrayIndexOffsetEXT,
27979 unix_glVertexArrayMultiTexCoordOffsetEXT,
27980 unix_glVertexArrayNormalOffsetEXT,
27981 unix_glVertexArrayParameteriAPPLE,
27982 unix_glVertexArrayRangeAPPLE,
27983 unix_glVertexArrayRangeNV,
27984 unix_glVertexArraySecondaryColorOffsetEXT,
27985 unix_glVertexArrayTexCoordOffsetEXT,
27986 unix_glVertexArrayVertexAttribBindingEXT,
27987 unix_glVertexArrayVertexAttribDivisorEXT,
27988 unix_glVertexArrayVertexAttribFormatEXT,
27989 unix_glVertexArrayVertexAttribIFormatEXT,
27990 unix_glVertexArrayVertexAttribIOffsetEXT,
27991 unix_glVertexArrayVertexAttribLFormatEXT,
27992 unix_glVertexArrayVertexAttribLOffsetEXT,
27993 unix_glVertexArrayVertexAttribOffsetEXT,
27994 unix_glVertexArrayVertexBindingDivisorEXT,
27995 unix_glVertexArrayVertexBuffer,
27996 unix_glVertexArrayVertexBuffers,
27997 unix_glVertexArrayVertexOffsetEXT,
27998 unix_glVertexAttrib1d,
27999 unix_glVertexAttrib1dARB,
28000 unix_glVertexAttrib1dNV,
28001 unix_glVertexAttrib1dv,
28002 unix_glVertexAttrib1dvARB,
28003 unix_glVertexAttrib1dvNV,
28004 unix_glVertexAttrib1f,
28005 unix_glVertexAttrib1fARB,
28006 unix_glVertexAttrib1fNV,
28007 unix_glVertexAttrib1fv,
28008 unix_glVertexAttrib1fvARB,
28009 unix_glVertexAttrib1fvNV,
28010 unix_glVertexAttrib1hNV,
28011 unix_glVertexAttrib1hvNV,
28012 unix_glVertexAttrib1s,
28013 unix_glVertexAttrib1sARB,
28014 unix_glVertexAttrib1sNV,
28015 unix_glVertexAttrib1sv,
28016 unix_glVertexAttrib1svARB,
28017 unix_glVertexAttrib1svNV,
28018 unix_glVertexAttrib2d,
28019 unix_glVertexAttrib2dARB,
28020 unix_glVertexAttrib2dNV,
28021 unix_glVertexAttrib2dv,
28022 unix_glVertexAttrib2dvARB,
28023 unix_glVertexAttrib2dvNV,
28024 unix_glVertexAttrib2f,
28025 unix_glVertexAttrib2fARB,
28026 unix_glVertexAttrib2fNV,
28027 unix_glVertexAttrib2fv,
28028 unix_glVertexAttrib2fvARB,
28029 unix_glVertexAttrib2fvNV,
28030 unix_glVertexAttrib2hNV,
28031 unix_glVertexAttrib2hvNV,
28032 unix_glVertexAttrib2s,
28033 unix_glVertexAttrib2sARB,
28034 unix_glVertexAttrib2sNV,
28035 unix_glVertexAttrib2sv,
28036 unix_glVertexAttrib2svARB,
28037 unix_glVertexAttrib2svNV,
28038 unix_glVertexAttrib3d,
28039 unix_glVertexAttrib3dARB,
28040 unix_glVertexAttrib3dNV,
28041 unix_glVertexAttrib3dv,
28042 unix_glVertexAttrib3dvARB,
28043 unix_glVertexAttrib3dvNV,
28044 unix_glVertexAttrib3f,
28045 unix_glVertexAttrib3fARB,
28046 unix_glVertexAttrib3fNV,
28047 unix_glVertexAttrib3fv,
28048 unix_glVertexAttrib3fvARB,
28049 unix_glVertexAttrib3fvNV,
28050 unix_glVertexAttrib3hNV,
28051 unix_glVertexAttrib3hvNV,
28052 unix_glVertexAttrib3s,
28053 unix_glVertexAttrib3sARB,
28054 unix_glVertexAttrib3sNV,
28055 unix_glVertexAttrib3sv,
28056 unix_glVertexAttrib3svARB,
28057 unix_glVertexAttrib3svNV,
28058 unix_glVertexAttrib4Nbv,
28059 unix_glVertexAttrib4NbvARB,
28060 unix_glVertexAttrib4Niv,
28061 unix_glVertexAttrib4NivARB,
28062 unix_glVertexAttrib4Nsv,
28063 unix_glVertexAttrib4NsvARB,
28064 unix_glVertexAttrib4Nub,
28065 unix_glVertexAttrib4NubARB,
28066 unix_glVertexAttrib4Nubv,
28067 unix_glVertexAttrib4NubvARB,
28068 unix_glVertexAttrib4Nuiv,
28069 unix_glVertexAttrib4NuivARB,
28070 unix_glVertexAttrib4Nusv,
28071 unix_glVertexAttrib4NusvARB,
28072 unix_glVertexAttrib4bv,
28073 unix_glVertexAttrib4bvARB,
28074 unix_glVertexAttrib4d,
28075 unix_glVertexAttrib4dARB,
28076 unix_glVertexAttrib4dNV,
28077 unix_glVertexAttrib4dv,
28078 unix_glVertexAttrib4dvARB,
28079 unix_glVertexAttrib4dvNV,
28080 unix_glVertexAttrib4f,
28081 unix_glVertexAttrib4fARB,
28082 unix_glVertexAttrib4fNV,
28083 unix_glVertexAttrib4fv,
28084 unix_glVertexAttrib4fvARB,
28085 unix_glVertexAttrib4fvNV,
28086 unix_glVertexAttrib4hNV,
28087 unix_glVertexAttrib4hvNV,
28088 unix_glVertexAttrib4iv,
28089 unix_glVertexAttrib4ivARB,
28090 unix_glVertexAttrib4s,
28091 unix_glVertexAttrib4sARB,
28092 unix_glVertexAttrib4sNV,
28093 unix_glVertexAttrib4sv,
28094 unix_glVertexAttrib4svARB,
28095 unix_glVertexAttrib4svNV,
28096 unix_glVertexAttrib4ubNV,
28097 unix_glVertexAttrib4ubv,
28098 unix_glVertexAttrib4ubvARB,
28099 unix_glVertexAttrib4ubvNV,
28100 unix_glVertexAttrib4uiv,
28101 unix_glVertexAttrib4uivARB,
28102 unix_glVertexAttrib4usv,
28103 unix_glVertexAttrib4usvARB,
28104 unix_glVertexAttribArrayObjectATI,
28105 unix_glVertexAttribBinding,
28106 unix_glVertexAttribDivisor,
28107 unix_glVertexAttribDivisorARB,
28108 unix_glVertexAttribFormat,
28109 unix_glVertexAttribFormatNV,
28110 unix_glVertexAttribI1i,
28111 unix_glVertexAttribI1iEXT,
28112 unix_glVertexAttribI1iv,
28113 unix_glVertexAttribI1ivEXT,
28114 unix_glVertexAttribI1ui,
28115 unix_glVertexAttribI1uiEXT,
28116 unix_glVertexAttribI1uiv,
28117 unix_glVertexAttribI1uivEXT,
28118 unix_glVertexAttribI2i,
28119 unix_glVertexAttribI2iEXT,
28120 unix_glVertexAttribI2iv,
28121 unix_glVertexAttribI2ivEXT,
28122 unix_glVertexAttribI2ui,
28123 unix_glVertexAttribI2uiEXT,
28124 unix_glVertexAttribI2uiv,
28125 unix_glVertexAttribI2uivEXT,
28126 unix_glVertexAttribI3i,
28127 unix_glVertexAttribI3iEXT,
28128 unix_glVertexAttribI3iv,
28129 unix_glVertexAttribI3ivEXT,
28130 unix_glVertexAttribI3ui,
28131 unix_glVertexAttribI3uiEXT,
28132 unix_glVertexAttribI3uiv,
28133 unix_glVertexAttribI3uivEXT,
28134 unix_glVertexAttribI4bv,
28135 unix_glVertexAttribI4bvEXT,
28136 unix_glVertexAttribI4i,
28137 unix_glVertexAttribI4iEXT,
28138 unix_glVertexAttribI4iv,
28139 unix_glVertexAttribI4ivEXT,
28140 unix_glVertexAttribI4sv,
28141 unix_glVertexAttribI4svEXT,
28142 unix_glVertexAttribI4ubv,
28143 unix_glVertexAttribI4ubvEXT,
28144 unix_glVertexAttribI4ui,
28145 unix_glVertexAttribI4uiEXT,
28146 unix_glVertexAttribI4uiv,
28147 unix_glVertexAttribI4uivEXT,
28148 unix_glVertexAttribI4usv,
28149 unix_glVertexAttribI4usvEXT,
28150 unix_glVertexAttribIFormat,
28151 unix_glVertexAttribIFormatNV,
28152 unix_glVertexAttribIPointer,
28153 unix_glVertexAttribIPointerEXT,
28154 unix_glVertexAttribL1d,
28155 unix_glVertexAttribL1dEXT,
28156 unix_glVertexAttribL1dv,
28157 unix_glVertexAttribL1dvEXT,
28158 unix_glVertexAttribL1i64NV,
28159 unix_glVertexAttribL1i64vNV,
28160 unix_glVertexAttribL1ui64ARB,
28161 unix_glVertexAttribL1ui64NV,
28162 unix_glVertexAttribL1ui64vARB,
28163 unix_glVertexAttribL1ui64vNV,
28164 unix_glVertexAttribL2d,
28165 unix_glVertexAttribL2dEXT,
28166 unix_glVertexAttribL2dv,
28167 unix_glVertexAttribL2dvEXT,
28168 unix_glVertexAttribL2i64NV,
28169 unix_glVertexAttribL2i64vNV,
28170 unix_glVertexAttribL2ui64NV,
28171 unix_glVertexAttribL2ui64vNV,
28172 unix_glVertexAttribL3d,
28173 unix_glVertexAttribL3dEXT,
28174 unix_glVertexAttribL3dv,
28175 unix_glVertexAttribL3dvEXT,
28176 unix_glVertexAttribL3i64NV,
28177 unix_glVertexAttribL3i64vNV,
28178 unix_glVertexAttribL3ui64NV,
28179 unix_glVertexAttribL3ui64vNV,
28180 unix_glVertexAttribL4d,
28181 unix_glVertexAttribL4dEXT,
28182 unix_glVertexAttribL4dv,
28183 unix_glVertexAttribL4dvEXT,
28184 unix_glVertexAttribL4i64NV,
28185 unix_glVertexAttribL4i64vNV,
28186 unix_glVertexAttribL4ui64NV,
28187 unix_glVertexAttribL4ui64vNV,
28188 unix_glVertexAttribLFormat,
28189 unix_glVertexAttribLFormatNV,
28190 unix_glVertexAttribLPointer,
28191 unix_glVertexAttribLPointerEXT,
28192 unix_glVertexAttribP1ui,
28193 unix_glVertexAttribP1uiv,
28194 unix_glVertexAttribP2ui,
28195 unix_glVertexAttribP2uiv,
28196 unix_glVertexAttribP3ui,
28197 unix_glVertexAttribP3uiv,
28198 unix_glVertexAttribP4ui,
28199 unix_glVertexAttribP4uiv,
28200 unix_glVertexAttribParameteriAMD,
28201 unix_glVertexAttribPointer,
28202 unix_glVertexAttribPointerARB,
28203 unix_glVertexAttribPointerNV,
28204 unix_glVertexAttribs1dvNV,
28205 unix_glVertexAttribs1fvNV,
28206 unix_glVertexAttribs1hvNV,
28207 unix_glVertexAttribs1svNV,
28208 unix_glVertexAttribs2dvNV,
28209 unix_glVertexAttribs2fvNV,
28210 unix_glVertexAttribs2hvNV,
28211 unix_glVertexAttribs2svNV,
28212 unix_glVertexAttribs3dvNV,
28213 unix_glVertexAttribs3fvNV,
28214 unix_glVertexAttribs3hvNV,
28215 unix_glVertexAttribs3svNV,
28216 unix_glVertexAttribs4dvNV,
28217 unix_glVertexAttribs4fvNV,
28218 unix_glVertexAttribs4hvNV,
28219 unix_glVertexAttribs4svNV,
28220 unix_glVertexAttribs4ubvNV,
28221 unix_glVertexBindingDivisor,
28222 unix_glVertexBlendARB,
28223 unix_glVertexBlendEnvfATI,
28224 unix_glVertexBlendEnviATI,
28225 unix_glVertexFormatNV,
28226 unix_glVertexP2ui,
28227 unix_glVertexP2uiv,
28228 unix_glVertexP3ui,
28229 unix_glVertexP3uiv,
28230 unix_glVertexP4ui,
28231 unix_glVertexP4uiv,
28232 unix_glVertexPointerEXT,
28233 unix_glVertexPointerListIBM,
28234 unix_glVertexPointervINTEL,
28235 unix_glVertexStream1dATI,
28236 unix_glVertexStream1dvATI,
28237 unix_glVertexStream1fATI,
28238 unix_glVertexStream1fvATI,
28239 unix_glVertexStream1iATI,
28240 unix_glVertexStream1ivATI,
28241 unix_glVertexStream1sATI,
28242 unix_glVertexStream1svATI,
28243 unix_glVertexStream2dATI,
28244 unix_glVertexStream2dvATI,
28245 unix_glVertexStream2fATI,
28246 unix_glVertexStream2fvATI,
28247 unix_glVertexStream2iATI,
28248 unix_glVertexStream2ivATI,
28249 unix_glVertexStream2sATI,
28250 unix_glVertexStream2svATI,
28251 unix_glVertexStream3dATI,
28252 unix_glVertexStream3dvATI,
28253 unix_glVertexStream3fATI,
28254 unix_glVertexStream3fvATI,
28255 unix_glVertexStream3iATI,
28256 unix_glVertexStream3ivATI,
28257 unix_glVertexStream3sATI,
28258 unix_glVertexStream3svATI,
28259 unix_glVertexStream4dATI,
28260 unix_glVertexStream4dvATI,
28261 unix_glVertexStream4fATI,
28262 unix_glVertexStream4fvATI,
28263 unix_glVertexStream4iATI,
28264 unix_glVertexStream4ivATI,
28265 unix_glVertexStream4sATI,
28266 unix_glVertexStream4svATI,
28267 unix_glVertexWeightPointerEXT,
28268 unix_glVertexWeightfEXT,
28269 unix_glVertexWeightfvEXT,
28270 unix_glVertexWeighthNV,
28271 unix_glVertexWeighthvNV,
28272 unix_glVideoCaptureNV,
28273 unix_glVideoCaptureStreamParameterdvNV,
28274 unix_glVideoCaptureStreamParameterfvNV,
28275 unix_glVideoCaptureStreamParameterivNV,
28276 unix_glViewportArrayv,
28277 unix_glViewportIndexedf,
28278 unix_glViewportIndexedfv,
28279 unix_glViewportPositionWScaleNV,
28280 unix_glViewportSwizzleNV,
28281 unix_glWaitSemaphoreEXT,
28282 unix_glWaitSemaphoreui64NVX,
28283 unix_glWaitSync,
28284 unix_glWaitVkSemaphoreNV,
28285 unix_glWeightPathsNV,
28286 unix_glWeightPointerARB,
28287 unix_glWeightbvARB,
28288 unix_glWeightdvARB,
28289 unix_glWeightfvARB,
28290 unix_glWeightivARB,
28291 unix_glWeightsvARB,
28292 unix_glWeightubvARB,
28293 unix_glWeightuivARB,
28294 unix_glWeightusvARB,
28295 unix_glWindowPos2d,
28296 unix_glWindowPos2dARB,
28297 unix_glWindowPos2dMESA,
28298 unix_glWindowPos2dv,
28299 unix_glWindowPos2dvARB,
28300 unix_glWindowPos2dvMESA,
28301 unix_glWindowPos2f,
28302 unix_glWindowPos2fARB,
28303 unix_glWindowPos2fMESA,
28304 unix_glWindowPos2fv,
28305 unix_glWindowPos2fvARB,
28306 unix_glWindowPos2fvMESA,
28307 unix_glWindowPos2i,
28308 unix_glWindowPos2iARB,
28309 unix_glWindowPos2iMESA,
28310 unix_glWindowPos2iv,
28311 unix_glWindowPos2ivARB,
28312 unix_glWindowPos2ivMESA,
28313 unix_glWindowPos2s,
28314 unix_glWindowPos2sARB,
28315 unix_glWindowPos2sMESA,
28316 unix_glWindowPos2sv,
28317 unix_glWindowPos2svARB,
28318 unix_glWindowPos2svMESA,
28319 unix_glWindowPos3d,
28320 unix_glWindowPos3dARB,
28321 unix_glWindowPos3dMESA,
28322 unix_glWindowPos3dv,
28323 unix_glWindowPos3dvARB,
28324 unix_glWindowPos3dvMESA,
28325 unix_glWindowPos3f,
28326 unix_glWindowPos3fARB,
28327 unix_glWindowPos3fMESA,
28328 unix_glWindowPos3fv,
28329 unix_glWindowPos3fvARB,
28330 unix_glWindowPos3fvMESA,
28331 unix_glWindowPos3i,
28332 unix_glWindowPos3iARB,
28333 unix_glWindowPos3iMESA,
28334 unix_glWindowPos3iv,
28335 unix_glWindowPos3ivARB,
28336 unix_glWindowPos3ivMESA,
28337 unix_glWindowPos3s,
28338 unix_glWindowPos3sARB,
28339 unix_glWindowPos3sMESA,
28340 unix_glWindowPos3sv,
28341 unix_glWindowPos3svARB,
28342 unix_glWindowPos3svMESA,
28343 unix_glWindowPos4dMESA,
28344 unix_glWindowPos4dvMESA,
28345 unix_glWindowPos4fMESA,
28346 unix_glWindowPos4fvMESA,
28347 unix_glWindowPos4iMESA,
28348 unix_glWindowPos4ivMESA,
28349 unix_glWindowPos4sMESA,
28350 unix_glWindowPos4svMESA,
28351 unix_glWindowRectanglesEXT,
28352 unix_glWriteMaskEXT,
28353 unix_wglAllocateMemoryNV,
28354 unix_wglBindTexImageARB,
28355 unix_wglChoosePixelFormatARB,
28356 unix_wglCreateContextAttribsARB,
28357 unix_wglCreatePbufferARB,
28358 unix_wglDestroyPbufferARB,
28359 unix_wglFreeMemoryNV,
28360 unix_wglGetCurrentReadDCARB,
28361 unix_wglGetExtensionsStringARB,
28362 unix_wglGetExtensionsStringEXT,
28363 unix_wglGetPbufferDCARB,
28364 unix_wglGetPixelFormatAttribfvARB,
28365 unix_wglGetPixelFormatAttribivARB,
28366 unix_wglGetSwapIntervalEXT,
28367 unix_wglMakeContextCurrentARB,
28368 unix_wglQueryCurrentRendererIntegerWINE,
28369 unix_wglQueryCurrentRendererStringWINE,
28370 unix_wglQueryPbufferARB,
28371 unix_wglQueryRendererIntegerWINE,
28372 unix_wglQueryRendererStringWINE,
28373 unix_wglReleasePbufferDCARB,
28374 unix_wglReleaseTexImageARB,
28375 unix_wglSetPbufferAttribARB,
28376 unix_wglSetPixelFormatWINE,
28377 unix_wglSwapIntervalEXT,
28380 typedef void (WINAPI *gl_debug_cb)(GLenum, GLenum, GLuint, GLenum, GLsizei, const GLchar *, const void *);
28381 struct wine_gl_debug_message_params
28383 gl_debug_cb user_callback;
28384 const void *user_data;
28386 GLenum source;
28387 GLenum type;
28388 GLuint id;
28389 GLenum severity;
28390 GLsizei length;
28391 const GLchar *message;
28394 #define UNIX_CALL( func, params ) WINE_UNIX_CALL( unix_ ## func, params )
28396 #endif /* __WINE_OPENGL32_UNIXLIB_H */