2 Copyright 2011-2015, The AROS Development Team. All rights reserved.
6 #include "hostgl_ctx_manager.h"
7 #include "glx_hostlib.h"
8 #include <aros/debug.h>
12 HostGL_UpdateGlobalGLXContext();
17 void glClearIndex (GLfloat c
)
20 D(bug("[HostGL] TASK: 0x%x, glClearIndex", FindTask(NULL
)));
21 GLCALL(glClearIndex
, c
);
26 void glClearColor (GLclampf red
, GLclampf green
, GLclampf blue
, GLclampf alpha
)
29 D(bug("[HostGL] TASK: 0x%x, glClearColor", FindTask(NULL
)));
30 GLCALL(glClearColor
, red
, green
, blue
, alpha
);
35 void glClear (GLbitfield mask
)
38 D(bug("[HostGL] TASK: 0x%x, glClear", FindTask(NULL
)));
39 GLCALL(glClear
, mask
);
44 void glIndexMask (GLuint mask
)
47 D(bug("[HostGL] TASK: 0x%x, glIndexMask", FindTask(NULL
)));
48 GLCALL(glIndexMask
, mask
);
53 void glColorMask (GLboolean red
, GLboolean green
, GLboolean blue
, GLboolean alpha
)
56 D(bug("[HostGL] TASK: 0x%x, glColorMask", FindTask(NULL
)));
57 GLCALL(glColorMask
, red
, green
, blue
, alpha
);
62 void glAlphaFunc (GLenum func
, GLclampf ref
)
65 D(bug("[HostGL] TASK: 0x%x, glAlphaFunc", FindTask(NULL
)));
66 GLCALL(glAlphaFunc
, func
, ref
);
71 void glBlendFunc (GLenum sfactor
, GLenum dfactor
)
74 D(bug("[HostGL] TASK: 0x%x, glBlendFunc", FindTask(NULL
)));
75 GLCALL(glBlendFunc
, sfactor
, dfactor
);
80 void glLogicOp (GLenum opcode
)
83 D(bug("[HostGL] TASK: 0x%x, glLogicOp", FindTask(NULL
)));
84 GLCALL(glLogicOp
, opcode
);
89 void glCullFace (GLenum mode
)
92 D(bug("[HostGL] TASK: 0x%x, glCullFace", FindTask(NULL
)));
93 GLCALL(glCullFace
, mode
);
98 void glFrontFace (GLenum mode
)
101 D(bug("[HostGL] TASK: 0x%x, glFrontFace", FindTask(NULL
)));
102 GLCALL(glFrontFace
, mode
);
107 void glPointSize (GLfloat size
)
110 D(bug("[HostGL] TASK: 0x%x, glPointSize", FindTask(NULL
)));
111 GLCALL(glPointSize
, size
);
116 void glLineWidth (GLfloat width
)
119 D(bug("[HostGL] TASK: 0x%x, glLineWidth", FindTask(NULL
)));
120 GLCALL(glLineWidth
, width
);
125 void glLineStipple (GLint factor
, GLushort pattern
)
128 D(bug("[HostGL] TASK: 0x%x, glLineStipple", FindTask(NULL
)));
129 GLCALL(glLineStipple
, factor
, pattern
);
134 void glPolygonMode (GLenum face
, GLenum mode
)
137 D(bug("[HostGL] TASK: 0x%x, glPolygonMode", FindTask(NULL
)));
138 GLCALL(glPolygonMode
, face
, mode
);
143 void glPolygonOffset (GLfloat factor
, GLfloat units
)
146 D(bug("[HostGL] TASK: 0x%x, glPolygonOffset", FindTask(NULL
)));
147 GLCALL(glPolygonOffset
, factor
, units
);
152 void glPolygonStipple (const GLubyte
* mask
)
155 D(bug("[HostGL] TASK: 0x%x, glPolygonStipple", FindTask(NULL
)));
156 GLCALL(glPolygonStipple
, mask
);
161 void glGetPolygonStipple (GLubyte
* mask
)
164 D(bug("[HostGL] TASK: 0x%x, glGetPolygonStipple", FindTask(NULL
)));
165 GLCALL(glGetPolygonStipple
, mask
);
170 void glEdgeFlag (GLboolean flag
)
173 D(bug("[HostGL] TASK: 0x%x, glEdgeFlag", FindTask(NULL
)));
174 GLCALL(glEdgeFlag
, flag
);
179 void glEdgeFlagv (const GLboolean
* flag
)
182 D(bug("[HostGL] TASK: 0x%x, glEdgeFlagv", FindTask(NULL
)));
183 GLCALL(glEdgeFlagv
, flag
);
188 void glScissor (GLint x
, GLint y
, GLsizei width
, GLsizei height
)
191 D(bug("[HostGL] TASK: 0x%x, glScissor", FindTask(NULL
)));
192 GLCALL(glScissor
, x
, y
, width
, height
);
197 void glClipPlane (GLenum plane
, const GLdouble
* equation
)
200 D(bug("[HostGL] TASK: 0x%x, glClipPlane", FindTask(NULL
)));
201 GLCALL(glClipPlane
, plane
, equation
);
206 void glGetClipPlane (GLenum plane
, GLdouble
* equation
)
209 D(bug("[HostGL] TASK: 0x%x, glGetClipPlane", FindTask(NULL
)));
210 GLCALL(glGetClipPlane
, plane
, equation
);
215 void glDrawBuffer (GLenum mode
)
218 D(bug("[HostGL] TASK: 0x%x, glDrawBuffer", FindTask(NULL
)));
219 GLCALL(glDrawBuffer
, mode
);
224 void glReadBuffer (GLenum mode
)
227 D(bug("[HostGL] TASK: 0x%x, glReadBuffer", FindTask(NULL
)));
228 GLCALL(glReadBuffer
, mode
);
233 void glEnable (GLenum cap
)
236 D(bug("[HostGL] TASK: 0x%x, glEnable", FindTask(NULL
)));
237 GLCALL(glEnable
, cap
);
242 void glDisable (GLenum cap
)
245 D(bug("[HostGL] TASK: 0x%x, glDisable", FindTask(NULL
)));
246 GLCALL(glDisable
, cap
);
251 GLboolean
glIsEnabled (GLenum cap
)
255 D(bug("[HostGL] TASK: 0x%x, glIsEnabled", FindTask(NULL
)));
256 _ret
= GLCALL(glIsEnabled
, cap
);
262 void glEnableClientState (GLenum cap
)
265 D(bug("[HostGL] TASK: 0x%x, glEnableClientState", FindTask(NULL
)));
266 GLCALL(glEnableClientState
, cap
);
271 void glDisableClientState (GLenum cap
)
274 D(bug("[HostGL] TASK: 0x%x, glDisableClientState", FindTask(NULL
)));
275 GLCALL(glDisableClientState
, cap
);
280 void glGetBooleanv (GLenum pname
, GLboolean
* params
)
283 D(bug("[HostGL] TASK: 0x%x, glGetBooleanv", FindTask(NULL
)));
284 GLCALL(glGetBooleanv
, pname
, params
);
289 void glGetDoublev (GLenum pname
, GLdouble
* params
)
292 D(bug("[HostGL] TASK: 0x%x, glGetDoublev", FindTask(NULL
)));
293 GLCALL(glGetDoublev
, pname
, params
);
298 void glGetFloatv (GLenum pname
, GLfloat
* params
)
301 D(bug("[HostGL] TASK: 0x%x, glGetFloatv", FindTask(NULL
)));
302 GLCALL(glGetFloatv
, pname
, params
);
307 void glGetIntegerv (GLenum pname
, GLint
* params
)
310 D(bug("[HostGL] TASK: 0x%x, glGetIntegerv", FindTask(NULL
)));
311 GLCALL(glGetIntegerv
, pname
, params
);
316 void glPushAttrib (GLbitfield mask
)
319 D(bug("[HostGL] TASK: 0x%x, glPushAttrib", FindTask(NULL
)));
320 GLCALL(glPushAttrib
, mask
);
328 D(bug("[HostGL] TASK: 0x%x, glPopAttrib", FindTask(NULL
)));
334 void glPushClientAttrib (GLbitfield mask
)
337 D(bug("[HostGL] TASK: 0x%x, glPushClientAttrib", FindTask(NULL
)));
338 GLCALL(glPushClientAttrib
, mask
);
343 void glPopClientAttrib ()
346 D(bug("[HostGL] TASK: 0x%x, glPopClientAttrib", FindTask(NULL
)));
347 GLCALL(glPopClientAttrib
);
352 GLint
glRenderMode (GLenum mode
)
356 D(bug("[HostGL] TASK: 0x%x, glRenderMode", FindTask(NULL
)));
357 _ret
= GLCALL(glRenderMode
, mode
);
367 D(bug("[HostGL] TASK: 0x%x, glGetError", FindTask(NULL
)));
368 _ret
= GLCALL(glGetError
);
374 const GLubyte
* glGetString (GLenum name
)
376 const GLubyte
* _ret
;
378 D(bug("[HostGL] TASK: 0x%x, glGetString", FindTask(NULL
)));
379 _ret
= GLCALL(glGetString
, name
);
388 D(bug("[HostGL] TASK: 0x%x, glFinish", FindTask(NULL
)));
397 D(bug("[HostGL] TASK: 0x%x, glFlush", FindTask(NULL
)));
403 void glHint (GLenum target
, GLenum mode
)
406 D(bug("[HostGL] TASK: 0x%x, glHint", FindTask(NULL
)));
407 GLCALL(glHint
, target
, mode
);
412 void glClearDepth (GLclampd depth
)
415 D(bug("[HostGL] TASK: 0x%x, glClearDepth", FindTask(NULL
)));
416 GLCALL(glClearDepth
, depth
);
421 void glDepthFunc (GLenum func
)
424 D(bug("[HostGL] TASK: 0x%x, glDepthFunc", FindTask(NULL
)));
425 GLCALL(glDepthFunc
, func
);
430 void glDepthMask (GLboolean flag
)
433 D(bug("[HostGL] TASK: 0x%x, glDepthMask", FindTask(NULL
)));
434 GLCALL(glDepthMask
, flag
);
439 void glDepthRange (GLclampd near_val
, GLclampd far_val
)
442 D(bug("[HostGL] TASK: 0x%x, glDepthRange", FindTask(NULL
)));
443 GLCALL(glDepthRange
, near_val
, far_val
);
448 void glClearAccum (GLfloat red
, GLfloat green
, GLfloat blue
, GLfloat alpha
)
451 D(bug("[HostGL] TASK: 0x%x, glClearAccum", FindTask(NULL
)));
452 GLCALL(glClearAccum
, red
, green
, blue
, alpha
);
457 void glAccum (GLenum op
, GLfloat value
)
460 D(bug("[HostGL] TASK: 0x%x, glAccum", FindTask(NULL
)));
461 GLCALL(glAccum
, op
, value
);
466 void glMatrixMode (GLenum mode
)
469 D(bug("[HostGL] TASK: 0x%x, glMatrixMode", FindTask(NULL
)));
470 GLCALL(glMatrixMode
, mode
);
475 void glOrtho (GLdouble left
, GLdouble right
, GLdouble bottom
, GLdouble top
, GLdouble near_val
, GLdouble far_val
)
478 D(bug("[HostGL] TASK: 0x%x, glOrtho", FindTask(NULL
)));
479 GLCALL(glOrtho
, left
, right
, bottom
, top
, near_val
, far_val
);
484 void glFrustum (GLdouble left
, GLdouble right
, GLdouble bottom
, GLdouble top
, GLdouble near_val
, GLdouble far_val
)
487 D(bug("[HostGL] TASK: 0x%x, glFrustum", FindTask(NULL
)));
488 GLCALL(glFrustum
, left
, right
, bottom
, top
, near_val
, far_val
);
493 void glViewport (GLint x
, GLint y
, GLsizei width
, GLsizei height
)
496 D(bug("[HostGL] TASK: 0x%x, glViewport", FindTask(NULL
)));
497 GLCALL(glViewport
, x
, y
, width
, height
);
505 D(bug("[HostGL] TASK: 0x%x, glPushMatrix", FindTask(NULL
)));
506 GLCALL(glPushMatrix
);
514 D(bug("[HostGL] TASK: 0x%x, glPopMatrix", FindTask(NULL
)));
520 void glLoadIdentity ()
523 D(bug("[HostGL] TASK: 0x%x, glLoadIdentity", FindTask(NULL
)));
524 GLCALL(glLoadIdentity
);
529 void glLoadMatrixd (const GLdouble
* m
)
532 D(bug("[HostGL] TASK: 0x%x, glLoadMatrixd", FindTask(NULL
)));
533 GLCALL(glLoadMatrixd
, m
);
538 void glLoadMatrixf (const GLfloat
* m
)
541 D(bug("[HostGL] TASK: 0x%x, glLoadMatrixf", FindTask(NULL
)));
542 GLCALL(glLoadMatrixf
, m
);
547 void glMultMatrixd (const GLdouble
* m
)
550 D(bug("[HostGL] TASK: 0x%x, glMultMatrixd", FindTask(NULL
)));
551 GLCALL(glMultMatrixd
, m
);
556 void glMultMatrixf (const GLfloat
* m
)
559 D(bug("[HostGL] TASK: 0x%x, glMultMatrixf", FindTask(NULL
)));
560 GLCALL(glMultMatrixf
, m
);
565 void glRotated (GLdouble angle
, GLdouble x
, GLdouble y
, GLdouble z
)
568 D(bug("[HostGL] TASK: 0x%x, glRotated", FindTask(NULL
)));
569 GLCALL(glRotated
, angle
, x
, y
, z
);
574 void glRotatef (GLfloat angle
, GLfloat x
, GLfloat y
, GLfloat z
)
577 D(bug("[HostGL] TASK: 0x%x, glRotatef", FindTask(NULL
)));
578 GLCALL(glRotatef
, angle
, x
, y
, z
);
583 void glScaled (GLdouble x
, GLdouble y
, GLdouble z
)
586 D(bug("[HostGL] TASK: 0x%x, glScaled", FindTask(NULL
)));
587 GLCALL(glScaled
, x
, y
, z
);
592 void glScalef (GLfloat x
, GLfloat y
, GLfloat z
)
595 D(bug("[HostGL] TASK: 0x%x, glScalef", FindTask(NULL
)));
596 GLCALL(glScalef
, x
, y
, z
);
601 void glTranslated (GLdouble x
, GLdouble y
, GLdouble z
)
604 D(bug("[HostGL] TASK: 0x%x, glTranslated", FindTask(NULL
)));
605 GLCALL(glTranslated
, x
, y
, z
);
610 void glTranslatef (GLfloat x
, GLfloat y
, GLfloat z
)
613 D(bug("[HostGL] TASK: 0x%x, glTranslatef", FindTask(NULL
)));
614 GLCALL(glTranslatef
, x
, y
, z
);
619 GLboolean
glIsList (GLuint list
)
623 D(bug("[HostGL] TASK: 0x%x, glIsList", FindTask(NULL
)));
624 _ret
= GLCALL(glIsList
, list
);
630 void glDeleteLists (GLuint list
, GLsizei range
)
633 D(bug("[HostGL] TASK: 0x%x, glDeleteLists", FindTask(NULL
)));
634 GLCALL(glDeleteLists
, list
, range
);
639 GLuint
glGenLists (GLsizei range
)
643 D(bug("[HostGL] TASK: 0x%x, glGenLists", FindTask(NULL
)));
644 _ret
= GLCALL(glGenLists
, range
);
650 void glNewList (GLuint list
, GLenum mode
)
653 D(bug("[HostGL] TASK: 0x%x, glNewList", FindTask(NULL
)));
654 GLCALL(glNewList
, list
, mode
);
662 D(bug("[HostGL] TASK: 0x%x, glEndList", FindTask(NULL
)));
668 void glCallList (GLuint list
)
671 D(bug("[HostGL] TASK: 0x%x, glCallList", FindTask(NULL
)));
672 GLCALL(glCallList
, list
);
677 void glCallLists (GLsizei n
, GLenum type
, const GLvoid
* lists
)
680 D(bug("[HostGL] TASK: 0x%x, glCallLists", FindTask(NULL
)));
681 GLCALL(glCallLists
, n
, type
, lists
);
686 void glListBase (GLuint base
)
689 D(bug("[HostGL] TASK: 0x%x, glListBase", FindTask(NULL
)));
690 GLCALL(glListBase
, base
);
695 void glBegin (GLenum mode
)
698 D(bug("[HostGL] TASK: 0x%x, glBegin", FindTask(NULL
)));
699 GLCALL(glBegin
, mode
);
701 /* glBegin/glEnd must be atomic */
706 /* glBegin/glEnd must be atomic */
707 D(bug("[HostGL] TASK: 0x%x, glEnd", FindTask(NULL
)));
713 void glVertex2d (GLdouble x
, GLdouble y
)
716 D(bug("[HostGL] TASK: 0x%x, glVertex2d", FindTask(NULL
)));
717 GLCALL(glVertex2d
, x
, y
);
722 void glVertex2f (GLfloat x
, GLfloat y
)
725 D(bug("[HostGL] TASK: 0x%x, glVertex2f", FindTask(NULL
)));
726 GLCALL(glVertex2f
, x
, y
);
731 void glVertex2i (GLint x
, GLint y
)
734 D(bug("[HostGL] TASK: 0x%x, glVertex2i", FindTask(NULL
)));
735 GLCALL(glVertex2i
, x
, y
);
740 void glVertex2s (GLshort x
, GLshort y
)
743 D(bug("[HostGL] TASK: 0x%x, glVertex2s", FindTask(NULL
)));
744 GLCALL(glVertex2s
, x
, y
);
749 void glVertex3d (GLdouble x
, GLdouble y
, GLdouble z
)
752 D(bug("[HostGL] TASK: 0x%x, glVertex3d", FindTask(NULL
)));
753 GLCALL(glVertex3d
, x
, y
, z
);
758 void glVertex3f (GLfloat x
, GLfloat y
, GLfloat z
)
761 D(bug("[HostGL] TASK: 0x%x, glVertex3f", FindTask(NULL
)));
762 GLCALL(glVertex3f
, x
, y
, z
);
767 void glVertex3i (GLint x
, GLint y
, GLint z
)
770 D(bug("[HostGL] TASK: 0x%x, glVertex3i", FindTask(NULL
)));
771 GLCALL(glVertex3i
, x
, y
, z
);
776 void glVertex3s (GLshort x
, GLshort y
, GLshort z
)
779 D(bug("[HostGL] TASK: 0x%x, glVertex3s", FindTask(NULL
)));
780 GLCALL(glVertex3s
, x
, y
, z
);
785 void glVertex4d (GLdouble x
, GLdouble y
, GLdouble z
, GLdouble w
)
788 D(bug("[HostGL] TASK: 0x%x, glVertex4d", FindTask(NULL
)));
789 GLCALL(glVertex4d
, x
, y
, z
, w
);
794 void glVertex4f (GLfloat x
, GLfloat y
, GLfloat z
, GLfloat w
)
797 D(bug("[HostGL] TASK: 0x%x, glVertex4f", FindTask(NULL
)));
798 GLCALL(glVertex4f
, x
, y
, z
, w
);
803 void glVertex4i (GLint x
, GLint y
, GLint z
, GLint w
)
806 D(bug("[HostGL] TASK: 0x%x, glVertex4i", FindTask(NULL
)));
807 GLCALL(glVertex4i
, x
, y
, z
, w
);
812 void glVertex4s (GLshort x
, GLshort y
, GLshort z
, GLshort w
)
815 D(bug("[HostGL] TASK: 0x%x, glVertex4s", FindTask(NULL
)));
816 GLCALL(glVertex4s
, x
, y
, z
, w
);
821 void glVertex2dv (const GLdouble
* v
)
824 D(bug("[HostGL] TASK: 0x%x, glVertex2dv", FindTask(NULL
)));
825 GLCALL(glVertex2dv
, v
);
830 void glVertex2fv (const GLfloat
* v
)
833 D(bug("[HostGL] TASK: 0x%x, glVertex2fv", FindTask(NULL
)));
834 GLCALL(glVertex2fv
, v
);
839 void glVertex2iv (const GLint
* v
)
842 D(bug("[HostGL] TASK: 0x%x, glVertex2iv", FindTask(NULL
)));
843 GLCALL(glVertex2iv
, v
);
848 void glVertex2sv (const GLshort
* v
)
851 D(bug("[HostGL] TASK: 0x%x, glVertex2sv", FindTask(NULL
)));
852 GLCALL(glVertex2sv
, v
);
857 void glVertex3dv (const GLdouble
* v
)
860 D(bug("[HostGL] TASK: 0x%x, glVertex3dv", FindTask(NULL
)));
861 GLCALL(glVertex3dv
, v
);
866 void glVertex3fv (const GLfloat
* v
)
869 D(bug("[HostGL] TASK: 0x%x, glVertex3fv", FindTask(NULL
)));
870 GLCALL(glVertex3fv
, v
);
875 void glVertex3iv (const GLint
* v
)
878 D(bug("[HostGL] TASK: 0x%x, glVertex3iv", FindTask(NULL
)));
879 GLCALL(glVertex3iv
, v
);
884 void glVertex3sv (const GLshort
* v
)
887 D(bug("[HostGL] TASK: 0x%x, glVertex3sv", FindTask(NULL
)));
888 GLCALL(glVertex3sv
, v
);
893 void glVertex4dv (const GLdouble
* v
)
896 D(bug("[HostGL] TASK: 0x%x, glVertex4dv", FindTask(NULL
)));
897 GLCALL(glVertex4dv
, v
);
902 void glVertex4fv (const GLfloat
* v
)
905 D(bug("[HostGL] TASK: 0x%x, glVertex4fv", FindTask(NULL
)));
906 GLCALL(glVertex4fv
, v
);
911 void glVertex4iv (const GLint
* v
)
914 D(bug("[HostGL] TASK: 0x%x, glVertex4iv", FindTask(NULL
)));
915 GLCALL(glVertex4iv
, v
);
920 void glVertex4sv (const GLshort
* v
)
923 D(bug("[HostGL] TASK: 0x%x, glVertex4sv", FindTask(NULL
)));
924 GLCALL(glVertex4sv
, v
);
929 void glNormal3b (GLbyte nx
, GLbyte ny
, GLbyte nz
)
932 D(bug("[HostGL] TASK: 0x%x, glNormal3b", FindTask(NULL
)));
933 GLCALL(glNormal3b
, nx
, ny
, nz
);
938 void glNormal3d (GLdouble nx
, GLdouble ny
, GLdouble nz
)
941 D(bug("[HostGL] TASK: 0x%x, glNormal3d", FindTask(NULL
)));
942 GLCALL(glNormal3d
, nx
, ny
, nz
);
947 void glNormal3f (GLfloat nx
, GLfloat ny
, GLfloat nz
)
950 D(bug("[HostGL] TASK: 0x%x, glNormal3f", FindTask(NULL
)));
951 GLCALL(glNormal3f
, nx
, ny
, nz
);
956 void glNormal3i (GLint nx
, GLint ny
, GLint nz
)
959 D(bug("[HostGL] TASK: 0x%x, glNormal3i", FindTask(NULL
)));
960 GLCALL(glNormal3i
, nx
, ny
, nz
);
965 void glNormal3s (GLshort nx
, GLshort ny
, GLshort nz
)
968 D(bug("[HostGL] TASK: 0x%x, glNormal3s", FindTask(NULL
)));
969 GLCALL(glNormal3s
, nx
, ny
, nz
);
974 void glNormal3bv (const GLbyte
* v
)
977 D(bug("[HostGL] TASK: 0x%x, glNormal3bv", FindTask(NULL
)));
978 GLCALL(glNormal3bv
, v
);
983 void glNormal3dv (const GLdouble
* v
)
986 D(bug("[HostGL] TASK: 0x%x, glNormal3dv", FindTask(NULL
)));
987 GLCALL(glNormal3dv
, v
);
992 void glNormal3fv (const GLfloat
* v
)
995 D(bug("[HostGL] TASK: 0x%x, glNormal3fv", FindTask(NULL
)));
996 GLCALL(glNormal3fv
, v
);
1001 void glNormal3iv (const GLint
* v
)
1004 D(bug("[HostGL] TASK: 0x%x, glNormal3iv", FindTask(NULL
)));
1005 GLCALL(glNormal3iv
, v
);
1006 D(bug("...exit\n"));
1010 void glNormal3sv (const GLshort
* v
)
1013 D(bug("[HostGL] TASK: 0x%x, glNormal3sv", FindTask(NULL
)));
1014 GLCALL(glNormal3sv
, v
);
1015 D(bug("...exit\n"));
1019 void glIndexd (GLdouble c
)
1022 D(bug("[HostGL] TASK: 0x%x, glIndexd", FindTask(NULL
)));
1023 GLCALL(glIndexd
, c
);
1024 D(bug("...exit\n"));
1028 void glIndexf (GLfloat c
)
1031 D(bug("[HostGL] TASK: 0x%x, glIndexf", FindTask(NULL
)));
1032 GLCALL(glIndexf
, c
);
1033 D(bug("...exit\n"));
1037 void glIndexi (GLint c
)
1040 D(bug("[HostGL] TASK: 0x%x, glIndexi", FindTask(NULL
)));
1041 GLCALL(glIndexi
, c
);
1042 D(bug("...exit\n"));
1046 void glIndexs (GLshort c
)
1049 D(bug("[HostGL] TASK: 0x%x, glIndexs", FindTask(NULL
)));
1050 GLCALL(glIndexs
, c
);
1051 D(bug("...exit\n"));
1055 void glIndexub (GLubyte c
)
1058 D(bug("[HostGL] TASK: 0x%x, glIndexub", FindTask(NULL
)));
1059 GLCALL(glIndexub
, c
);
1060 D(bug("...exit\n"));
1064 void glIndexdv (const GLdouble
* c
)
1067 D(bug("[HostGL] TASK: 0x%x, glIndexdv", FindTask(NULL
)));
1068 GLCALL(glIndexdv
, c
);
1069 D(bug("...exit\n"));
1073 void glIndexfv (const GLfloat
* c
)
1076 D(bug("[HostGL] TASK: 0x%x, glIndexfv", FindTask(NULL
)));
1077 GLCALL(glIndexfv
, c
);
1078 D(bug("...exit\n"));
1082 void glIndexiv (const GLint
* c
)
1085 D(bug("[HostGL] TASK: 0x%x, glIndexiv", FindTask(NULL
)));
1086 GLCALL(glIndexiv
, c
);
1087 D(bug("...exit\n"));
1091 void glIndexsv (const GLshort
* c
)
1094 D(bug("[HostGL] TASK: 0x%x, glIndexsv", FindTask(NULL
)));
1095 GLCALL(glIndexsv
, c
);
1096 D(bug("...exit\n"));
1100 void glIndexubv (const GLubyte
* c
)
1103 D(bug("[HostGL] TASK: 0x%x, glIndexubv", FindTask(NULL
)));
1104 GLCALL(glIndexubv
, c
);
1105 D(bug("...exit\n"));
1109 void glColor3b (GLbyte red
, GLbyte green
, GLbyte blue
)
1112 D(bug("[HostGL] TASK: 0x%x, glColor3b", FindTask(NULL
)));
1113 GLCALL(glColor3b
, red
, green
, blue
);
1114 D(bug("...exit\n"));
1118 void glColor3d (GLdouble red
, GLdouble green
, GLdouble blue
)
1121 D(bug("[HostGL] TASK: 0x%x, glColor3d", FindTask(NULL
)));
1122 GLCALL(glColor3d
, red
, green
, blue
);
1123 D(bug("...exit\n"));
1127 void glColor3f (GLfloat red
, GLfloat green
, GLfloat blue
)
1130 D(bug("[HostGL] TASK: 0x%x, glColor3f", FindTask(NULL
)));
1131 GLCALL(glColor3f
, red
, green
, blue
);
1132 D(bug("...exit\n"));
1136 void glColor3i (GLint red
, GLint green
, GLint blue
)
1139 D(bug("[HostGL] TASK: 0x%x, glColor3i", FindTask(NULL
)));
1140 GLCALL(glColor3i
, red
, green
, blue
);
1141 D(bug("...exit\n"));
1145 void glColor3s (GLshort red
, GLshort green
, GLshort blue
)
1148 D(bug("[HostGL] TASK: 0x%x, glColor3s", FindTask(NULL
)));
1149 GLCALL(glColor3s
, red
, green
, blue
);
1150 D(bug("...exit\n"));
1154 void glColor3ub (GLubyte red
, GLubyte green
, GLubyte blue
)
1157 D(bug("[HostGL] TASK: 0x%x, glColor3ub", FindTask(NULL
)));
1158 GLCALL(glColor3ub
, red
, green
, blue
);
1159 D(bug("...exit\n"));
1163 void glColor3ui (GLuint red
, GLuint green
, GLuint blue
)
1166 D(bug("[HostGL] TASK: 0x%x, glColor3ui", FindTask(NULL
)));
1167 GLCALL(glColor3ui
, red
, green
, blue
);
1168 D(bug("...exit\n"));
1172 void glColor3us (GLushort red
, GLushort green
, GLushort blue
)
1175 D(bug("[HostGL] TASK: 0x%x, glColor3us", FindTask(NULL
)));
1176 GLCALL(glColor3us
, red
, green
, blue
);
1177 D(bug("...exit\n"));
1181 void glColor4b (GLbyte red
, GLbyte green
, GLbyte blue
, GLbyte alpha
)
1184 D(bug("[HostGL] TASK: 0x%x, glColor4b", FindTask(NULL
)));
1185 GLCALL(glColor4b
, red
, green
, blue
, alpha
);
1186 D(bug("...exit\n"));
1190 void glColor4d (GLdouble red
, GLdouble green
, GLdouble blue
, GLdouble alpha
)
1193 D(bug("[HostGL] TASK: 0x%x, glColor4d", FindTask(NULL
)));
1194 GLCALL(glColor4d
, red
, green
, blue
, alpha
);
1195 D(bug("...exit\n"));
1199 void glColor4f (GLfloat red
, GLfloat green
, GLfloat blue
, GLfloat alpha
)
1202 D(bug("[HostGL] TASK: 0x%x, glColor4f", FindTask(NULL
)));
1203 GLCALL(glColor4f
, red
, green
, blue
, alpha
);
1204 D(bug("...exit\n"));
1208 void glColor4i (GLint red
, GLint green
, GLint blue
, GLint alpha
)
1211 D(bug("[HostGL] TASK: 0x%x, glColor4i", FindTask(NULL
)));
1212 GLCALL(glColor4i
, red
, green
, blue
, alpha
);
1213 D(bug("...exit\n"));
1217 void glColor4s (GLshort red
, GLshort green
, GLshort blue
, GLshort alpha
)
1220 D(bug("[HostGL] TASK: 0x%x, glColor4s", FindTask(NULL
)));
1221 GLCALL(glColor4s
, red
, green
, blue
, alpha
);
1222 D(bug("...exit\n"));
1226 void glColor4ub (GLubyte red
, GLubyte green
, GLubyte blue
, GLubyte alpha
)
1229 D(bug("[HostGL] TASK: 0x%x, glColor4ub", FindTask(NULL
)));
1230 GLCALL(glColor4ub
, red
, green
, blue
, alpha
);
1231 D(bug("...exit\n"));
1235 void glColor4ui (GLuint red
, GLuint green
, GLuint blue
, GLuint alpha
)
1238 D(bug("[HostGL] TASK: 0x%x, glColor4ui", FindTask(NULL
)));
1239 GLCALL(glColor4ui
, red
, green
, blue
, alpha
);
1240 D(bug("...exit\n"));
1244 void glColor4us (GLushort red
, GLushort green
, GLushort blue
, GLushort alpha
)
1247 D(bug("[HostGL] TASK: 0x%x, glColor4us", FindTask(NULL
)));
1248 GLCALL(glColor4us
, red
, green
, blue
, alpha
);
1249 D(bug("...exit\n"));
1253 void glColor3bv (const GLbyte
* v
)
1256 D(bug("[HostGL] TASK: 0x%x, glColor3bv", FindTask(NULL
)));
1257 GLCALL(glColor3bv
, v
);
1258 D(bug("...exit\n"));
1262 void glColor3dv (const GLdouble
* v
)
1265 D(bug("[HostGL] TASK: 0x%x, glColor3dv", FindTask(NULL
)));
1266 GLCALL(glColor3dv
, v
);
1267 D(bug("...exit\n"));
1271 void glColor3fv (const GLfloat
* v
)
1274 D(bug("[HostGL] TASK: 0x%x, glColor3fv", FindTask(NULL
)));
1275 GLCALL(glColor3fv
, v
);
1276 D(bug("...exit\n"));
1280 void glColor3iv (const GLint
* v
)
1283 D(bug("[HostGL] TASK: 0x%x, glColor3iv", FindTask(NULL
)));
1284 GLCALL(glColor3iv
, v
);
1285 D(bug("...exit\n"));
1289 void glColor3sv (const GLshort
* v
)
1292 D(bug("[HostGL] TASK: 0x%x, glColor3sv", FindTask(NULL
)));
1293 GLCALL(glColor3sv
, v
);
1294 D(bug("...exit\n"));
1298 void glColor3ubv (const GLubyte
* v
)
1301 D(bug("[HostGL] TASK: 0x%x, glColor3ubv", FindTask(NULL
)));
1302 GLCALL(glColor3ubv
, v
);
1303 D(bug("...exit\n"));
1307 void glColor3uiv (const GLuint
* v
)
1310 D(bug("[HostGL] TASK: 0x%x, glColor3uiv", FindTask(NULL
)));
1311 GLCALL(glColor3uiv
, v
);
1312 D(bug("...exit\n"));
1316 void glColor3usv (const GLushort
* v
)
1319 D(bug("[HostGL] TASK: 0x%x, glColor3usv", FindTask(NULL
)));
1320 GLCALL(glColor3usv
, v
);
1321 D(bug("...exit\n"));
1325 void glColor4bv (const GLbyte
* v
)
1328 D(bug("[HostGL] TASK: 0x%x, glColor4bv", FindTask(NULL
)));
1329 GLCALL(glColor4bv
, v
);
1330 D(bug("...exit\n"));
1334 void glColor4dv (const GLdouble
* v
)
1337 D(bug("[HostGL] TASK: 0x%x, glColor4dv", FindTask(NULL
)));
1338 GLCALL(glColor4dv
, v
);
1339 D(bug("...exit\n"));
1343 void glColor4fv (const GLfloat
* v
)
1346 D(bug("[HostGL] TASK: 0x%x, glColor4fv", FindTask(NULL
)));
1347 GLCALL(glColor4fv
, v
);
1348 D(bug("...exit\n"));
1352 void glColor4iv (const GLint
* v
)
1355 D(bug("[HostGL] TASK: 0x%x, glColor4iv", FindTask(NULL
)));
1356 GLCALL(glColor4iv
, v
);
1357 D(bug("...exit\n"));
1361 void glColor4sv (const GLshort
* v
)
1364 D(bug("[HostGL] TASK: 0x%x, glColor4sv", FindTask(NULL
)));
1365 GLCALL(glColor4sv
, v
);
1366 D(bug("...exit\n"));
1370 void glColor4ubv (const GLubyte
* v
)
1373 D(bug("[HostGL] TASK: 0x%x, glColor4ubv", FindTask(NULL
)));
1374 GLCALL(glColor4ubv
, v
);
1375 D(bug("...exit\n"));
1379 void glColor4uiv (const GLuint
* v
)
1382 D(bug("[HostGL] TASK: 0x%x, glColor4uiv", FindTask(NULL
)));
1383 GLCALL(glColor4uiv
, v
);
1384 D(bug("...exit\n"));
1388 void glColor4usv (const GLushort
* v
)
1391 D(bug("[HostGL] TASK: 0x%x, glColor4usv", FindTask(NULL
)));
1392 GLCALL(glColor4usv
, v
);
1393 D(bug("...exit\n"));
1397 void glTexCoord1d (GLdouble s
)
1400 D(bug("[HostGL] TASK: 0x%x, glTexCoord1d", FindTask(NULL
)));
1401 GLCALL(glTexCoord1d
, s
);
1402 D(bug("...exit\n"));
1406 void glTexCoord1f (GLfloat s
)
1409 D(bug("[HostGL] TASK: 0x%x, glTexCoord1f", FindTask(NULL
)));
1410 GLCALL(glTexCoord1f
, s
);
1411 D(bug("...exit\n"));
1415 void glTexCoord1i (GLint s
)
1418 D(bug("[HostGL] TASK: 0x%x, glTexCoord1i", FindTask(NULL
)));
1419 GLCALL(glTexCoord1i
, s
);
1420 D(bug("...exit\n"));
1424 void glTexCoord1s (GLshort s
)
1427 D(bug("[HostGL] TASK: 0x%x, glTexCoord1s", FindTask(NULL
)));
1428 GLCALL(glTexCoord1s
, s
);
1429 D(bug("...exit\n"));
1433 void glTexCoord2d (GLdouble s
, GLdouble t
)
1436 D(bug("[HostGL] TASK: 0x%x, glTexCoord2d", FindTask(NULL
)));
1437 GLCALL(glTexCoord2d
, s
, t
);
1438 D(bug("...exit\n"));
1442 void glTexCoord2f (GLfloat s
, GLfloat t
)
1445 D(bug("[HostGL] TASK: 0x%x, glTexCoord2f", FindTask(NULL
)));
1446 GLCALL(glTexCoord2f
, s
, t
);
1447 D(bug("...exit\n"));
1451 void glTexCoord2i (GLint s
, GLint t
)
1454 D(bug("[HostGL] TASK: 0x%x, glTexCoord2i", FindTask(NULL
)));
1455 GLCALL(glTexCoord2i
, s
, t
);
1456 D(bug("...exit\n"));
1460 void glTexCoord2s (GLshort s
, GLshort t
)
1463 D(bug("[HostGL] TASK: 0x%x, glTexCoord2s", FindTask(NULL
)));
1464 GLCALL(glTexCoord2s
, s
, t
);
1465 D(bug("...exit\n"));
1469 void glTexCoord3d (GLdouble s
, GLdouble t
, GLdouble r
)
1472 D(bug("[HostGL] TASK: 0x%x, glTexCoord3d", FindTask(NULL
)));
1473 GLCALL(glTexCoord3d
, s
, t
, r
);
1474 D(bug("...exit\n"));
1478 void glTexCoord3f (GLfloat s
, GLfloat t
, GLfloat r
)
1481 D(bug("[HostGL] TASK: 0x%x, glTexCoord3f", FindTask(NULL
)));
1482 GLCALL(glTexCoord3f
, s
, t
, r
);
1483 D(bug("...exit\n"));
1487 void glTexCoord3i (GLint s
, GLint t
, GLint r
)
1490 D(bug("[HostGL] TASK: 0x%x, glTexCoord3i", FindTask(NULL
)));
1491 GLCALL(glTexCoord3i
, s
, t
, r
);
1492 D(bug("...exit\n"));
1496 void glTexCoord3s (GLshort s
, GLshort t
, GLshort r
)
1499 D(bug("[HostGL] TASK: 0x%x, glTexCoord3s", FindTask(NULL
)));
1500 GLCALL(glTexCoord3s
, s
, t
, r
);
1501 D(bug("...exit\n"));
1505 void glTexCoord4d (GLdouble s
, GLdouble t
, GLdouble r
, GLdouble q
)
1508 D(bug("[HostGL] TASK: 0x%x, glTexCoord4d", FindTask(NULL
)));
1509 GLCALL(glTexCoord4d
, s
, t
, r
, q
);
1510 D(bug("...exit\n"));
1514 void glTexCoord4f (GLfloat s
, GLfloat t
, GLfloat r
, GLfloat q
)
1517 D(bug("[HostGL] TASK: 0x%x, glTexCoord4f", FindTask(NULL
)));
1518 GLCALL(glTexCoord4f
, s
, t
, r
, q
);
1519 D(bug("...exit\n"));
1523 void glTexCoord4i (GLint s
, GLint t
, GLint r
, GLint q
)
1526 D(bug("[HostGL] TASK: 0x%x, glTexCoord4i", FindTask(NULL
)));
1527 GLCALL(glTexCoord4i
, s
, t
, r
, q
);
1528 D(bug("...exit\n"));
1532 void glTexCoord4s (GLshort s
, GLshort t
, GLshort r
, GLshort q
)
1535 D(bug("[HostGL] TASK: 0x%x, glTexCoord4s", FindTask(NULL
)));
1536 GLCALL(glTexCoord4s
, s
, t
, r
, q
);
1537 D(bug("...exit\n"));
1541 void glTexCoord1dv (const GLdouble
* v
)
1544 D(bug("[HostGL] TASK: 0x%x, glTexCoord1dv", FindTask(NULL
)));
1545 GLCALL(glTexCoord1dv
, v
);
1546 D(bug("...exit\n"));
1550 void glTexCoord1fv (const GLfloat
* v
)
1553 D(bug("[HostGL] TASK: 0x%x, glTexCoord1fv", FindTask(NULL
)));
1554 GLCALL(glTexCoord1fv
, v
);
1555 D(bug("...exit\n"));
1559 void glTexCoord1iv (const GLint
* v
)
1562 D(bug("[HostGL] TASK: 0x%x, glTexCoord1iv", FindTask(NULL
)));
1563 GLCALL(glTexCoord1iv
, v
);
1564 D(bug("...exit\n"));
1568 void glTexCoord1sv (const GLshort
* v
)
1571 D(bug("[HostGL] TASK: 0x%x, glTexCoord1sv", FindTask(NULL
)));
1572 GLCALL(glTexCoord1sv
, v
);
1573 D(bug("...exit\n"));
1577 void glTexCoord2dv (const GLdouble
* v
)
1580 D(bug("[HostGL] TASK: 0x%x, glTexCoord2dv", FindTask(NULL
)));
1581 GLCALL(glTexCoord2dv
, v
);
1582 D(bug("...exit\n"));
1586 void glTexCoord2fv (const GLfloat
* v
)
1589 D(bug("[HostGL] TASK: 0x%x, glTexCoord2fv", FindTask(NULL
)));
1590 GLCALL(glTexCoord2fv
, v
);
1591 D(bug("...exit\n"));
1595 void glTexCoord2iv (const GLint
* v
)
1598 D(bug("[HostGL] TASK: 0x%x, glTexCoord2iv", FindTask(NULL
)));
1599 GLCALL(glTexCoord2iv
, v
);
1600 D(bug("...exit\n"));
1604 void glTexCoord2sv (const GLshort
* v
)
1607 D(bug("[HostGL] TASK: 0x%x, glTexCoord2sv", FindTask(NULL
)));
1608 GLCALL(glTexCoord2sv
, v
);
1609 D(bug("...exit\n"));
1613 void glTexCoord3dv (const GLdouble
* v
)
1616 D(bug("[HostGL] TASK: 0x%x, glTexCoord3dv", FindTask(NULL
)));
1617 GLCALL(glTexCoord3dv
, v
);
1618 D(bug("...exit\n"));
1622 void glTexCoord3fv (const GLfloat
* v
)
1625 D(bug("[HostGL] TASK: 0x%x, glTexCoord3fv", FindTask(NULL
)));
1626 GLCALL(glTexCoord3fv
, v
);
1627 D(bug("...exit\n"));
1631 void glTexCoord3iv (const GLint
* v
)
1634 D(bug("[HostGL] TASK: 0x%x, glTexCoord3iv", FindTask(NULL
)));
1635 GLCALL(glTexCoord3iv
, v
);
1636 D(bug("...exit\n"));
1640 void glTexCoord3sv (const GLshort
* v
)
1643 D(bug("[HostGL] TASK: 0x%x, glTexCoord3sv", FindTask(NULL
)));
1644 GLCALL(glTexCoord3sv
, v
);
1645 D(bug("...exit\n"));
1649 void glTexCoord4dv (const GLdouble
* v
)
1652 D(bug("[HostGL] TASK: 0x%x, glTexCoord4dv", FindTask(NULL
)));
1653 GLCALL(glTexCoord4dv
, v
);
1654 D(bug("...exit\n"));
1658 void glTexCoord4fv (const GLfloat
* v
)
1661 D(bug("[HostGL] TASK: 0x%x, glTexCoord4fv", FindTask(NULL
)));
1662 GLCALL(glTexCoord4fv
, v
);
1663 D(bug("...exit\n"));
1667 void glTexCoord4iv (const GLint
* v
)
1670 D(bug("[HostGL] TASK: 0x%x, glTexCoord4iv", FindTask(NULL
)));
1671 GLCALL(glTexCoord4iv
, v
);
1672 D(bug("...exit\n"));
1676 void glTexCoord4sv (const GLshort
* v
)
1679 D(bug("[HostGL] TASK: 0x%x, glTexCoord4sv", FindTask(NULL
)));
1680 GLCALL(glTexCoord4sv
, v
);
1681 D(bug("...exit\n"));
1685 void glRasterPos2d (GLdouble x
, GLdouble y
)
1688 D(bug("[HostGL] TASK: 0x%x, glRasterPos2d", FindTask(NULL
)));
1689 GLCALL(glRasterPos2d
, x
, y
);
1690 D(bug("...exit\n"));
1694 void glRasterPos2f (GLfloat x
, GLfloat y
)
1697 D(bug("[HostGL] TASK: 0x%x, glRasterPos2f", FindTask(NULL
)));
1698 GLCALL(glRasterPos2f
, x
, y
);
1699 D(bug("...exit\n"));
1703 void glRasterPos2i (GLint x
, GLint y
)
1706 D(bug("[HostGL] TASK: 0x%x, glRasterPos2i", FindTask(NULL
)));
1707 GLCALL(glRasterPos2i
, x
, y
);
1708 D(bug("...exit\n"));
1712 void glRasterPos2s (GLshort x
, GLshort y
)
1715 D(bug("[HostGL] TASK: 0x%x, glRasterPos2s", FindTask(NULL
)));
1716 GLCALL(glRasterPos2s
, x
, y
);
1717 D(bug("...exit\n"));
1721 void glRasterPos3d (GLdouble x
, GLdouble y
, GLdouble z
)
1724 D(bug("[HostGL] TASK: 0x%x, glRasterPos3d", FindTask(NULL
)));
1725 GLCALL(glRasterPos3d
, x
, y
, z
);
1726 D(bug("...exit\n"));
1730 void glRasterPos3f (GLfloat x
, GLfloat y
, GLfloat z
)
1733 D(bug("[HostGL] TASK: 0x%x, glRasterPos3f", FindTask(NULL
)));
1734 GLCALL(glRasterPos3f
, x
, y
, z
);
1735 D(bug("...exit\n"));
1739 void glRasterPos3i (GLint x
, GLint y
, GLint z
)
1742 D(bug("[HostGL] TASK: 0x%x, glRasterPos3i", FindTask(NULL
)));
1743 GLCALL(glRasterPos3i
, x
, y
, z
);
1744 D(bug("...exit\n"));
1748 void glRasterPos3s (GLshort x
, GLshort y
, GLshort z
)
1751 D(bug("[HostGL] TASK: 0x%x, glRasterPos3s", FindTask(NULL
)));
1752 GLCALL(glRasterPos3s
, x
, y
, z
);
1753 D(bug("...exit\n"));
1757 void glRasterPos4d (GLdouble x
, GLdouble y
, GLdouble z
, GLdouble w
)
1760 D(bug("[HostGL] TASK: 0x%x, glRasterPos4d", FindTask(NULL
)));
1761 GLCALL(glRasterPos4d
, x
, y
, z
, w
);
1762 D(bug("...exit\n"));
1766 void glRasterPos4f (GLfloat x
, GLfloat y
, GLfloat z
, GLfloat w
)
1769 D(bug("[HostGL] TASK: 0x%x, glRasterPos4f", FindTask(NULL
)));
1770 GLCALL(glRasterPos4f
, x
, y
, z
, w
);
1771 D(bug("...exit\n"));
1775 void glRasterPos4i (GLint x
, GLint y
, GLint z
, GLint w
)
1778 D(bug("[HostGL] TASK: 0x%x, glRasterPos4i", FindTask(NULL
)));
1779 GLCALL(glRasterPos4i
, x
, y
, z
, w
);
1780 D(bug("...exit\n"));
1784 void glRasterPos4s (GLshort x
, GLshort y
, GLshort z
, GLshort w
)
1787 D(bug("[HostGL] TASK: 0x%x, glRasterPos4s", FindTask(NULL
)));
1788 GLCALL(glRasterPos4s
, x
, y
, z
, w
);
1789 D(bug("...exit\n"));
1793 void glRasterPos2dv (const GLdouble
* v
)
1796 D(bug("[HostGL] TASK: 0x%x, glRasterPos2dv", FindTask(NULL
)));
1797 GLCALL(glRasterPos2dv
, v
);
1798 D(bug("...exit\n"));
1802 void glRasterPos2fv (const GLfloat
* v
)
1805 D(bug("[HostGL] TASK: 0x%x, glRasterPos2fv", FindTask(NULL
)));
1806 GLCALL(glRasterPos2fv
, v
);
1807 D(bug("...exit\n"));
1811 void glRasterPos2iv (const GLint
* v
)
1814 D(bug("[HostGL] TASK: 0x%x, glRasterPos2iv", FindTask(NULL
)));
1815 GLCALL(glRasterPos2iv
, v
);
1816 D(bug("...exit\n"));
1820 void glRasterPos2sv (const GLshort
* v
)
1823 D(bug("[HostGL] TASK: 0x%x, glRasterPos2sv", FindTask(NULL
)));
1824 GLCALL(glRasterPos2sv
, v
);
1825 D(bug("...exit\n"));
1829 void glRasterPos3dv (const GLdouble
* v
)
1832 D(bug("[HostGL] TASK: 0x%x, glRasterPos3dv", FindTask(NULL
)));
1833 GLCALL(glRasterPos3dv
, v
);
1834 D(bug("...exit\n"));
1838 void glRasterPos3fv (const GLfloat
* v
)
1841 D(bug("[HostGL] TASK: 0x%x, glRasterPos3fv", FindTask(NULL
)));
1842 GLCALL(glRasterPos3fv
, v
);
1843 D(bug("...exit\n"));
1847 void glRasterPos3iv (const GLint
* v
)
1850 D(bug("[HostGL] TASK: 0x%x, glRasterPos3iv", FindTask(NULL
)));
1851 GLCALL(glRasterPos3iv
, v
);
1852 D(bug("...exit\n"));
1856 void glRasterPos3sv (const GLshort
* v
)
1859 D(bug("[HostGL] TASK: 0x%x, glRasterPos3sv", FindTask(NULL
)));
1860 GLCALL(glRasterPos3sv
, v
);
1861 D(bug("...exit\n"));
1865 void glRasterPos4dv (const GLdouble
* v
)
1868 D(bug("[HostGL] TASK: 0x%x, glRasterPos4dv", FindTask(NULL
)));
1869 GLCALL(glRasterPos4dv
, v
);
1870 D(bug("...exit\n"));
1874 void glRasterPos4fv (const GLfloat
* v
)
1877 D(bug("[HostGL] TASK: 0x%x, glRasterPos4fv", FindTask(NULL
)));
1878 GLCALL(glRasterPos4fv
, v
);
1879 D(bug("...exit\n"));
1883 void glRasterPos4iv (const GLint
* v
)
1886 D(bug("[HostGL] TASK: 0x%x, glRasterPos4iv", FindTask(NULL
)));
1887 GLCALL(glRasterPos4iv
, v
);
1888 D(bug("...exit\n"));
1892 void glRasterPos4sv (const GLshort
* v
)
1895 D(bug("[HostGL] TASK: 0x%x, glRasterPos4sv", FindTask(NULL
)));
1896 GLCALL(glRasterPos4sv
, v
);
1897 D(bug("...exit\n"));
1901 void glRectd (GLdouble x1
, GLdouble y1
, GLdouble x2
, GLdouble y2
)
1904 D(bug("[HostGL] TASK: 0x%x, glRectd", FindTask(NULL
)));
1905 GLCALL(glRectd
, x1
, y1
, x2
, y2
);
1906 D(bug("...exit\n"));
1910 void glRectf (GLfloat x1
, GLfloat y1
, GLfloat x2
, GLfloat y2
)
1913 D(bug("[HostGL] TASK: 0x%x, glRectf", FindTask(NULL
)));
1914 GLCALL(glRectf
, x1
, y1
, x2
, y2
);
1915 D(bug("...exit\n"));
1919 void glRecti (GLint x1
, GLint y1
, GLint x2
, GLint y2
)
1922 D(bug("[HostGL] TASK: 0x%x, glRecti", FindTask(NULL
)));
1923 GLCALL(glRecti
, x1
, y1
, x2
, y2
);
1924 D(bug("...exit\n"));
1928 void glRects (GLshort x1
, GLshort y1
, GLshort x2
, GLshort y2
)
1931 D(bug("[HostGL] TASK: 0x%x, glRects", FindTask(NULL
)));
1932 GLCALL(glRects
, x1
, y1
, x2
, y2
);
1933 D(bug("...exit\n"));
1937 void glRectdv (const GLdouble
* v1
, const GLdouble
* v2
)
1940 D(bug("[HostGL] TASK: 0x%x, glRectdv", FindTask(NULL
)));
1941 GLCALL(glRectdv
, v1
, v2
);
1942 D(bug("...exit\n"));
1946 void glRectfv (const GLfloat
* v1
, const GLfloat
* v2
)
1949 D(bug("[HostGL] TASK: 0x%x, glRectfv", FindTask(NULL
)));
1950 GLCALL(glRectfv
, v1
, v2
);
1951 D(bug("...exit\n"));
1955 void glRectiv (const GLint
* v1
, const GLint
* v2
)
1958 D(bug("[HostGL] TASK: 0x%x, glRectiv", FindTask(NULL
)));
1959 GLCALL(glRectiv
, v1
, v2
);
1960 D(bug("...exit\n"));
1964 void glRectsv (const GLshort
* v1
, const GLshort
* v2
)
1967 D(bug("[HostGL] TASK: 0x%x, glRectsv", FindTask(NULL
)));
1968 GLCALL(glRectsv
, v1
, v2
);
1969 D(bug("...exit\n"));
1973 void glVertexPointer (GLint size
, GLenum type
, GLsizei stride
, const GLvoid
* ptr
)
1976 D(bug("[HostGL] TASK: 0x%x, glVertexPointer", FindTask(NULL
)));
1977 GLCALL(glVertexPointer
, size
, type
, stride
, ptr
);
1978 D(bug("...exit\n"));
1982 void glNormalPointer (GLenum type
, GLsizei stride
, const GLvoid
* ptr
)
1985 D(bug("[HostGL] TASK: 0x%x, glNormalPointer", FindTask(NULL
)));
1986 GLCALL(glNormalPointer
, type
, stride
, ptr
);
1987 D(bug("...exit\n"));
1991 void glColorPointer (GLint size
, GLenum type
, GLsizei stride
, const GLvoid
* ptr
)
1994 D(bug("[HostGL] TASK: 0x%x, glColorPointer", FindTask(NULL
)));
1995 GLCALL(glColorPointer
, size
, type
, stride
, ptr
);
1996 D(bug("...exit\n"));
2000 void glIndexPointer (GLenum type
, GLsizei stride
, const GLvoid
* ptr
)
2003 D(bug("[HostGL] TASK: 0x%x, glIndexPointer", FindTask(NULL
)));
2004 GLCALL(glIndexPointer
, type
, stride
, ptr
);
2005 D(bug("...exit\n"));
2009 void glTexCoordPointer (GLint size
, GLenum type
, GLsizei stride
, const GLvoid
* ptr
)
2012 D(bug("[HostGL] TASK: 0x%x, glTexCoordPointer", FindTask(NULL
)));
2013 GLCALL(glTexCoordPointer
, size
, type
, stride
, ptr
);
2014 D(bug("...exit\n"));
2018 void glEdgeFlagPointer (GLsizei stride
, const GLvoid
* ptr
)
2021 D(bug("[HostGL] TASK: 0x%x, glEdgeFlagPointer", FindTask(NULL
)));
2022 GLCALL(glEdgeFlagPointer
, stride
, ptr
);
2023 D(bug("...exit\n"));
2027 void glGetPointerv (GLenum pname
, GLvoid
* * params
)
2030 D(bug("[HostGL] TASK: 0x%x, glGetPointerv", FindTask(NULL
)));
2031 GLCALL(glGetPointerv
, pname
, params
);
2032 D(bug("...exit\n"));
2036 void glArrayElement (GLint i
)
2039 D(bug("[HostGL] TASK: 0x%x, glArrayElement", FindTask(NULL
)));
2040 GLCALL(glArrayElement
, i
);
2041 D(bug("...exit\n"));
2045 void glDrawArrays (GLenum mode
, GLint first
, GLsizei count
)
2048 D(bug("[HostGL] TASK: 0x%x, glDrawArrays", FindTask(NULL
)));
2049 GLCALL(glDrawArrays
, mode
, first
, count
);
2050 D(bug("...exit\n"));
2054 void glDrawElements (GLenum mode
, GLsizei count
, GLenum type
, const GLvoid
* indices
)
2057 D(bug("[HostGL] TASK: 0x%x, glDrawElements", FindTask(NULL
)));
2058 GLCALL(glDrawElements
, mode
, count
, type
, indices
);
2059 D(bug("...exit\n"));
2063 void glInterleavedArrays (GLenum format
, GLsizei stride
, const GLvoid
* pointer
)
2066 D(bug("[HostGL] TASK: 0x%x, glInterleavedArrays", FindTask(NULL
)));
2067 GLCALL(glInterleavedArrays
, format
, stride
, pointer
);
2068 D(bug("...exit\n"));
2072 void glShadeModel (GLenum mode
)
2075 D(bug("[HostGL] TASK: 0x%x, glShadeModel", FindTask(NULL
)));
2076 GLCALL(glShadeModel
, mode
);
2077 D(bug("...exit\n"));
2081 void glLightf (GLenum light
, GLenum pname
, GLfloat param
)
2084 D(bug("[HostGL] TASK: 0x%x, glLightf", FindTask(NULL
)));
2085 GLCALL(glLightf
, light
, pname
, param
);
2086 D(bug("...exit\n"));
2090 void glLighti (GLenum light
, GLenum pname
, GLint param
)
2093 D(bug("[HostGL] TASK: 0x%x, glLighti", FindTask(NULL
)));
2094 GLCALL(glLighti
, light
, pname
, param
);
2095 D(bug("...exit\n"));
2099 void glLightfv (GLenum light
, GLenum pname
, const GLfloat
* params
)
2102 D(bug("[HostGL] TASK: 0x%x, glLightfv", FindTask(NULL
)));
2103 GLCALL(glLightfv
, light
, pname
, params
);
2104 D(bug("...exit\n"));
2108 void glLightiv (GLenum light
, GLenum pname
, const GLint
* params
)
2111 D(bug("[HostGL] TASK: 0x%x, glLightiv", FindTask(NULL
)));
2112 GLCALL(glLightiv
, light
, pname
, params
);
2113 D(bug("...exit\n"));
2117 void glGetLightfv (GLenum light
, GLenum pname
, GLfloat
* params
)
2120 D(bug("[HostGL] TASK: 0x%x, glGetLightfv", FindTask(NULL
)));
2121 GLCALL(glGetLightfv
, light
, pname
, params
);
2122 D(bug("...exit\n"));
2126 void glGetLightiv (GLenum light
, GLenum pname
, GLint
* params
)
2129 D(bug("[HostGL] TASK: 0x%x, glGetLightiv", FindTask(NULL
)));
2130 GLCALL(glGetLightiv
, light
, pname
, params
);
2131 D(bug("...exit\n"));
2135 void glLightModelf (GLenum pname
, GLfloat param
)
2138 D(bug("[HostGL] TASK: 0x%x, glLightModelf", FindTask(NULL
)));
2139 GLCALL(glLightModelf
, pname
, param
);
2140 D(bug("...exit\n"));
2144 void glLightModeli (GLenum pname
, GLint param
)
2147 D(bug("[HostGL] TASK: 0x%x, glLightModeli", FindTask(NULL
)));
2148 GLCALL(glLightModeli
, pname
, param
);
2149 D(bug("...exit\n"));
2153 void glLightModelfv (GLenum pname
, const GLfloat
* params
)
2156 D(bug("[HostGL] TASK: 0x%x, glLightModelfv", FindTask(NULL
)));
2157 GLCALL(glLightModelfv
, pname
, params
);
2158 D(bug("...exit\n"));
2162 void glLightModeliv (GLenum pname
, const GLint
* params
)
2165 D(bug("[HostGL] TASK: 0x%x, glLightModeliv", FindTask(NULL
)));
2166 GLCALL(glLightModeliv
, pname
, params
);
2167 D(bug("...exit\n"));
2171 void glMaterialf (GLenum face
, GLenum pname
, GLfloat param
)
2174 D(bug("[HostGL] TASK: 0x%x, glMaterialf", FindTask(NULL
)));
2175 GLCALL(glMaterialf
, face
, pname
, param
);
2176 D(bug("...exit\n"));
2180 void glMateriali (GLenum face
, GLenum pname
, GLint param
)
2183 D(bug("[HostGL] TASK: 0x%x, glMateriali", FindTask(NULL
)));
2184 GLCALL(glMateriali
, face
, pname
, param
);
2185 D(bug("...exit\n"));
2189 void glMaterialfv (GLenum face
, GLenum pname
, const GLfloat
* params
)
2192 D(bug("[HostGL] TASK: 0x%x, glMaterialfv", FindTask(NULL
)));
2193 GLCALL(glMaterialfv
, face
, pname
, params
);
2194 D(bug("...exit\n"));
2198 void glMaterialiv (GLenum face
, GLenum pname
, const GLint
* params
)
2201 D(bug("[HostGL] TASK: 0x%x, glMaterialiv", FindTask(NULL
)));
2202 GLCALL(glMaterialiv
, face
, pname
, params
);
2203 D(bug("...exit\n"));
2207 void glGetMaterialfv (GLenum face
, GLenum pname
, GLfloat
* params
)
2210 D(bug("[HostGL] TASK: 0x%x, glGetMaterialfv", FindTask(NULL
)));
2211 GLCALL(glGetMaterialfv
, face
, pname
, params
);
2212 D(bug("...exit\n"));
2216 void glGetMaterialiv (GLenum face
, GLenum pname
, GLint
* params
)
2219 D(bug("[HostGL] TASK: 0x%x, glGetMaterialiv", FindTask(NULL
)));
2220 GLCALL(glGetMaterialiv
, face
, pname
, params
);
2221 D(bug("...exit\n"));
2225 void glColorMaterial (GLenum face
, GLenum mode
)
2228 D(bug("[HostGL] TASK: 0x%x, glColorMaterial", FindTask(NULL
)));
2229 GLCALL(glColorMaterial
, face
, mode
);
2230 D(bug("...exit\n"));
2234 void glPixelZoom (GLfloat xfactor
, GLfloat yfactor
)
2237 D(bug("[HostGL] TASK: 0x%x, glPixelZoom", FindTask(NULL
)));
2238 GLCALL(glPixelZoom
, xfactor
, yfactor
);
2239 D(bug("...exit\n"));
2243 void glPixelStoref (GLenum pname
, GLfloat param
)
2246 D(bug("[HostGL] TASK: 0x%x, glPixelStoref", FindTask(NULL
)));
2247 GLCALL(glPixelStoref
, pname
, param
);
2248 D(bug("...exit\n"));
2252 void glPixelStorei (GLenum pname
, GLint param
)
2255 D(bug("[HostGL] TASK: 0x%x, glPixelStorei", FindTask(NULL
)));
2256 GLCALL(glPixelStorei
, pname
, param
);
2257 D(bug("...exit\n"));
2261 void glPixelTransferf (GLenum pname
, GLfloat param
)
2264 D(bug("[HostGL] TASK: 0x%x, glPixelTransferf", FindTask(NULL
)));
2265 GLCALL(glPixelTransferf
, pname
, param
);
2266 D(bug("...exit\n"));
2270 void glPixelTransferi (GLenum pname
, GLint param
)
2273 D(bug("[HostGL] TASK: 0x%x, glPixelTransferi", FindTask(NULL
)));
2274 GLCALL(glPixelTransferi
, pname
, param
);
2275 D(bug("...exit\n"));
2279 void glPixelMapfv (GLenum map
, GLsizei mapsize
, const GLfloat
* values
)
2282 D(bug("[HostGL] TASK: 0x%x, glPixelMapfv", FindTask(NULL
)));
2283 GLCALL(glPixelMapfv
, map
, mapsize
, values
);
2284 D(bug("...exit\n"));
2288 void glPixelMapuiv (GLenum map
, GLsizei mapsize
, const GLuint
* values
)
2291 D(bug("[HostGL] TASK: 0x%x, glPixelMapuiv", FindTask(NULL
)));
2292 GLCALL(glPixelMapuiv
, map
, mapsize
, values
);
2293 D(bug("...exit\n"));
2297 void glPixelMapusv (GLenum map
, GLsizei mapsize
, const GLushort
* values
)
2300 D(bug("[HostGL] TASK: 0x%x, glPixelMapusv", FindTask(NULL
)));
2301 GLCALL(glPixelMapusv
, map
, mapsize
, values
);
2302 D(bug("...exit\n"));
2306 void glGetPixelMapfv (GLenum map
, GLfloat
* values
)
2309 D(bug("[HostGL] TASK: 0x%x, glGetPixelMapfv", FindTask(NULL
)));
2310 GLCALL(glGetPixelMapfv
, map
, values
);
2311 D(bug("...exit\n"));
2315 void glGetPixelMapuiv (GLenum map
, GLuint
* values
)
2318 D(bug("[HostGL] TASK: 0x%x, glGetPixelMapuiv", FindTask(NULL
)));
2319 GLCALL(glGetPixelMapuiv
, map
, values
);
2320 D(bug("...exit\n"));
2324 void glGetPixelMapusv (GLenum map
, GLushort
* values
)
2327 D(bug("[HostGL] TASK: 0x%x, glGetPixelMapusv", FindTask(NULL
)));
2328 GLCALL(glGetPixelMapusv
, map
, values
);
2329 D(bug("...exit\n"));
2333 void glBitmap (GLsizei width
, GLsizei height
, GLfloat xorig
, GLfloat yorig
, GLfloat xmove
, GLfloat ymove
, const GLubyte
* bitmap
)
2336 D(bug("[HostGL] TASK: 0x%x, glBitmap", FindTask(NULL
)));
2337 GLCALL(glBitmap
, width
, height
, xorig
, yorig
, xmove
, ymove
, bitmap
);
2338 D(bug("...exit\n"));
2342 void glReadPixels (GLint x
, GLint y
, GLsizei width
, GLsizei height
, GLenum format
, GLenum type
, GLvoid
* pixels
)
2345 D(bug("[HostGL] TASK: 0x%x, glReadPixels", FindTask(NULL
)));
2346 GLCALL(glReadPixels
, x
, y
, width
, height
, format
, type
, pixels
);
2347 D(bug("...exit\n"));
2351 void glDrawPixels (GLsizei width
, GLsizei height
, GLenum format
, GLenum type
, const GLvoid
* pixels
)
2354 D(bug("[HostGL] TASK: 0x%x, glDrawPixels", FindTask(NULL
)));
2355 GLCALL(glDrawPixels
, width
, height
, format
, type
, pixels
);
2356 D(bug("...exit\n"));
2360 void glCopyPixels (GLint x
, GLint y
, GLsizei width
, GLsizei height
, GLenum type
)
2363 D(bug("[HostGL] TASK: 0x%x, glCopyPixels", FindTask(NULL
)));
2364 GLCALL(glCopyPixels
, x
, y
, width
, height
, type
);
2365 D(bug("...exit\n"));
2369 void glStencilFunc (GLenum func
, GLint ref
, GLuint mask
)
2372 D(bug("[HostGL] TASK: 0x%x, glStencilFunc", FindTask(NULL
)));
2373 GLCALL(glStencilFunc
, func
, ref
, mask
);
2374 D(bug("...exit\n"));
2378 void glStencilMask (GLuint mask
)
2381 D(bug("[HostGL] TASK: 0x%x, glStencilMask", FindTask(NULL
)));
2382 GLCALL(glStencilMask
, mask
);
2383 D(bug("...exit\n"));
2387 void glStencilOp (GLenum fail
, GLenum zfail
, GLenum zpass
)
2390 D(bug("[HostGL] TASK: 0x%x, glStencilOp", FindTask(NULL
)));
2391 GLCALL(glStencilOp
, fail
, zfail
, zpass
);
2392 D(bug("...exit\n"));
2396 void glClearStencil (GLint s
)
2399 D(bug("[HostGL] TASK: 0x%x, glClearStencil", FindTask(NULL
)));
2400 GLCALL(glClearStencil
, s
);
2401 D(bug("...exit\n"));
2405 void glTexGend (GLenum coord
, GLenum pname
, GLdouble param
)
2408 D(bug("[HostGL] TASK: 0x%x, glTexGend", FindTask(NULL
)));
2409 GLCALL(glTexGend
, coord
, pname
, param
);
2410 D(bug("...exit\n"));
2414 void glTexGenf (GLenum coord
, GLenum pname
, GLfloat param
)
2417 D(bug("[HostGL] TASK: 0x%x, glTexGenf", FindTask(NULL
)));
2418 GLCALL(glTexGenf
, coord
, pname
, param
);
2419 D(bug("...exit\n"));
2423 void glTexGeni (GLenum coord
, GLenum pname
, GLint param
)
2426 D(bug("[HostGL] TASK: 0x%x, glTexGeni", FindTask(NULL
)));
2427 GLCALL(glTexGeni
, coord
, pname
, param
);
2428 D(bug("...exit\n"));
2432 void glTexGendv (GLenum coord
, GLenum pname
, const GLdouble
* params
)
2435 D(bug("[HostGL] TASK: 0x%x, glTexGendv", FindTask(NULL
)));
2436 GLCALL(glTexGendv
, coord
, pname
, params
);
2437 D(bug("...exit\n"));
2441 void glTexGenfv (GLenum coord
, GLenum pname
, const GLfloat
* params
)
2444 D(bug("[HostGL] TASK: 0x%x, glTexGenfv", FindTask(NULL
)));
2445 GLCALL(glTexGenfv
, coord
, pname
, params
);
2446 D(bug("...exit\n"));
2450 void glTexGeniv (GLenum coord
, GLenum pname
, const GLint
* params
)
2453 D(bug("[HostGL] TASK: 0x%x, glTexGeniv", FindTask(NULL
)));
2454 GLCALL(glTexGeniv
, coord
, pname
, params
);
2455 D(bug("...exit\n"));
2459 void glGetTexGendv (GLenum coord
, GLenum pname
, GLdouble
* params
)
2462 D(bug("[HostGL] TASK: 0x%x, glGetTexGendv", FindTask(NULL
)));
2463 GLCALL(glGetTexGendv
, coord
, pname
, params
);
2464 D(bug("...exit\n"));
2468 void glGetTexGenfv (GLenum coord
, GLenum pname
, GLfloat
* params
)
2471 D(bug("[HostGL] TASK: 0x%x, glGetTexGenfv", FindTask(NULL
)));
2472 GLCALL(glGetTexGenfv
, coord
, pname
, params
);
2473 D(bug("...exit\n"));
2477 void glGetTexGeniv (GLenum coord
, GLenum pname
, GLint
* params
)
2480 D(bug("[HostGL] TASK: 0x%x, glGetTexGeniv", FindTask(NULL
)));
2481 GLCALL(glGetTexGeniv
, coord
, pname
, params
);
2482 D(bug("...exit\n"));
2486 void glTexEnvf (GLenum target
, GLenum pname
, GLfloat param
)
2489 D(bug("[HostGL] TASK: 0x%x, glTexEnvf", FindTask(NULL
)));
2490 GLCALL(glTexEnvf
, target
, pname
, param
);
2491 D(bug("...exit\n"));
2495 void glTexEnvi (GLenum target
, GLenum pname
, GLint param
)
2498 D(bug("[HostGL] TASK: 0x%x, glTexEnvi", FindTask(NULL
)));
2499 GLCALL(glTexEnvi
, target
, pname
, param
);
2500 D(bug("...exit\n"));
2504 void glTexEnvfv (GLenum target
, GLenum pname
, const GLfloat
* params
)
2507 D(bug("[HostGL] TASK: 0x%x, glTexEnvfv", FindTask(NULL
)));
2508 GLCALL(glTexEnvfv
, target
, pname
, params
);
2509 D(bug("...exit\n"));
2513 void glTexEnviv (GLenum target
, GLenum pname
, const GLint
* params
)
2516 D(bug("[HostGL] TASK: 0x%x, glTexEnviv", FindTask(NULL
)));
2517 GLCALL(glTexEnviv
, target
, pname
, params
);
2518 D(bug("...exit\n"));
2522 void glGetTexEnvfv (GLenum target
, GLenum pname
, GLfloat
* params
)
2525 D(bug("[HostGL] TASK: 0x%x, glGetTexEnvfv", FindTask(NULL
)));
2526 GLCALL(glGetTexEnvfv
, target
, pname
, params
);
2527 D(bug("...exit\n"));
2531 void glGetTexEnviv (GLenum target
, GLenum pname
, GLint
* params
)
2534 D(bug("[HostGL] TASK: 0x%x, glGetTexEnviv", FindTask(NULL
)));
2535 GLCALL(glGetTexEnviv
, target
, pname
, params
);
2536 D(bug("...exit\n"));
2540 void glTexParameterf (GLenum target
, GLenum pname
, GLfloat param
)
2543 D(bug("[HostGL] TASK: 0x%x, glTexParameterf", FindTask(NULL
)));
2544 GLCALL(glTexParameterf
, target
, pname
, param
);
2545 D(bug("...exit\n"));
2549 void glTexParameteri (GLenum target
, GLenum pname
, GLint param
)
2552 D(bug("[HostGL] TASK: 0x%x, glTexParameteri", FindTask(NULL
)));
2553 GLCALL(glTexParameteri
, target
, pname
, param
);
2554 D(bug("...exit\n"));
2558 void glTexParameterfv (GLenum target
, GLenum pname
, const GLfloat
* params
)
2561 D(bug("[HostGL] TASK: 0x%x, glTexParameterfv", FindTask(NULL
)));
2562 GLCALL(glTexParameterfv
, target
, pname
, params
);
2563 D(bug("...exit\n"));
2567 void glTexParameteriv (GLenum target
, GLenum pname
, const GLint
* params
)
2570 D(bug("[HostGL] TASK: 0x%x, glTexParameteriv", FindTask(NULL
)));
2571 GLCALL(glTexParameteriv
, target
, pname
, params
);
2572 D(bug("...exit\n"));
2576 void glGetTexParameterfv (GLenum target
, GLenum pname
, GLfloat
* params
)
2579 D(bug("[HostGL] TASK: 0x%x, glGetTexParameterfv", FindTask(NULL
)));
2580 GLCALL(glGetTexParameterfv
, target
, pname
, params
);
2581 D(bug("...exit\n"));
2585 void glGetTexParameteriv (GLenum target
, GLenum pname
, GLint
* params
)
2588 D(bug("[HostGL] TASK: 0x%x, glGetTexParameteriv", FindTask(NULL
)));
2589 GLCALL(glGetTexParameteriv
, target
, pname
, params
);
2590 D(bug("...exit\n"));
2594 void glGetTexLevelParameterfv (GLenum target
, GLint level
, GLenum pname
, GLfloat
* params
)
2597 D(bug("[HostGL] TASK: 0x%x, glGetTexLevelParameterfv", FindTask(NULL
)));
2598 GLCALL(glGetTexLevelParameterfv
, target
, level
, pname
, params
);
2599 D(bug("...exit\n"));
2603 void glGetTexLevelParameteriv (GLenum target
, GLint level
, GLenum pname
, GLint
* params
)
2606 D(bug("[HostGL] TASK: 0x%x, glGetTexLevelParameteriv", FindTask(NULL
)));
2607 GLCALL(glGetTexLevelParameteriv
, target
, level
, pname
, params
);
2608 D(bug("...exit\n"));
2612 void glTexImage1D (GLenum target
, GLint level
, GLint internalFormat
, GLsizei width
, GLint border
, GLenum format
, GLenum type
, const GLvoid
* pixels
)
2615 D(bug("[HostGL] TASK: 0x%x, glTexImage1D", FindTask(NULL
)));
2616 GLCALL(glTexImage1D
, target
, level
, internalFormat
, width
, border
, format
, type
, pixels
);
2617 D(bug("...exit\n"));
2621 void glTexImage2D (GLenum target
, GLint level
, GLint internalFormat
, GLsizei width
, GLsizei height
, GLint border
, GLenum format
, GLenum type
, const GLvoid
* pixels
)
2624 D(bug("[HostGL] TASK: 0x%x, glTexImage2D", FindTask(NULL
)));
2625 GLCALL(glTexImage2D
, target
, level
, internalFormat
, width
, height
, border
, format
, type
, pixels
);
2626 D(bug("...exit\n"));
2630 void glGetTexImage (GLenum target
, GLint level
, GLenum format
, GLenum type
, GLvoid
* pixels
)
2633 D(bug("[HostGL] TASK: 0x%x, glGetTexImage", FindTask(NULL
)));
2634 GLCALL(glGetTexImage
, target
, level
, format
, type
, pixels
);
2635 D(bug("...exit\n"));
2639 void glGenTextures (GLsizei n
, GLuint
* textures
)
2642 D(bug("[HostGL] TASK: 0x%x, glGenTextures", FindTask(NULL
)));
2643 GLCALL(glGenTextures
, n
, textures
);
2644 D(bug("...exit\n"));
2648 void glDeleteTextures (GLsizei n
, const GLuint
* textures
)
2651 D(bug("[HostGL] TASK: 0x%x, glDeleteTextures", FindTask(NULL
)));
2652 GLCALL(glDeleteTextures
, n
, textures
);
2653 D(bug("...exit\n"));
2657 void glBindTexture (GLenum target
, GLuint texture
)
2660 D(bug("[HostGL] TASK: 0x%x, glBindTexture", FindTask(NULL
)));
2661 GLCALL(glBindTexture
, target
, texture
);
2662 D(bug("...exit\n"));
2666 void glPrioritizeTextures (GLsizei n
, const GLuint
* textures
, const GLclampf
* priorities
)
2669 D(bug("[HostGL] TASK: 0x%x, glPrioritizeTextures", FindTask(NULL
)));
2670 GLCALL(glPrioritizeTextures
, n
, textures
, priorities
);
2671 D(bug("...exit\n"));
2675 GLboolean
glAreTexturesResident (GLsizei n
, const GLuint
* textures
, GLboolean
* residences
)
2679 D(bug("[HostGL] TASK: 0x%x, glAreTexturesResident", FindTask(NULL
)));
2680 _ret
= GLCALL(glAreTexturesResident
, n
, textures
, residences
);
2681 D(bug("...exit\n"));
2686 GLboolean
glIsTexture (GLuint texture
)
2690 D(bug("[HostGL] TASK: 0x%x, glIsTexture", FindTask(NULL
)));
2691 _ret
= GLCALL(glIsTexture
, texture
);
2692 D(bug("...exit\n"));
2697 void glTexSubImage1D (GLenum target
, GLint level
, GLint xoffset
, GLsizei width
, GLenum format
, GLenum type
, const GLvoid
* pixels
)
2700 D(bug("[HostGL] TASK: 0x%x, glTexSubImage1D", FindTask(NULL
)));
2701 GLCALL(glTexSubImage1D
, target
, level
, xoffset
, width
, format
, type
, pixels
);
2702 D(bug("...exit\n"));
2706 void glTexSubImage2D (GLenum target
, GLint level
, GLint xoffset
, GLint yoffset
, GLsizei width
, GLsizei height
, GLenum format
, GLenum type
, const GLvoid
* pixels
)
2709 D(bug("[HostGL] TASK: 0x%x, glTexSubImage2D", FindTask(NULL
)));
2710 GLCALL(glTexSubImage2D
, target
, level
, xoffset
, yoffset
, width
, height
, format
, type
, pixels
);
2711 D(bug("...exit\n"));
2715 void glCopyTexImage1D (GLenum target
, GLint level
, GLenum internalformat
, GLint x
, GLint y
, GLsizei width
, GLint border
)
2718 D(bug("[HostGL] TASK: 0x%x, glCopyTexImage1D", FindTask(NULL
)));
2719 GLCALL(glCopyTexImage1D
, target
, level
, internalformat
, x
, y
, width
, border
);
2720 D(bug("...exit\n"));
2724 void glCopyTexImage2D (GLenum target
, GLint level
, GLenum internalformat
, GLint x
, GLint y
, GLsizei width
, GLsizei height
, GLint border
)
2727 D(bug("[HostGL] TASK: 0x%x, glCopyTexImage2D", FindTask(NULL
)));
2728 GLCALL(glCopyTexImage2D
, target
, level
, internalformat
, x
, y
, width
, height
, border
);
2729 D(bug("...exit\n"));
2733 void glCopyTexSubImage1D (GLenum target
, GLint level
, GLint xoffset
, GLint x
, GLint y
, GLsizei width
)
2736 D(bug("[HostGL] TASK: 0x%x, glCopyTexSubImage1D", FindTask(NULL
)));
2737 GLCALL(glCopyTexSubImage1D
, target
, level
, xoffset
, x
, y
, width
);
2738 D(bug("...exit\n"));
2742 void glCopyTexSubImage2D (GLenum target
, GLint level
, GLint xoffset
, GLint yoffset
, GLint x
, GLint y
, GLsizei width
, GLsizei height
)
2745 D(bug("[HostGL] TASK: 0x%x, glCopyTexSubImage2D", FindTask(NULL
)));
2746 GLCALL(glCopyTexSubImage2D
, target
, level
, xoffset
, yoffset
, x
, y
, width
, height
);
2747 D(bug("...exit\n"));
2751 void glMap1d (GLenum target
, GLdouble u1
, GLdouble u2
, GLint stride
, GLint order
, const GLdouble
* points
)
2754 D(bug("[HostGL] TASK: 0x%x, glMap1d", FindTask(NULL
)));
2755 GLCALL(glMap1d
, target
, u1
, u2
, stride
, order
, points
);
2756 D(bug("...exit\n"));
2760 void glMap1f (GLenum target
, GLfloat u1
, GLfloat u2
, GLint stride
, GLint order
, const GLfloat
* points
)
2763 D(bug("[HostGL] TASK: 0x%x, glMap1f", FindTask(NULL
)));
2764 GLCALL(glMap1f
, target
, u1
, u2
, stride
, order
, points
);
2765 D(bug("...exit\n"));
2769 void glMap2d (GLenum target
, GLdouble u1
, GLdouble u2
, GLint ustride
, GLint uorder
, GLdouble v1
, GLdouble v2
, GLint vstride
, GLint vorder
, const GLdouble
* points
)
2772 D(bug("[HostGL] TASK: 0x%x, glMap2d", FindTask(NULL
)));
2773 GLCALL(glMap2d
, target
, u1
, u2
, ustride
, uorder
, v1
, v2
, vstride
, vorder
, points
);
2774 D(bug("...exit\n"));
2778 void glMap2f (GLenum target
, GLfloat u1
, GLfloat u2
, GLint ustride
, GLint uorder
, GLfloat v1
, GLfloat v2
, GLint vstride
, GLint vorder
, const GLfloat
* points
)
2781 D(bug("[HostGL] TASK: 0x%x, glMap2f", FindTask(NULL
)));
2782 GLCALL(glMap2f
, target
, u1
, u2
, ustride
, uorder
, v1
, v2
, vstride
, vorder
, points
);
2783 D(bug("...exit\n"));
2787 void glGetMapdv (GLenum target
, GLenum query
, GLdouble
* v
)
2790 D(bug("[HostGL] TASK: 0x%x, glGetMapdv", FindTask(NULL
)));
2791 GLCALL(glGetMapdv
, target
, query
, v
);
2792 D(bug("...exit\n"));
2796 void glGetMapfv (GLenum target
, GLenum query
, GLfloat
* v
)
2799 D(bug("[HostGL] TASK: 0x%x, glGetMapfv", FindTask(NULL
)));
2800 GLCALL(glGetMapfv
, target
, query
, v
);
2801 D(bug("...exit\n"));
2805 void glGetMapiv (GLenum target
, GLenum query
, GLint
* v
)
2808 D(bug("[HostGL] TASK: 0x%x, glGetMapiv", FindTask(NULL
)));
2809 GLCALL(glGetMapiv
, target
, query
, v
);
2810 D(bug("...exit\n"));
2814 void glEvalCoord1d (GLdouble u
)
2817 D(bug("[HostGL] TASK: 0x%x, glEvalCoord1d", FindTask(NULL
)));
2818 GLCALL(glEvalCoord1d
, u
);
2819 D(bug("...exit\n"));
2823 void glEvalCoord1f (GLfloat u
)
2826 D(bug("[HostGL] TASK: 0x%x, glEvalCoord1f", FindTask(NULL
)));
2827 GLCALL(glEvalCoord1f
, u
);
2828 D(bug("...exit\n"));
2832 void glEvalCoord1dv (const GLdouble
* u
)
2835 D(bug("[HostGL] TASK: 0x%x, glEvalCoord1dv", FindTask(NULL
)));
2836 GLCALL(glEvalCoord1dv
, u
);
2837 D(bug("...exit\n"));
2841 void glEvalCoord1fv (const GLfloat
* u
)
2844 D(bug("[HostGL] TASK: 0x%x, glEvalCoord1fv", FindTask(NULL
)));
2845 GLCALL(glEvalCoord1fv
, u
);
2846 D(bug("...exit\n"));
2850 void glEvalCoord2d (GLdouble u
, GLdouble v
)
2853 D(bug("[HostGL] TASK: 0x%x, glEvalCoord2d", FindTask(NULL
)));
2854 GLCALL(glEvalCoord2d
, u
, v
);
2855 D(bug("...exit\n"));
2859 void glEvalCoord2f (GLfloat u
, GLfloat v
)
2862 D(bug("[HostGL] TASK: 0x%x, glEvalCoord2f", FindTask(NULL
)));
2863 GLCALL(glEvalCoord2f
, u
, v
);
2864 D(bug("...exit\n"));
2868 void glEvalCoord2dv (const GLdouble
* u
)
2871 D(bug("[HostGL] TASK: 0x%x, glEvalCoord2dv", FindTask(NULL
)));
2872 GLCALL(glEvalCoord2dv
, u
);
2873 D(bug("...exit\n"));
2877 void glEvalCoord2fv (const GLfloat
* u
)
2880 D(bug("[HostGL] TASK: 0x%x, glEvalCoord2fv", FindTask(NULL
)));
2881 GLCALL(glEvalCoord2fv
, u
);
2882 D(bug("...exit\n"));
2886 void glMapGrid1d (GLint un
, GLdouble u1
, GLdouble u2
)
2889 D(bug("[HostGL] TASK: 0x%x, glMapGrid1d", FindTask(NULL
)));
2890 GLCALL(glMapGrid1d
, un
, u1
, u2
);
2891 D(bug("...exit\n"));
2895 void glMapGrid1f (GLint un
, GLfloat u1
, GLfloat u2
)
2898 D(bug("[HostGL] TASK: 0x%x, glMapGrid1f", FindTask(NULL
)));
2899 GLCALL(glMapGrid1f
, un
, u1
, u2
);
2900 D(bug("...exit\n"));
2904 void glMapGrid2d (GLint un
, GLdouble u1
, GLdouble u2
, GLint vn
, GLdouble v1
, GLdouble v2
)
2907 D(bug("[HostGL] TASK: 0x%x, glMapGrid2d", FindTask(NULL
)));
2908 GLCALL(glMapGrid2d
, un
, u1
, u2
, vn
, v1
, v2
);
2909 D(bug("...exit\n"));
2913 void glMapGrid2f (GLint un
, GLfloat u1
, GLfloat u2
, GLint vn
, GLfloat v1
, GLfloat v2
)
2916 D(bug("[HostGL] TASK: 0x%x, glMapGrid2f", FindTask(NULL
)));
2917 GLCALL(glMapGrid2f
, un
, u1
, u2
, vn
, v1
, v2
);
2918 D(bug("...exit\n"));
2922 void glEvalPoint1 (GLint i
)
2925 D(bug("[HostGL] TASK: 0x%x, glEvalPoint1", FindTask(NULL
)));
2926 GLCALL(glEvalPoint1
, i
);
2927 D(bug("...exit\n"));
2931 void glEvalPoint2 (GLint i
, GLint j
)
2934 D(bug("[HostGL] TASK: 0x%x, glEvalPoint2", FindTask(NULL
)));
2935 GLCALL(glEvalPoint2
, i
, j
);
2936 D(bug("...exit\n"));
2940 void glEvalMesh1 (GLenum mode
, GLint i1
, GLint i2
)
2943 D(bug("[HostGL] TASK: 0x%x, glEvalMesh1", FindTask(NULL
)));
2944 GLCALL(glEvalMesh1
, mode
, i1
, i2
);
2945 D(bug("...exit\n"));
2949 void glEvalMesh2 (GLenum mode
, GLint i1
, GLint i2
, GLint j1
, GLint j2
)
2952 D(bug("[HostGL] TASK: 0x%x, glEvalMesh2", FindTask(NULL
)));
2953 GLCALL(glEvalMesh2
, mode
, i1
, i2
, j1
, j2
);
2954 D(bug("...exit\n"));
2958 void glFogf (GLenum pname
, GLfloat param
)
2961 D(bug("[HostGL] TASK: 0x%x, glFogf", FindTask(NULL
)));
2962 GLCALL(glFogf
, pname
, param
);
2963 D(bug("...exit\n"));
2967 void glFogi (GLenum pname
, GLint param
)
2970 D(bug("[HostGL] TASK: 0x%x, glFogi", FindTask(NULL
)));
2971 GLCALL(glFogi
, pname
, param
);
2972 D(bug("...exit\n"));
2976 void glFogfv (GLenum pname
, const GLfloat
* params
)
2979 D(bug("[HostGL] TASK: 0x%x, glFogfv", FindTask(NULL
)));
2980 GLCALL(glFogfv
, pname
, params
);
2981 D(bug("...exit\n"));
2985 void glFogiv (GLenum pname
, const GLint
* params
)
2988 D(bug("[HostGL] TASK: 0x%x, glFogiv", FindTask(NULL
)));
2989 GLCALL(glFogiv
, pname
, params
);
2990 D(bug("...exit\n"));
2994 void glFeedbackBuffer (GLsizei size
, GLenum type
, GLfloat
* buffer
)
2997 D(bug("[HostGL] TASK: 0x%x, glFeedbackBuffer", FindTask(NULL
)));
2998 GLCALL(glFeedbackBuffer
, size
, type
, buffer
);
2999 D(bug("...exit\n"));
3003 void glPassThrough (GLfloat token
)
3006 D(bug("[HostGL] TASK: 0x%x, glPassThrough", FindTask(NULL
)));
3007 GLCALL(glPassThrough
, token
);
3008 D(bug("...exit\n"));
3012 void glSelectBuffer (GLsizei size
, GLuint
* buffer
)
3015 D(bug("[HostGL] TASK: 0x%x, glSelectBuffer", FindTask(NULL
)));
3016 GLCALL(glSelectBuffer
, size
, buffer
);
3017 D(bug("...exit\n"));
3024 D(bug("[HostGL] TASK: 0x%x, glInitNames", FindTask(NULL
)));
3025 GLCALL(glInitNames
);
3026 D(bug("...exit\n"));
3030 void glLoadName (GLuint name
)
3033 D(bug("[HostGL] TASK: 0x%x, glLoadName", FindTask(NULL
)));
3034 GLCALL(glLoadName
, name
);
3035 D(bug("...exit\n"));
3039 void glPushName (GLuint name
)
3042 D(bug("[HostGL] TASK: 0x%x, glPushName", FindTask(NULL
)));
3043 GLCALL(glPushName
, name
);
3044 D(bug("...exit\n"));
3051 D(bug("[HostGL] TASK: 0x%x, glPopName", FindTask(NULL
)));
3053 D(bug("...exit\n"));
3057 void glDrawRangeElements (GLenum mode
, GLuint start
, GLuint end
, GLsizei count
, GLenum type
, const GLvoid
* indices
)
3060 D(bug("[HostGL] TASK: 0x%x, glDrawRangeElements", FindTask(NULL
)));
3061 GLCALL(glDrawRangeElements
, mode
, start
, end
, count
, type
, indices
);
3062 D(bug("...exit\n"));
3066 void glTexImage3D (GLenum target
, GLint level
, GLint internalFormat
, GLsizei width
, GLsizei height
, GLsizei depth
, GLint border
, GLenum format
, GLenum type
, const GLvoid
* pixels
)
3069 D(bug("[HostGL] TASK: 0x%x, glTexImage3D", FindTask(NULL
)));
3070 GLCALL(glTexImage3D
, target
, level
, internalFormat
, width
, height
, depth
, border
, format
, type
, pixels
);
3071 D(bug("...exit\n"));
3075 void glTexSubImage3D (GLenum target
, GLint level
, GLint xoffset
, GLint yoffset
, GLint zoffset
, GLsizei width
, GLsizei height
, GLsizei depth
, GLenum format
, GLenum type
, const GLvoid
* pixels
)
3078 D(bug("[HostGL] TASK: 0x%x, glTexSubImage3D", FindTask(NULL
)));
3079 GLCALL(glTexSubImage3D
, target
, level
, xoffset
, yoffset
, zoffset
, width
, height
, depth
, format
, type
, pixels
);
3080 D(bug("...exit\n"));
3084 void glCopyTexSubImage3D (GLenum target
, GLint level
, GLint xoffset
, GLint yoffset
, GLint zoffset
, GLint x
, GLint y
, GLsizei width
, GLsizei height
)
3087 D(bug("[HostGL] TASK: 0x%x, glCopyTexSubImage3D", FindTask(NULL
)));
3088 GLCALL(glCopyTexSubImage3D
, target
, level
, xoffset
, yoffset
, zoffset
, x
, y
, width
, height
);
3089 D(bug("...exit\n"));
3093 void glColorTable (GLenum target
, GLenum internalformat
, GLsizei width
, GLenum format
, GLenum type
, const GLvoid
* table
)
3096 D(bug("[HostGL] TASK: 0x%x, glColorTable", FindTask(NULL
)));
3097 GLCALL(glColorTable
, target
, internalformat
, width
, format
, type
, table
);
3098 D(bug("...exit\n"));
3102 void glColorSubTable (GLenum target
, GLsizei start
, GLsizei count
, GLenum format
, GLenum type
, const GLvoid
* data
)
3105 D(bug("[HostGL] TASK: 0x%x, glColorSubTable", FindTask(NULL
)));
3106 GLCALL(glColorSubTable
, target
, start
, count
, format
, type
, data
);
3107 D(bug("...exit\n"));
3111 void glColorTableParameteriv (GLenum target
, GLenum pname
, const GLint
* params
)
3114 D(bug("[HostGL] TASK: 0x%x, glColorTableParameteriv", FindTask(NULL
)));
3115 GLCALL(glColorTableParameteriv
, target
, pname
, params
);
3116 D(bug("...exit\n"));
3120 void glColorTableParameterfv (GLenum target
, GLenum pname
, const GLfloat
* params
)
3123 D(bug("[HostGL] TASK: 0x%x, glColorTableParameterfv", FindTask(NULL
)));
3124 GLCALL(glColorTableParameterfv
, target
, pname
, params
);
3125 D(bug("...exit\n"));
3129 void glCopyColorSubTable (GLenum target
, GLsizei start
, GLint x
, GLint y
, GLsizei width
)
3132 D(bug("[HostGL] TASK: 0x%x, glCopyColorSubTable", FindTask(NULL
)));
3133 GLCALL(glCopyColorSubTable
, target
, start
, x
, y
, width
);
3134 D(bug("...exit\n"));
3138 void glCopyColorTable (GLenum target
, GLenum internalformat
, GLint x
, GLint y
, GLsizei width
)
3141 D(bug("[HostGL] TASK: 0x%x, glCopyColorTable", FindTask(NULL
)));
3142 GLCALL(glCopyColorTable
, target
, internalformat
, x
, y
, width
);
3143 D(bug("...exit\n"));
3147 void glGetColorTable (GLenum target
, GLenum format
, GLenum type
, GLvoid
* table
)
3150 D(bug("[HostGL] TASK: 0x%x, glGetColorTable", FindTask(NULL
)));
3151 GLCALL(glGetColorTable
, target
, format
, type
, table
);
3152 D(bug("...exit\n"));
3156 void glGetColorTableParameterfv (GLenum target
, GLenum pname
, GLfloat
* params
)
3159 D(bug("[HostGL] TASK: 0x%x, glGetColorTableParameterfv", FindTask(NULL
)));
3160 GLCALL(glGetColorTableParameterfv
, target
, pname
, params
);
3161 D(bug("...exit\n"));
3165 void glGetColorTableParameteriv (GLenum target
, GLenum pname
, GLint
* params
)
3168 D(bug("[HostGL] TASK: 0x%x, glGetColorTableParameteriv", FindTask(NULL
)));
3169 GLCALL(glGetColorTableParameteriv
, target
, pname
, params
);
3170 D(bug("...exit\n"));
3174 void glBlendEquation (GLenum mode
)
3177 D(bug("[HostGL] TASK: 0x%x, glBlendEquation", FindTask(NULL
)));
3178 GLCALL(glBlendEquation
, mode
);
3179 D(bug("...exit\n"));
3183 void glBlendColor (GLclampf red
, GLclampf green
, GLclampf blue
, GLclampf alpha
)
3186 D(bug("[HostGL] TASK: 0x%x, glBlendColor", FindTask(NULL
)));
3187 GLCALL(glBlendColor
, red
, green
, blue
, alpha
);
3188 D(bug("...exit\n"));
3192 void glHistogram (GLenum target
, GLsizei width
, GLenum internalformat
, GLboolean sink
)
3195 D(bug("[HostGL] TASK: 0x%x, glHistogram", FindTask(NULL
)));
3196 GLCALL(glHistogram
, target
, width
, internalformat
, sink
);
3197 D(bug("...exit\n"));
3201 void glResetHistogram (GLenum target
)
3204 D(bug("[HostGL] TASK: 0x%x, glResetHistogram", FindTask(NULL
)));
3205 GLCALL(glResetHistogram
, target
);
3206 D(bug("...exit\n"));
3210 void glGetHistogram (GLenum target
, GLboolean reset
, GLenum format
, GLenum type
, GLvoid
* values
)
3213 D(bug("[HostGL] TASK: 0x%x, glGetHistogram", FindTask(NULL
)));
3214 GLCALL(glGetHistogram
, target
, reset
, format
, type
, values
);
3215 D(bug("...exit\n"));
3219 void glGetHistogramParameterfv (GLenum target
, GLenum pname
, GLfloat
* params
)
3222 D(bug("[HostGL] TASK: 0x%x, glGetHistogramParameterfv", FindTask(NULL
)));
3223 GLCALL(glGetHistogramParameterfv
, target
, pname
, params
);
3224 D(bug("...exit\n"));
3228 void glGetHistogramParameteriv (GLenum target
, GLenum pname
, GLint
* params
)
3231 D(bug("[HostGL] TASK: 0x%x, glGetHistogramParameteriv", FindTask(NULL
)));
3232 GLCALL(glGetHistogramParameteriv
, target
, pname
, params
);
3233 D(bug("...exit\n"));
3237 void glMinmax (GLenum target
, GLenum internalformat
, GLboolean sink
)
3240 D(bug("[HostGL] TASK: 0x%x, glMinmax", FindTask(NULL
)));
3241 GLCALL(glMinmax
, target
, internalformat
, sink
);
3242 D(bug("...exit\n"));
3246 void glResetMinmax (GLenum target
)
3249 D(bug("[HostGL] TASK: 0x%x, glResetMinmax", FindTask(NULL
)));
3250 GLCALL(glResetMinmax
, target
);
3251 D(bug("...exit\n"));
3255 void glGetMinmax (GLenum target
, GLboolean reset
, GLenum format
, GLenum types
, GLvoid
* values
)
3258 D(bug("[HostGL] TASK: 0x%x, glGetMinmax", FindTask(NULL
)));
3259 GLCALL(glGetMinmax
, target
, reset
, format
, types
, values
);
3260 D(bug("...exit\n"));
3264 void glGetMinmaxParameterfv (GLenum target
, GLenum pname
, GLfloat
* params
)
3267 D(bug("[HostGL] TASK: 0x%x, glGetMinmaxParameterfv", FindTask(NULL
)));
3268 GLCALL(glGetMinmaxParameterfv
, target
, pname
, params
);
3269 D(bug("...exit\n"));
3273 void glGetMinmaxParameteriv (GLenum target
, GLenum pname
, GLint
* params
)
3276 D(bug("[HostGL] TASK: 0x%x, glGetMinmaxParameteriv", FindTask(NULL
)));
3277 GLCALL(glGetMinmaxParameteriv
, target
, pname
, params
);
3278 D(bug("...exit\n"));
3282 void glConvolutionFilter1D (GLenum target
, GLenum internalformat
, GLsizei width
, GLenum format
, GLenum type
, const GLvoid
* image
)
3285 D(bug("[HostGL] TASK: 0x%x, glConvolutionFilter1D", FindTask(NULL
)));
3286 GLCALL(glConvolutionFilter1D
, target
, internalformat
, width
, format
, type
, image
);
3287 D(bug("...exit\n"));
3291 void glConvolutionFilter2D (GLenum target
, GLenum internalformat
, GLsizei width
, GLsizei height
, GLenum format
, GLenum type
, const GLvoid
* image
)
3294 D(bug("[HostGL] TASK: 0x%x, glConvolutionFilter2D", FindTask(NULL
)));
3295 GLCALL(glConvolutionFilter2D
, target
, internalformat
, width
, height
, format
, type
, image
);
3296 D(bug("...exit\n"));
3300 void glConvolutionParameterf (GLenum target
, GLenum pname
, GLfloat params
)
3303 D(bug("[HostGL] TASK: 0x%x, glConvolutionParameterf", FindTask(NULL
)));
3304 GLCALL(glConvolutionParameterf
, target
, pname
, params
);
3305 D(bug("...exit\n"));
3309 void glConvolutionParameterfv (GLenum target
, GLenum pname
, const GLfloat
* params
)
3312 D(bug("[HostGL] TASK: 0x%x, glConvolutionParameterfv", FindTask(NULL
)));
3313 GLCALL(glConvolutionParameterfv
, target
, pname
, params
);
3314 D(bug("...exit\n"));
3318 void glConvolutionParameteri (GLenum target
, GLenum pname
, GLint params
)
3321 D(bug("[HostGL] TASK: 0x%x, glConvolutionParameteri", FindTask(NULL
)));
3322 GLCALL(glConvolutionParameteri
, target
, pname
, params
);
3323 D(bug("...exit\n"));
3327 void glConvolutionParameteriv (GLenum target
, GLenum pname
, const GLint
* params
)
3330 D(bug("[HostGL] TASK: 0x%x, glConvolutionParameteriv", FindTask(NULL
)));
3331 GLCALL(glConvolutionParameteriv
, target
, pname
, params
);
3332 D(bug("...exit\n"));
3336 void glCopyConvolutionFilter1D (GLenum target
, GLenum internalformat
, GLint x
, GLint y
, GLsizei width
)
3339 D(bug("[HostGL] TASK: 0x%x, glCopyConvolutionFilter1D", FindTask(NULL
)));
3340 GLCALL(glCopyConvolutionFilter1D
, target
, internalformat
, x
, y
, width
);
3341 D(bug("...exit\n"));
3345 void glCopyConvolutionFilter2D (GLenum target
, GLenum internalformat
, GLint x
, GLint y
, GLsizei width
, GLsizei height
)
3348 D(bug("[HostGL] TASK: 0x%x, glCopyConvolutionFilter2D", FindTask(NULL
)));
3349 GLCALL(glCopyConvolutionFilter2D
, target
, internalformat
, x
, y
, width
, height
);
3350 D(bug("...exit\n"));
3354 void glGetConvolutionFilter (GLenum target
, GLenum format
, GLenum type
, GLvoid
* image
)
3357 D(bug("[HostGL] TASK: 0x%x, glGetConvolutionFilter", FindTask(NULL
)));
3358 GLCALL(glGetConvolutionFilter
, target
, format
, type
, image
);
3359 D(bug("...exit\n"));
3363 void glGetConvolutionParameterfv (GLenum target
, GLenum pname
, GLfloat
* params
)
3366 D(bug("[HostGL] TASK: 0x%x, glGetConvolutionParameterfv", FindTask(NULL
)));
3367 GLCALL(glGetConvolutionParameterfv
, target
, pname
, params
);
3368 D(bug("...exit\n"));
3372 void glGetConvolutionParameteriv (GLenum target
, GLenum pname
, GLint
* params
)
3375 D(bug("[HostGL] TASK: 0x%x, glGetConvolutionParameteriv", FindTask(NULL
)));
3376 GLCALL(glGetConvolutionParameteriv
, target
, pname
, params
);
3377 D(bug("...exit\n"));
3381 void glSeparableFilter2D (GLenum target
, GLenum internalformat
, GLsizei width
, GLsizei height
, GLenum format
, GLenum type
, const GLvoid
* row
, const GLvoid
* column
)
3384 D(bug("[HostGL] TASK: 0x%x, glSeparableFilter2D", FindTask(NULL
)));
3385 GLCALL(glSeparableFilter2D
, target
, internalformat
, width
, height
, format
, type
, row
, column
);
3386 D(bug("...exit\n"));
3390 void glGetSeparableFilter (GLenum target
, GLenum format
, GLenum type
, GLvoid
* row
, GLvoid
* column
, GLvoid
* span
)
3393 D(bug("[HostGL] TASK: 0x%x, glGetSeparableFilter", FindTask(NULL
)));
3394 GLCALL(glGetSeparableFilter
, target
, format
, type
, row
, column
, span
);
3395 D(bug("...exit\n"));
3399 void glActiveTexture (GLenum texture
)
3402 D(bug("[HostGL] TASK: 0x%x, glActiveTexture", FindTask(NULL
)));
3403 GLCALL(glActiveTexture
, texture
);
3404 D(bug("...exit\n"));
3408 void glClientActiveTexture (GLenum texture
)
3411 D(bug("[HostGL] TASK: 0x%x, glClientActiveTexture", FindTask(NULL
)));
3412 GLCALL(glClientActiveTexture
, texture
);
3413 D(bug("...exit\n"));
3417 void glCompressedTexImage1D (GLenum target
, GLint level
, GLenum internalformat
, GLsizei width
, GLint border
, GLsizei imageSize
, const GLvoid
* data
)
3420 D(bug("[HostGL] TASK: 0x%x, glCompressedTexImage1D", FindTask(NULL
)));
3421 GLCALL(glCompressedTexImage1D
, target
, level
, internalformat
, width
, border
, imageSize
, data
);
3422 D(bug("...exit\n"));
3426 void glCompressedTexImage2D (GLenum target
, GLint level
, GLenum internalformat
, GLsizei width
, GLsizei height
, GLint border
, GLsizei imageSize
, const GLvoid
* data
)
3429 D(bug("[HostGL] TASK: 0x%x, glCompressedTexImage2D", FindTask(NULL
)));
3430 GLCALL(glCompressedTexImage2D
, target
, level
, internalformat
, width
, height
, border
, imageSize
, data
);
3431 D(bug("...exit\n"));
3435 void glCompressedTexImage3D (GLenum target
, GLint level
, GLenum internalformat
, GLsizei width
, GLsizei height
, GLsizei depth
, GLint border
, GLsizei imageSize
, const GLvoid
* data
)
3438 D(bug("[HostGL] TASK: 0x%x, glCompressedTexImage3D", FindTask(NULL
)));
3439 GLCALL(glCompressedTexImage3D
, target
, level
, internalformat
, width
, height
, depth
, border
, imageSize
, data
);
3440 D(bug("...exit\n"));
3444 void glCompressedTexSubImage1D (GLenum target
, GLint level
, GLint xoffset
, GLsizei width
, GLenum format
, GLsizei imageSize
, const GLvoid
* data
)
3447 D(bug("[HostGL] TASK: 0x%x, glCompressedTexSubImage1D", FindTask(NULL
)));
3448 GLCALL(glCompressedTexSubImage1D
, target
, level
, xoffset
, width
, format
, imageSize
, data
);
3449 D(bug("...exit\n"));
3453 void glCompressedTexSubImage2D (GLenum target
, GLint level
, GLint xoffset
, GLint yoffset
, GLsizei width
, GLsizei height
, GLenum format
, GLsizei imageSize
, const GLvoid
* data
)
3456 D(bug("[HostGL] TASK: 0x%x, glCompressedTexSubImage2D", FindTask(NULL
)));
3457 GLCALL(glCompressedTexSubImage2D
, target
, level
, xoffset
, yoffset
, width
, height
, format
, imageSize
, data
);
3458 D(bug("...exit\n"));
3462 void glCompressedTexSubImage3D (GLenum target
, GLint level
, GLint xoffset
, GLint yoffset
, GLint zoffset
, GLsizei width
, GLsizei height
, GLsizei depth
, GLenum format
, GLsizei imageSize
, const GLvoid
* data
)
3465 D(bug("[HostGL] TASK: 0x%x, glCompressedTexSubImage3D", FindTask(NULL
)));
3466 GLCALL(glCompressedTexSubImage3D
, target
, level
, xoffset
, yoffset
, zoffset
, width
, height
, depth
, format
, imageSize
, data
);
3467 D(bug("...exit\n"));
3471 void glGetCompressedTexImage (GLenum target
, GLint lod
, GLvoid
* img
)
3474 D(bug("[HostGL] TASK: 0x%x, glGetCompressedTexImage", FindTask(NULL
)));
3475 GLCALL(glGetCompressedTexImage
, target
, lod
, img
);
3476 D(bug("...exit\n"));
3480 void glMultiTexCoord1d (GLenum target
, GLdouble s
)
3483 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1d", FindTask(NULL
)));
3484 GLCALL(glMultiTexCoord1d
, target
, s
);
3485 D(bug("...exit\n"));
3489 void glMultiTexCoord1dv (GLenum target
, const GLdouble
* v
)
3492 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1dv", FindTask(NULL
)));
3493 GLCALL(glMultiTexCoord1dv
, target
, v
);
3494 D(bug("...exit\n"));
3498 void glMultiTexCoord1f (GLenum target
, GLfloat s
)
3501 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1f", FindTask(NULL
)));
3502 GLCALL(glMultiTexCoord1f
, target
, s
);
3503 D(bug("...exit\n"));
3507 void glMultiTexCoord1fv (GLenum target
, const GLfloat
* v
)
3510 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1fv", FindTask(NULL
)));
3511 GLCALL(glMultiTexCoord1fv
, target
, v
);
3512 D(bug("...exit\n"));
3516 void glMultiTexCoord1i (GLenum target
, GLint s
)
3519 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1i", FindTask(NULL
)));
3520 GLCALL(glMultiTexCoord1i
, target
, s
);
3521 D(bug("...exit\n"));
3525 void glMultiTexCoord1iv (GLenum target
, const GLint
* v
)
3528 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1iv", FindTask(NULL
)));
3529 GLCALL(glMultiTexCoord1iv
, target
, v
);
3530 D(bug("...exit\n"));
3534 void glMultiTexCoord1s (GLenum target
, GLshort s
)
3537 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1s", FindTask(NULL
)));
3538 GLCALL(glMultiTexCoord1s
, target
, s
);
3539 D(bug("...exit\n"));
3543 void glMultiTexCoord1sv (GLenum target
, const GLshort
* v
)
3546 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1sv", FindTask(NULL
)));
3547 GLCALL(glMultiTexCoord1sv
, target
, v
);
3548 D(bug("...exit\n"));
3552 void glMultiTexCoord2d (GLenum target
, GLdouble s
, GLdouble t
)
3555 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2d", FindTask(NULL
)));
3556 GLCALL(glMultiTexCoord2d
, target
, s
, t
);
3557 D(bug("...exit\n"));
3561 void glMultiTexCoord2dv (GLenum target
, const GLdouble
* v
)
3564 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2dv", FindTask(NULL
)));
3565 GLCALL(glMultiTexCoord2dv
, target
, v
);
3566 D(bug("...exit\n"));
3570 void glMultiTexCoord2f (GLenum target
, GLfloat s
, GLfloat t
)
3573 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2f", FindTask(NULL
)));
3574 GLCALL(glMultiTexCoord2f
, target
, s
, t
);
3575 D(bug("...exit\n"));
3579 void glMultiTexCoord2fv (GLenum target
, const GLfloat
* v
)
3582 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2fv", FindTask(NULL
)));
3583 GLCALL(glMultiTexCoord2fv
, target
, v
);
3584 D(bug("...exit\n"));
3588 void glMultiTexCoord2i (GLenum target
, GLint s
, GLint t
)
3591 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2i", FindTask(NULL
)));
3592 GLCALL(glMultiTexCoord2i
, target
, s
, t
);
3593 D(bug("...exit\n"));
3597 void glMultiTexCoord2iv (GLenum target
, const GLint
* v
)
3600 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2iv", FindTask(NULL
)));
3601 GLCALL(glMultiTexCoord2iv
, target
, v
);
3602 D(bug("...exit\n"));
3606 void glMultiTexCoord2s (GLenum target
, GLshort s
, GLshort t
)
3609 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2s", FindTask(NULL
)));
3610 GLCALL(glMultiTexCoord2s
, target
, s
, t
);
3611 D(bug("...exit\n"));
3615 void glMultiTexCoord2sv (GLenum target
, const GLshort
* v
)
3618 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2sv", FindTask(NULL
)));
3619 GLCALL(glMultiTexCoord2sv
, target
, v
);
3620 D(bug("...exit\n"));
3624 void glMultiTexCoord3d (GLenum target
, GLdouble s
, GLdouble t
, GLdouble r
)
3627 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3d", FindTask(NULL
)));
3628 GLCALL(glMultiTexCoord3d
, target
, s
, t
, r
);
3629 D(bug("...exit\n"));
3633 void glMultiTexCoord3dv (GLenum target
, const GLdouble
* v
)
3636 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3dv", FindTask(NULL
)));
3637 GLCALL(glMultiTexCoord3dv
, target
, v
);
3638 D(bug("...exit\n"));
3642 void glMultiTexCoord3f (GLenum target
, GLfloat s
, GLfloat t
, GLfloat r
)
3645 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3f", FindTask(NULL
)));
3646 GLCALL(glMultiTexCoord3f
, target
, s
, t
, r
);
3647 D(bug("...exit\n"));
3651 void glMultiTexCoord3fv (GLenum target
, const GLfloat
* v
)
3654 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3fv", FindTask(NULL
)));
3655 GLCALL(glMultiTexCoord3fv
, target
, v
);
3656 D(bug("...exit\n"));
3660 void glMultiTexCoord3i (GLenum target
, GLint s
, GLint t
, GLint r
)
3663 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3i", FindTask(NULL
)));
3664 GLCALL(glMultiTexCoord3i
, target
, s
, t
, r
);
3665 D(bug("...exit\n"));
3669 void glMultiTexCoord3iv (GLenum target
, const GLint
* v
)
3672 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3iv", FindTask(NULL
)));
3673 GLCALL(glMultiTexCoord3iv
, target
, v
);
3674 D(bug("...exit\n"));
3678 void glMultiTexCoord3s (GLenum target
, GLshort s
, GLshort t
, GLshort r
)
3681 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3s", FindTask(NULL
)));
3682 GLCALL(glMultiTexCoord3s
, target
, s
, t
, r
);
3683 D(bug("...exit\n"));
3687 void glMultiTexCoord3sv (GLenum target
, const GLshort
* v
)
3690 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3sv", FindTask(NULL
)));
3691 GLCALL(glMultiTexCoord3sv
, target
, v
);
3692 D(bug("...exit\n"));
3696 void glMultiTexCoord4d (GLenum target
, GLdouble s
, GLdouble t
, GLdouble r
, GLdouble q
)
3699 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4d", FindTask(NULL
)));
3700 GLCALL(glMultiTexCoord4d
, target
, s
, t
, r
, q
);
3701 D(bug("...exit\n"));
3705 void glMultiTexCoord4dv (GLenum target
, const GLdouble
* v
)
3708 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4dv", FindTask(NULL
)));
3709 GLCALL(glMultiTexCoord4dv
, target
, v
);
3710 D(bug("...exit\n"));
3714 void glMultiTexCoord4f (GLenum target
, GLfloat s
, GLfloat t
, GLfloat r
, GLfloat q
)
3717 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4f", FindTask(NULL
)));
3718 GLCALL(glMultiTexCoord4f
, target
, s
, t
, r
, q
);
3719 D(bug("...exit\n"));
3723 void glMultiTexCoord4fv (GLenum target
, const GLfloat
* v
)
3726 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4fv", FindTask(NULL
)));
3727 GLCALL(glMultiTexCoord4fv
, target
, v
);
3728 D(bug("...exit\n"));
3732 void glMultiTexCoord4i (GLenum target
, GLint s
, GLint t
, GLint r
, GLint q
)
3735 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4i", FindTask(NULL
)));
3736 GLCALL(glMultiTexCoord4i
, target
, s
, t
, r
, q
);
3737 D(bug("...exit\n"));
3741 void glMultiTexCoord4iv (GLenum target
, const GLint
* v
)
3744 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4iv", FindTask(NULL
)));
3745 GLCALL(glMultiTexCoord4iv
, target
, v
);
3746 D(bug("...exit\n"));
3750 void glMultiTexCoord4s (GLenum target
, GLshort s
, GLshort t
, GLshort r
, GLshort q
)
3753 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4s", FindTask(NULL
)));
3754 GLCALL(glMultiTexCoord4s
, target
, s
, t
, r
, q
);
3755 D(bug("...exit\n"));
3759 void glMultiTexCoord4sv (GLenum target
, const GLshort
* v
)
3762 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4sv", FindTask(NULL
)));
3763 GLCALL(glMultiTexCoord4sv
, target
, v
);
3764 D(bug("...exit\n"));
3768 void glLoadTransposeMatrixd (const GLdouble
* m
)
3771 D(bug("[HostGL] TASK: 0x%x, glLoadTransposeMatrixd", FindTask(NULL
)));
3772 GLCALL(glLoadTransposeMatrixd
, m
);
3773 D(bug("...exit\n"));
3777 void glLoadTransposeMatrixf (const GLfloat
* m
)
3780 D(bug("[HostGL] TASK: 0x%x, glLoadTransposeMatrixf", FindTask(NULL
)));
3781 GLCALL(glLoadTransposeMatrixf
, m
);
3782 D(bug("...exit\n"));
3786 void glMultTransposeMatrixd (const GLdouble
* m
)
3789 D(bug("[HostGL] TASK: 0x%x, glMultTransposeMatrixd", FindTask(NULL
)));
3790 GLCALL(glMultTransposeMatrixd
, m
);
3791 D(bug("...exit\n"));
3795 void glMultTransposeMatrixf (const GLfloat
* m
)
3798 D(bug("[HostGL] TASK: 0x%x, glMultTransposeMatrixf", FindTask(NULL
)));
3799 GLCALL(glMultTransposeMatrixf
, m
);
3800 D(bug("...exit\n"));
3804 void glSampleCoverage (GLclampf value
, GLboolean invert
)
3807 D(bug("[HostGL] TASK: 0x%x, glSampleCoverage", FindTask(NULL
)));
3808 GLCALL(glSampleCoverage
, value
, invert
);
3809 D(bug("...exit\n"));
3813 void glActiveTextureARB (GLenum texture
)
3816 D(bug("[HostGL] TASK: 0x%x, glActiveTextureARB", FindTask(NULL
)));
3817 GLCALL(glActiveTextureARB
, texture
);
3818 D(bug("...exit\n"));
3822 void glClientActiveTextureARB (GLenum texture
)
3825 D(bug("[HostGL] TASK: 0x%x, glClientActiveTextureARB", FindTask(NULL
)));
3826 GLCALL(glClientActiveTextureARB
, texture
);
3827 D(bug("...exit\n"));
3831 void glMultiTexCoord1dARB (GLenum target
, GLdouble s
)
3834 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1dARB", FindTask(NULL
)));
3835 GLCALL(glMultiTexCoord1dARB
, target
, s
);
3836 D(bug("...exit\n"));
3840 void glMultiTexCoord1dvARB (GLenum target
, const GLdouble
* v
)
3843 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1dvARB", FindTask(NULL
)));
3844 GLCALL(glMultiTexCoord1dvARB
, target
, v
);
3845 D(bug("...exit\n"));
3849 void glMultiTexCoord1fARB (GLenum target
, GLfloat s
)
3852 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1fARB", FindTask(NULL
)));
3853 GLCALL(glMultiTexCoord1fARB
, target
, s
);
3854 D(bug("...exit\n"));
3858 void glMultiTexCoord1fvARB (GLenum target
, const GLfloat
* v
)
3861 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1fvARB", FindTask(NULL
)));
3862 GLCALL(glMultiTexCoord1fvARB
, target
, v
);
3863 D(bug("...exit\n"));
3867 void glMultiTexCoord1iARB (GLenum target
, GLint s
)
3870 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1iARB", FindTask(NULL
)));
3871 GLCALL(glMultiTexCoord1iARB
, target
, s
);
3872 D(bug("...exit\n"));
3876 void glMultiTexCoord1ivARB (GLenum target
, const GLint
* v
)
3879 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1ivARB", FindTask(NULL
)));
3880 GLCALL(glMultiTexCoord1ivARB
, target
, v
);
3881 D(bug("...exit\n"));
3885 void glMultiTexCoord1sARB (GLenum target
, GLshort s
)
3888 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1sARB", FindTask(NULL
)));
3889 GLCALL(glMultiTexCoord1sARB
, target
, s
);
3890 D(bug("...exit\n"));
3894 void glMultiTexCoord1svARB (GLenum target
, const GLshort
* v
)
3897 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord1svARB", FindTask(NULL
)));
3898 GLCALL(glMultiTexCoord1svARB
, target
, v
);
3899 D(bug("...exit\n"));
3903 void glMultiTexCoord2dARB (GLenum target
, GLdouble s
, GLdouble t
)
3906 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2dARB", FindTask(NULL
)));
3907 GLCALL(glMultiTexCoord2dARB
, target
, s
, t
);
3908 D(bug("...exit\n"));
3912 void glMultiTexCoord2dvARB (GLenum target
, const GLdouble
* v
)
3915 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2dvARB", FindTask(NULL
)));
3916 GLCALL(glMultiTexCoord2dvARB
, target
, v
);
3917 D(bug("...exit\n"));
3921 void glMultiTexCoord2fARB (GLenum target
, GLfloat s
, GLfloat t
)
3924 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2fARB", FindTask(NULL
)));
3925 GLCALL(glMultiTexCoord2fARB
, target
, s
, t
);
3926 D(bug("...exit\n"));
3930 void glMultiTexCoord2fvARB (GLenum target
, const GLfloat
* v
)
3933 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2fvARB", FindTask(NULL
)));
3934 GLCALL(glMultiTexCoord2fvARB
, target
, v
);
3935 D(bug("...exit\n"));
3939 void glMultiTexCoord2iARB (GLenum target
, GLint s
, GLint t
)
3942 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2iARB", FindTask(NULL
)));
3943 GLCALL(glMultiTexCoord2iARB
, target
, s
, t
);
3944 D(bug("...exit\n"));
3948 void glMultiTexCoord2ivARB (GLenum target
, const GLint
* v
)
3951 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2ivARB", FindTask(NULL
)));
3952 GLCALL(glMultiTexCoord2ivARB
, target
, v
);
3953 D(bug("...exit\n"));
3957 void glMultiTexCoord2sARB (GLenum target
, GLshort s
, GLshort t
)
3960 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2sARB", FindTask(NULL
)));
3961 GLCALL(glMultiTexCoord2sARB
, target
, s
, t
);
3962 D(bug("...exit\n"));
3966 void glMultiTexCoord2svARB (GLenum target
, const GLshort
* v
)
3969 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord2svARB", FindTask(NULL
)));
3970 GLCALL(glMultiTexCoord2svARB
, target
, v
);
3971 D(bug("...exit\n"));
3975 void glMultiTexCoord3dARB (GLenum target
, GLdouble s
, GLdouble t
, GLdouble r
)
3978 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3dARB", FindTask(NULL
)));
3979 GLCALL(glMultiTexCoord3dARB
, target
, s
, t
, r
);
3980 D(bug("...exit\n"));
3984 void glMultiTexCoord3dvARB (GLenum target
, const GLdouble
* v
)
3987 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3dvARB", FindTask(NULL
)));
3988 GLCALL(glMultiTexCoord3dvARB
, target
, v
);
3989 D(bug("...exit\n"));
3993 void glMultiTexCoord3fARB (GLenum target
, GLfloat s
, GLfloat t
, GLfloat r
)
3996 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3fARB", FindTask(NULL
)));
3997 GLCALL(glMultiTexCoord3fARB
, target
, s
, t
, r
);
3998 D(bug("...exit\n"));
4002 void glMultiTexCoord3fvARB (GLenum target
, const GLfloat
* v
)
4005 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3fvARB", FindTask(NULL
)));
4006 GLCALL(glMultiTexCoord3fvARB
, target
, v
);
4007 D(bug("...exit\n"));
4011 void glMultiTexCoord3iARB (GLenum target
, GLint s
, GLint t
, GLint r
)
4014 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3iARB", FindTask(NULL
)));
4015 GLCALL(glMultiTexCoord3iARB
, target
, s
, t
, r
);
4016 D(bug("...exit\n"));
4020 void glMultiTexCoord3ivARB (GLenum target
, const GLint
* v
)
4023 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3ivARB", FindTask(NULL
)));
4024 GLCALL(glMultiTexCoord3ivARB
, target
, v
);
4025 D(bug("...exit\n"));
4029 void glMultiTexCoord3sARB (GLenum target
, GLshort s
, GLshort t
, GLshort r
)
4032 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3sARB", FindTask(NULL
)));
4033 GLCALL(glMultiTexCoord3sARB
, target
, s
, t
, r
);
4034 D(bug("...exit\n"));
4038 void glMultiTexCoord3svARB (GLenum target
, const GLshort
* v
)
4041 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord3svARB", FindTask(NULL
)));
4042 GLCALL(glMultiTexCoord3svARB
, target
, v
);
4043 D(bug("...exit\n"));
4047 void glMultiTexCoord4dARB (GLenum target
, GLdouble s
, GLdouble t
, GLdouble r
, GLdouble q
)
4050 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4dARB", FindTask(NULL
)));
4051 GLCALL(glMultiTexCoord4dARB
, target
, s
, t
, r
, q
);
4052 D(bug("...exit\n"));
4056 void glMultiTexCoord4dvARB (GLenum target
, const GLdouble
* v
)
4059 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4dvARB", FindTask(NULL
)));
4060 GLCALL(glMultiTexCoord4dvARB
, target
, v
);
4061 D(bug("...exit\n"));
4065 void glMultiTexCoord4fARB (GLenum target
, GLfloat s
, GLfloat t
, GLfloat r
, GLfloat q
)
4068 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4fARB", FindTask(NULL
)));
4069 GLCALL(glMultiTexCoord4fARB
, target
, s
, t
, r
, q
);
4070 D(bug("...exit\n"));
4074 void glMultiTexCoord4fvARB (GLenum target
, const GLfloat
* v
)
4077 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4fvARB", FindTask(NULL
)));
4078 GLCALL(glMultiTexCoord4fvARB
, target
, v
);
4079 D(bug("...exit\n"));
4083 void glMultiTexCoord4iARB (GLenum target
, GLint s
, GLint t
, GLint r
, GLint q
)
4086 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4iARB", FindTask(NULL
)));
4087 GLCALL(glMultiTexCoord4iARB
, target
, s
, t
, r
, q
);
4088 D(bug("...exit\n"));
4092 void glMultiTexCoord4ivARB (GLenum target
, const GLint
* v
)
4095 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4ivARB", FindTask(NULL
)));
4096 GLCALL(glMultiTexCoord4ivARB
, target
, v
);
4097 D(bug("...exit\n"));
4101 void glMultiTexCoord4sARB (GLenum target
, GLshort s
, GLshort t
, GLshort r
, GLshort q
)
4104 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4sARB", FindTask(NULL
)));
4105 GLCALL(glMultiTexCoord4sARB
, target
, s
, t
, r
, q
);
4106 D(bug("...exit\n"));
4110 void glMultiTexCoord4svARB (GLenum target
, const GLshort
* v
)
4113 D(bug("[HostGL] TASK: 0x%x, glMultiTexCoord4svARB", FindTask(NULL
)));
4114 GLCALL(glMultiTexCoord4svARB
, target
, v
);
4115 D(bug("...exit\n"));
4119 void glBlendFuncSeparate (GLenum sfactorRGB
, GLenum dfactorRGB
, GLenum sfactorAlpha
, GLenum dfactorAlpha
)
4122 D(bug("[HostGL] TASK: 0x%x, glBlendFuncSeparate", FindTask(NULL
)));
4123 GLCALL(glBlendFuncSeparate
, sfactorRGB
, dfactorRGB
, sfactorAlpha
, dfactorAlpha
);
4124 D(bug("...exit\n"));
4128 void glFogCoordf (GLfloat coord
)
4131 D(bug("[HostGL] TASK: 0x%x, glFogCoordf", FindTask(NULL
)));
4132 GLCALL(glFogCoordf
, coord
);
4133 D(bug("...exit\n"));
4137 void glFogCoordfv (const GLfloat
* coord
)
4140 D(bug("[HostGL] TASK: 0x%x, glFogCoordfv", FindTask(NULL
)));
4141 GLCALL(glFogCoordfv
, coord
);
4142 D(bug("...exit\n"));
4146 void glFogCoordd (GLdouble coord
)
4149 D(bug("[HostGL] TASK: 0x%x, glFogCoordd", FindTask(NULL
)));
4150 GLCALL(glFogCoordd
, coord
);
4151 D(bug("...exit\n"));
4155 void glFogCoorddv (const GLdouble
* coord
)
4158 D(bug("[HostGL] TASK: 0x%x, glFogCoorddv", FindTask(NULL
)));
4159 GLCALL(glFogCoorddv
, coord
);
4160 D(bug("...exit\n"));
4164 void glFogCoordPointer (GLenum type
, GLsizei stride
, const GLvoid
* pointer
)
4167 D(bug("[HostGL] TASK: 0x%x, glFogCoordPointer", FindTask(NULL
)));
4168 GLCALL(glFogCoordPointer
, type
, stride
, pointer
);
4169 D(bug("...exit\n"));
4173 void glMultiDrawArrays (GLenum mode
, const GLint
* first
, const GLsizei
* count
, GLsizei primcount
)
4176 D(bug("[HostGL] TASK: 0x%x, glMultiDrawArrays", FindTask(NULL
)));
4177 GLCALL(glMultiDrawArrays
, mode
, first
, count
, primcount
);
4178 D(bug("...exit\n"));
4182 void glMultiDrawElements (GLenum mode
, const GLsizei
* count
, GLenum type
, const GLvoid
* * indices
, GLsizei primcount
)
4185 D(bug("[HostGL] TASK: 0x%x, glMultiDrawElements", FindTask(NULL
)));
4186 GLCALL(glMultiDrawElements
, mode
, count
, type
, indices
, primcount
);
4187 D(bug("...exit\n"));
4191 void glPointParameterf (GLenum pname
, GLfloat param
)
4194 D(bug("[HostGL] TASK: 0x%x, glPointParameterf", FindTask(NULL
)));
4195 GLCALL(glPointParameterf
, pname
, param
);
4196 D(bug("...exit\n"));
4200 void glPointParameterfv (GLenum pname
, const GLfloat
* params
)
4203 D(bug("[HostGL] TASK: 0x%x, glPointParameterfv", FindTask(NULL
)));
4204 GLCALL(glPointParameterfv
, pname
, params
);
4205 D(bug("...exit\n"));
4209 void glPointParameteri (GLenum pname
, GLint param
)
4212 D(bug("[HostGL] TASK: 0x%x, glPointParameteri", FindTask(NULL
)));
4213 GLCALL(glPointParameteri
, pname
, param
);
4214 D(bug("...exit\n"));
4218 void glPointParameteriv (GLenum pname
, const GLint
* params
)
4221 D(bug("[HostGL] TASK: 0x%x, glPointParameteriv", FindTask(NULL
)));
4222 GLCALL(glPointParameteriv
, pname
, params
);
4223 D(bug("...exit\n"));
4227 void glSecondaryColor3b (GLbyte red
, GLbyte green
, GLbyte blue
)
4230 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3b", FindTask(NULL
)));
4231 GLCALL(glSecondaryColor3b
, red
, green
, blue
);
4232 D(bug("...exit\n"));
4236 void glSecondaryColor3bv (const GLbyte
* v
)
4239 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3bv", FindTask(NULL
)));
4240 GLCALL(glSecondaryColor3bv
, v
);
4241 D(bug("...exit\n"));
4245 void glSecondaryColor3d (GLdouble red
, GLdouble green
, GLdouble blue
)
4248 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3d", FindTask(NULL
)));
4249 GLCALL(glSecondaryColor3d
, red
, green
, blue
);
4250 D(bug("...exit\n"));
4254 void glSecondaryColor3dv (const GLdouble
* v
)
4257 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3dv", FindTask(NULL
)));
4258 GLCALL(glSecondaryColor3dv
, v
);
4259 D(bug("...exit\n"));
4263 void glSecondaryColor3f (GLfloat red
, GLfloat green
, GLfloat blue
)
4266 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3f", FindTask(NULL
)));
4267 GLCALL(glSecondaryColor3f
, red
, green
, blue
);
4268 D(bug("...exit\n"));
4272 void glSecondaryColor3fv (const GLfloat
* v
)
4275 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3fv", FindTask(NULL
)));
4276 GLCALL(glSecondaryColor3fv
, v
);
4277 D(bug("...exit\n"));
4281 void glSecondaryColor3i (GLint red
, GLint green
, GLint blue
)
4284 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3i", FindTask(NULL
)));
4285 GLCALL(glSecondaryColor3i
, red
, green
, blue
);
4286 D(bug("...exit\n"));
4290 void glSecondaryColor3iv (const GLint
* v
)
4293 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3iv", FindTask(NULL
)));
4294 GLCALL(glSecondaryColor3iv
, v
);
4295 D(bug("...exit\n"));
4299 void glSecondaryColor3s (GLshort red
, GLshort green
, GLshort blue
)
4302 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3s", FindTask(NULL
)));
4303 GLCALL(glSecondaryColor3s
, red
, green
, blue
);
4304 D(bug("...exit\n"));
4308 void glSecondaryColor3sv (const GLshort
* v
)
4311 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3sv", FindTask(NULL
)));
4312 GLCALL(glSecondaryColor3sv
, v
);
4313 D(bug("...exit\n"));
4317 void glSecondaryColor3ub (GLubyte red
, GLubyte green
, GLubyte blue
)
4320 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3ub", FindTask(NULL
)));
4321 GLCALL(glSecondaryColor3ub
, red
, green
, blue
);
4322 D(bug("...exit\n"));
4326 void glSecondaryColor3ubv (const GLubyte
* v
)
4329 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3ubv", FindTask(NULL
)));
4330 GLCALL(glSecondaryColor3ubv
, v
);
4331 D(bug("...exit\n"));
4335 void glSecondaryColor3ui (GLuint red
, GLuint green
, GLuint blue
)
4338 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3ui", FindTask(NULL
)));
4339 GLCALL(glSecondaryColor3ui
, red
, green
, blue
);
4340 D(bug("...exit\n"));
4344 void glSecondaryColor3uiv (const GLuint
* v
)
4347 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3uiv", FindTask(NULL
)));
4348 GLCALL(glSecondaryColor3uiv
, v
);
4349 D(bug("...exit\n"));
4353 void glSecondaryColor3us (GLushort red
, GLushort green
, GLushort blue
)
4356 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3us", FindTask(NULL
)));
4357 GLCALL(glSecondaryColor3us
, red
, green
, blue
);
4358 D(bug("...exit\n"));
4362 void glSecondaryColor3usv (const GLushort
* v
)
4365 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3usv", FindTask(NULL
)));
4366 GLCALL(glSecondaryColor3usv
, v
);
4367 D(bug("...exit\n"));
4371 void glSecondaryColorPointer (GLint size
, GLenum type
, GLsizei stride
, const GLvoid
* pointer
)
4374 D(bug("[HostGL] TASK: 0x%x, glSecondaryColorPointer", FindTask(NULL
)));
4375 GLCALL(glSecondaryColorPointer
, size
, type
, stride
, pointer
);
4376 D(bug("...exit\n"));
4380 void glWindowPos2d (GLdouble x
, GLdouble y
)
4383 D(bug("[HostGL] TASK: 0x%x, glWindowPos2d", FindTask(NULL
)));
4384 GLCALL(glWindowPos2d
, x
, y
);
4385 D(bug("...exit\n"));
4389 void glWindowPos2dv (const GLdouble
* v
)
4392 D(bug("[HostGL] TASK: 0x%x, glWindowPos2dv", FindTask(NULL
)));
4393 GLCALL(glWindowPos2dv
, v
);
4394 D(bug("...exit\n"));
4398 void glWindowPos2f (GLfloat x
, GLfloat y
)
4401 D(bug("[HostGL] TASK: 0x%x, glWindowPos2f", FindTask(NULL
)));
4402 GLCALL(glWindowPos2f
, x
, y
);
4403 D(bug("...exit\n"));
4407 void glWindowPos2fv (const GLfloat
* v
)
4410 D(bug("[HostGL] TASK: 0x%x, glWindowPos2fv", FindTask(NULL
)));
4411 GLCALL(glWindowPos2fv
, v
);
4412 D(bug("...exit\n"));
4416 void glWindowPos2i (GLint x
, GLint y
)
4419 D(bug("[HostGL] TASK: 0x%x, glWindowPos2i", FindTask(NULL
)));
4420 GLCALL(glWindowPos2i
, x
, y
);
4421 D(bug("...exit\n"));
4425 void glWindowPos2iv (const GLint
* v
)
4428 D(bug("[HostGL] TASK: 0x%x, glWindowPos2iv", FindTask(NULL
)));
4429 GLCALL(glWindowPos2iv
, v
);
4430 D(bug("...exit\n"));
4434 void glWindowPos2s (GLshort x
, GLshort y
)
4437 D(bug("[HostGL] TASK: 0x%x, glWindowPos2s", FindTask(NULL
)));
4438 GLCALL(glWindowPos2s
, x
, y
);
4439 D(bug("...exit\n"));
4443 void glWindowPos2sv (const GLshort
* v
)
4446 D(bug("[HostGL] TASK: 0x%x, glWindowPos2sv", FindTask(NULL
)));
4447 GLCALL(glWindowPos2sv
, v
);
4448 D(bug("...exit\n"));
4452 void glWindowPos3d (GLdouble x
, GLdouble y
, GLdouble z
)
4455 D(bug("[HostGL] TASK: 0x%x, glWindowPos3d", FindTask(NULL
)));
4456 GLCALL(glWindowPos3d
, x
, y
, z
);
4457 D(bug("...exit\n"));
4461 void glWindowPos3dv (const GLdouble
* v
)
4464 D(bug("[HostGL] TASK: 0x%x, glWindowPos3dv", FindTask(NULL
)));
4465 GLCALL(glWindowPos3dv
, v
);
4466 D(bug("...exit\n"));
4470 void glWindowPos3f (GLfloat x
, GLfloat y
, GLfloat z
)
4473 D(bug("[HostGL] TASK: 0x%x, glWindowPos3f", FindTask(NULL
)));
4474 GLCALL(glWindowPos3f
, x
, y
, z
);
4475 D(bug("...exit\n"));
4479 void glWindowPos3fv (const GLfloat
* v
)
4482 D(bug("[HostGL] TASK: 0x%x, glWindowPos3fv", FindTask(NULL
)));
4483 GLCALL(glWindowPos3fv
, v
);
4484 D(bug("...exit\n"));
4488 void glWindowPos3i (GLint x
, GLint y
, GLint z
)
4491 D(bug("[HostGL] TASK: 0x%x, glWindowPos3i", FindTask(NULL
)));
4492 GLCALL(glWindowPos3i
, x
, y
, z
);
4493 D(bug("...exit\n"));
4497 void glWindowPos3iv (const GLint
* v
)
4500 D(bug("[HostGL] TASK: 0x%x, glWindowPos3iv", FindTask(NULL
)));
4501 GLCALL(glWindowPos3iv
, v
);
4502 D(bug("...exit\n"));
4506 void glWindowPos3s (GLshort x
, GLshort y
, GLshort z
)
4509 D(bug("[HostGL] TASK: 0x%x, glWindowPos3s", FindTask(NULL
)));
4510 GLCALL(glWindowPos3s
, x
, y
, z
);
4511 D(bug("...exit\n"));
4515 void glWindowPos3sv (const GLshort
* v
)
4518 D(bug("[HostGL] TASK: 0x%x, glWindowPos3sv", FindTask(NULL
)));
4519 GLCALL(glWindowPos3sv
, v
);
4520 D(bug("...exit\n"));
4524 void glGenQueries (GLsizei n
, GLuint
* ids
)
4527 D(bug("[HostGL] TASK: 0x%x, glGenQueries", FindTask(NULL
)));
4528 GLCALL(glGenQueries
, n
, ids
);
4529 D(bug("...exit\n"));
4533 void glDeleteQueries (GLsizei n
, const GLuint
* ids
)
4536 D(bug("[HostGL] TASK: 0x%x, glDeleteQueries", FindTask(NULL
)));
4537 GLCALL(glDeleteQueries
, n
, ids
);
4538 D(bug("...exit\n"));
4542 GLboolean
glIsQuery (GLuint id
)
4546 D(bug("[HostGL] TASK: 0x%x, glIsQuery", FindTask(NULL
)));
4547 _ret
= GLCALL(glIsQuery
, id
);
4548 D(bug("...exit\n"));
4553 void glBeginQuery (GLenum target
, GLuint id
)
4556 D(bug("[HostGL] TASK: 0x%x, glBeginQuery", FindTask(NULL
)));
4557 GLCALL(glBeginQuery
, target
, id
);
4558 D(bug("...exit\n"));
4562 void glEndQuery (GLenum target
)
4565 D(bug("[HostGL] TASK: 0x%x, glEndQuery", FindTask(NULL
)));
4566 GLCALL(glEndQuery
, target
);
4567 D(bug("...exit\n"));
4571 void glGetQueryiv (GLenum target
, GLenum pname
, GLint
* params
)
4574 D(bug("[HostGL] TASK: 0x%x, glGetQueryiv", FindTask(NULL
)));
4575 GLCALL(glGetQueryiv
, target
, pname
, params
);
4576 D(bug("...exit\n"));
4580 void glGetQueryObjectiv (GLuint id
, GLenum pname
, GLint
* params
)
4583 D(bug("[HostGL] TASK: 0x%x, glGetQueryObjectiv", FindTask(NULL
)));
4584 GLCALL(glGetQueryObjectiv
, id
, pname
, params
);
4585 D(bug("...exit\n"));
4589 void glGetQueryObjectuiv (GLuint id
, GLenum pname
, GLuint
* params
)
4592 D(bug("[HostGL] TASK: 0x%x, glGetQueryObjectuiv", FindTask(NULL
)));
4593 GLCALL(glGetQueryObjectuiv
, id
, pname
, params
);
4594 D(bug("...exit\n"));
4598 void glBindBuffer (GLenum target
, GLuint buffer
)
4601 D(bug("[HostGL] TASK: 0x%x, glBindBuffer", FindTask(NULL
)));
4602 GLCALL(glBindBuffer
, target
, buffer
);
4603 D(bug("...exit\n"));
4607 void glDeleteBuffers (GLsizei n
, const GLuint
* buffers
)
4610 D(bug("[HostGL] TASK: 0x%x, glDeleteBuffers", FindTask(NULL
)));
4611 GLCALL(glDeleteBuffers
, n
, buffers
);
4612 D(bug("...exit\n"));
4616 void glGenBuffers (GLsizei n
, GLuint
* buffers
)
4619 D(bug("[HostGL] TASK: 0x%x, glGenBuffers", FindTask(NULL
)));
4620 GLCALL(glGenBuffers
, n
, buffers
);
4621 D(bug("...exit\n"));
4625 GLboolean
glIsBuffer (GLuint buffer
)
4629 D(bug("[HostGL] TASK: 0x%x, glIsBuffer", FindTask(NULL
)));
4630 _ret
= GLCALL(glIsBuffer
, buffer
);
4631 D(bug("...exit\n"));
4636 void glBufferData (GLenum target
, GLsizeiptr size
, const GLvoid
* data
, GLenum usage
)
4639 D(bug("[HostGL] TASK: 0x%x, glBufferData", FindTask(NULL
)));
4640 GLCALL(glBufferData
, target
, size
, data
, usage
);
4641 D(bug("...exit\n"));
4645 void glBufferSubData (GLenum target
, GLintptr offset
, GLsizeiptr size
, const GLvoid
* data
)
4648 D(bug("[HostGL] TASK: 0x%x, glBufferSubData", FindTask(NULL
)));
4649 GLCALL(glBufferSubData
, target
, offset
, size
, data
);
4650 D(bug("...exit\n"));
4654 void glGetBufferSubData (GLenum target
, GLintptr offset
, GLsizeiptr size
, GLvoid
* data
)
4657 D(bug("[HostGL] TASK: 0x%x, glGetBufferSubData", FindTask(NULL
)));
4658 GLCALL(glGetBufferSubData
, target
, offset
, size
, data
);
4659 D(bug("...exit\n"));
4663 GLvoid
* glMapBuffer (GLenum target
, GLenum access
)
4667 D(bug("[HostGL] TASK: 0x%x, glMapBuffer", FindTask(NULL
)));
4668 _ret
= GLCALL(glMapBuffer
, target
, access
);
4669 D(bug("...exit\n"));
4674 GLboolean
glUnmapBuffer (GLenum target
)
4678 D(bug("[HostGL] TASK: 0x%x, glUnmapBuffer", FindTask(NULL
)));
4679 _ret
= GLCALL(glUnmapBuffer
, target
);
4680 D(bug("...exit\n"));
4685 void glGetBufferParameteriv (GLenum target
, GLenum pname
, GLint
* params
)
4688 D(bug("[HostGL] TASK: 0x%x, glGetBufferParameteriv", FindTask(NULL
)));
4689 GLCALL(glGetBufferParameteriv
, target
, pname
, params
);
4690 D(bug("...exit\n"));
4694 void glGetBufferPointerv (GLenum target
, GLenum pname
, GLvoid
* * params
)
4697 D(bug("[HostGL] TASK: 0x%x, glGetBufferPointerv", FindTask(NULL
)));
4698 GLCALL(glGetBufferPointerv
, target
, pname
, params
);
4699 D(bug("...exit\n"));
4703 void glBlendEquationSeparate (GLenum modeRGB
, GLenum modeAlpha
)
4706 D(bug("[HostGL] TASK: 0x%x, glBlendEquationSeparate", FindTask(NULL
)));
4707 GLCALL(glBlendEquationSeparate
, modeRGB
, modeAlpha
);
4708 D(bug("...exit\n"));
4712 void glDrawBuffers (GLsizei n
, const GLenum
* bufs
)
4715 D(bug("[HostGL] TASK: 0x%x, glDrawBuffers", FindTask(NULL
)));
4716 GLCALL(glDrawBuffers
, n
, bufs
);
4717 D(bug("...exit\n"));
4721 void glStencilOpSeparate (GLenum face
, GLenum sfail
, GLenum dpfail
, GLenum dppass
)
4724 D(bug("[HostGL] TASK: 0x%x, glStencilOpSeparate", FindTask(NULL
)));
4725 GLCALL(glStencilOpSeparate
, face
, sfail
, dpfail
, dppass
);
4726 D(bug("...exit\n"));
4730 void glStencilFuncSeparate (GLenum face
, GLenum func
, GLint ref
, GLuint mask
)
4733 D(bug("[HostGL] TASK: 0x%x, glStencilFuncSeparate", FindTask(NULL
)));
4734 GLCALL(glStencilFuncSeparate
, face
, func
, ref
, mask
);
4735 D(bug("...exit\n"));
4739 void glStencilMaskSeparate (GLenum face
, GLuint mask
)
4742 D(bug("[HostGL] TASK: 0x%x, glStencilMaskSeparate", FindTask(NULL
)));
4743 GLCALL(glStencilMaskSeparate
, face
, mask
);
4744 D(bug("...exit\n"));
4748 void glAttachShader (GLuint program
, GLuint shader
)
4751 D(bug("[HostGL] TASK: 0x%x, glAttachShader", FindTask(NULL
)));
4752 GLCALL(glAttachShader
, program
, shader
);
4753 D(bug("...exit\n"));
4757 void glBindAttribLocation (GLuint program
, GLuint index
, const GLchar
* name
)
4760 D(bug("[HostGL] TASK: 0x%x, glBindAttribLocation", FindTask(NULL
)));
4761 GLCALL(glBindAttribLocation
, program
, index
, name
);
4762 D(bug("...exit\n"));
4766 void glCompileShader (GLuint shader
)
4769 D(bug("[HostGL] TASK: 0x%x, glCompileShader", FindTask(NULL
)));
4770 GLCALL(glCompileShader
, shader
);
4771 D(bug("...exit\n"));
4775 GLuint
glCreateProgram ()
4779 D(bug("[HostGL] TASK: 0x%x, glCreateProgram", FindTask(NULL
)));
4780 _ret
= GLCALL(glCreateProgram
);
4781 D(bug("...exit\n"));
4786 GLuint
glCreateShader (GLenum type
)
4790 D(bug("[HostGL] TASK: 0x%x, glCreateShader", FindTask(NULL
)));
4791 _ret
= GLCALL(glCreateShader
, type
);
4792 D(bug("...exit\n"));
4797 void glDeleteProgram (GLuint program
)
4800 D(bug("[HostGL] TASK: 0x%x, glDeleteProgram", FindTask(NULL
)));
4801 GLCALL(glDeleteProgram
, program
);
4802 D(bug("...exit\n"));
4806 void glDeleteShader (GLuint shader
)
4809 D(bug("[HostGL] TASK: 0x%x, glDeleteShader", FindTask(NULL
)));
4810 GLCALL(glDeleteShader
, shader
);
4811 D(bug("...exit\n"));
4815 void glDetachShader (GLuint program
, GLuint shader
)
4818 D(bug("[HostGL] TASK: 0x%x, glDetachShader", FindTask(NULL
)));
4819 GLCALL(glDetachShader
, program
, shader
);
4820 D(bug("...exit\n"));
4824 void glDisableVertexAttribArray (GLuint index
)
4827 D(bug("[HostGL] TASK: 0x%x, glDisableVertexAttribArray", FindTask(NULL
)));
4828 GLCALL(glDisableVertexAttribArray
, index
);
4829 D(bug("...exit\n"));
4833 void glEnableVertexAttribArray (GLuint index
)
4836 D(bug("[HostGL] TASK: 0x%x, glEnableVertexAttribArray", FindTask(NULL
)));
4837 GLCALL(glEnableVertexAttribArray
, index
);
4838 D(bug("...exit\n"));
4842 void glGetActiveAttrib (GLuint program
, GLuint index
, GLsizei bufSize
, GLsizei
* length
, GLint
* size
, GLenum
* type
, GLchar
* name
)
4845 D(bug("[HostGL] TASK: 0x%x, glGetActiveAttrib", FindTask(NULL
)));
4846 GLCALL(glGetActiveAttrib
, program
, index
, bufSize
, length
, size
, type
, name
);
4847 D(bug("...exit\n"));
4851 void glGetActiveUniform (GLuint program
, GLuint index
, GLsizei bufSize
, GLsizei
* length
, GLint
* size
, GLenum
* type
, GLchar
* name
)
4854 D(bug("[HostGL] TASK: 0x%x, glGetActiveUniform", FindTask(NULL
)));
4855 GLCALL(glGetActiveUniform
, program
, index
, bufSize
, length
, size
, type
, name
);
4856 D(bug("...exit\n"));
4860 void glGetAttachedShaders (GLuint program
, GLsizei maxCount
, GLsizei
* count
, GLuint
* obj
)
4863 D(bug("[HostGL] TASK: 0x%x, glGetAttachedShaders", FindTask(NULL
)));
4864 GLCALL(glGetAttachedShaders
, program
, maxCount
, count
, obj
);
4865 D(bug("...exit\n"));
4869 GLint
glGetAttribLocation (GLuint program
, const GLchar
* name
)
4873 D(bug("[HostGL] TASK: 0x%x, glGetAttribLocation", FindTask(NULL
)));
4874 _ret
= GLCALL(glGetAttribLocation
, program
, name
);
4875 D(bug("...exit\n"));
4880 void glGetProgramiv (GLuint program
, GLenum pname
, GLint
* params
)
4883 D(bug("[HostGL] TASK: 0x%x, glGetProgramiv", FindTask(NULL
)));
4884 GLCALL(glGetProgramiv
, program
, pname
, params
);
4885 D(bug("...exit\n"));
4889 void glGetProgramInfoLog (GLuint program
, GLsizei bufSize
, GLsizei
* length
, GLchar
* infoLog
)
4892 D(bug("[HostGL] TASK: 0x%x, glGetProgramInfoLog", FindTask(NULL
)));
4893 GLCALL(glGetProgramInfoLog
, program
, bufSize
, length
, infoLog
);
4894 D(bug("...exit\n"));
4898 void glGetShaderiv (GLuint shader
, GLenum pname
, GLint
* params
)
4901 D(bug("[HostGL] TASK: 0x%x, glGetShaderiv", FindTask(NULL
)));
4902 GLCALL(glGetShaderiv
, shader
, pname
, params
);
4903 D(bug("...exit\n"));
4907 void glGetShaderInfoLog (GLuint shader
, GLsizei bufSize
, GLsizei
* length
, GLchar
* infoLog
)
4910 D(bug("[HostGL] TASK: 0x%x, glGetShaderInfoLog", FindTask(NULL
)));
4911 GLCALL(glGetShaderInfoLog
, shader
, bufSize
, length
, infoLog
);
4912 D(bug("...exit\n"));
4916 void glGetShaderSource (GLuint shader
, GLsizei bufSize
, GLsizei
* length
, GLchar
* source
)
4919 D(bug("[HostGL] TASK: 0x%x, glGetShaderSource", FindTask(NULL
)));
4920 GLCALL(glGetShaderSource
, shader
, bufSize
, length
, source
);
4921 D(bug("...exit\n"));
4925 GLint
glGetUniformLocation (GLuint program
, const GLchar
* name
)
4929 D(bug("[HostGL] TASK: 0x%x, glGetUniformLocation", FindTask(NULL
)));
4930 _ret
= GLCALL(glGetUniformLocation
, program
, name
);
4931 D(bug("...exit\n"));
4936 void glGetUniformfv (GLuint program
, GLint location
, GLfloat
* params
)
4939 D(bug("[HostGL] TASK: 0x%x, glGetUniformfv", FindTask(NULL
)));
4940 GLCALL(glGetUniformfv
, program
, location
, params
);
4941 D(bug("...exit\n"));
4945 void glGetUniformiv (GLuint program
, GLint location
, GLint
* params
)
4948 D(bug("[HostGL] TASK: 0x%x, glGetUniformiv", FindTask(NULL
)));
4949 GLCALL(glGetUniformiv
, program
, location
, params
);
4950 D(bug("...exit\n"));
4954 void glGetVertexAttribdv (GLuint index
, GLenum pname
, GLdouble
* params
)
4957 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribdv", FindTask(NULL
)));
4958 GLCALL(glGetVertexAttribdv
, index
, pname
, params
);
4959 D(bug("...exit\n"));
4963 void glGetVertexAttribfv (GLuint index
, GLenum pname
, GLfloat
* params
)
4966 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribfv", FindTask(NULL
)));
4967 GLCALL(glGetVertexAttribfv
, index
, pname
, params
);
4968 D(bug("...exit\n"));
4972 void glGetVertexAttribiv (GLuint index
, GLenum pname
, GLint
* params
)
4975 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribiv", FindTask(NULL
)));
4976 GLCALL(glGetVertexAttribiv
, index
, pname
, params
);
4977 D(bug("...exit\n"));
4981 void glGetVertexAttribPointerv (GLuint index
, GLenum pname
, GLvoid
* * pointer
)
4984 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribPointerv", FindTask(NULL
)));
4985 GLCALL(glGetVertexAttribPointerv
, index
, pname
, pointer
);
4986 D(bug("...exit\n"));
4990 GLboolean
glIsProgram (GLuint program
)
4994 D(bug("[HostGL] TASK: 0x%x, glIsProgram", FindTask(NULL
)));
4995 _ret
= GLCALL(glIsProgram
, program
);
4996 D(bug("...exit\n"));
5001 GLboolean
glIsShader (GLuint shader
)
5005 D(bug("[HostGL] TASK: 0x%x, glIsShader", FindTask(NULL
)));
5006 _ret
= GLCALL(glIsShader
, shader
);
5007 D(bug("...exit\n"));
5012 void glLinkProgram (GLuint program
)
5015 D(bug("[HostGL] TASK: 0x%x, glLinkProgram", FindTask(NULL
)));
5016 GLCALL(glLinkProgram
, program
);
5017 D(bug("...exit\n"));
5021 void glShaderSource (GLuint shader
, GLsizei count
, const GLchar
* * string
, const GLint
* length
)
5024 D(bug("[HostGL] TASK: 0x%x, glShaderSource", FindTask(NULL
)));
5025 GLCALL(glShaderSource
, shader
, count
, string
, length
);
5026 D(bug("...exit\n"));
5030 void glUseProgram (GLuint program
)
5033 D(bug("[HostGL] TASK: 0x%x, glUseProgram", FindTask(NULL
)));
5034 GLCALL(glUseProgram
, program
);
5035 D(bug("...exit\n"));
5039 void glUniform1f (GLint location
, GLfloat v0
)
5042 D(bug("[HostGL] TASK: 0x%x, glUniform1f", FindTask(NULL
)));
5043 GLCALL(glUniform1f
, location
, v0
);
5044 D(bug("...exit\n"));
5048 void glUniform2f (GLint location
, GLfloat v0
, GLfloat v1
)
5051 D(bug("[HostGL] TASK: 0x%x, glUniform2f", FindTask(NULL
)));
5052 GLCALL(glUniform2f
, location
, v0
, v1
);
5053 D(bug("...exit\n"));
5057 void glUniform3f (GLint location
, GLfloat v0
, GLfloat v1
, GLfloat v2
)
5060 D(bug("[HostGL] TASK: 0x%x, glUniform3f", FindTask(NULL
)));
5061 GLCALL(glUniform3f
, location
, v0
, v1
, v2
);
5062 D(bug("...exit\n"));
5066 void glUniform4f (GLint location
, GLfloat v0
, GLfloat v1
, GLfloat v2
, GLfloat v3
)
5069 D(bug("[HostGL] TASK: 0x%x, glUniform4f", FindTask(NULL
)));
5070 GLCALL(glUniform4f
, location
, v0
, v1
, v2
, v3
);
5071 D(bug("...exit\n"));
5075 void glUniform1i (GLint location
, GLint v0
)
5078 D(bug("[HostGL] TASK: 0x%x, glUniform1i", FindTask(NULL
)));
5079 GLCALL(glUniform1i
, location
, v0
);
5080 D(bug("...exit\n"));
5084 void glUniform2i (GLint location
, GLint v0
, GLint v1
)
5087 D(bug("[HostGL] TASK: 0x%x, glUniform2i", FindTask(NULL
)));
5088 GLCALL(glUniform2i
, location
, v0
, v1
);
5089 D(bug("...exit\n"));
5093 void glUniform3i (GLint location
, GLint v0
, GLint v1
, GLint v2
)
5096 D(bug("[HostGL] TASK: 0x%x, glUniform3i", FindTask(NULL
)));
5097 GLCALL(glUniform3i
, location
, v0
, v1
, v2
);
5098 D(bug("...exit\n"));
5102 void glUniform4i (GLint location
, GLint v0
, GLint v1
, GLint v2
, GLint v3
)
5105 D(bug("[HostGL] TASK: 0x%x, glUniform4i", FindTask(NULL
)));
5106 GLCALL(glUniform4i
, location
, v0
, v1
, v2
, v3
);
5107 D(bug("...exit\n"));
5111 void glUniform1fv (GLint location
, GLsizei count
, const GLfloat
* value
)
5114 D(bug("[HostGL] TASK: 0x%x, glUniform1fv", FindTask(NULL
)));
5115 GLCALL(glUniform1fv
, location
, count
, value
);
5116 D(bug("...exit\n"));
5120 void glUniform2fv (GLint location
, GLsizei count
, const GLfloat
* value
)
5123 D(bug("[HostGL] TASK: 0x%x, glUniform2fv", FindTask(NULL
)));
5124 GLCALL(glUniform2fv
, location
, count
, value
);
5125 D(bug("...exit\n"));
5129 void glUniform3fv (GLint location
, GLsizei count
, const GLfloat
* value
)
5132 D(bug("[HostGL] TASK: 0x%x, glUniform3fv", FindTask(NULL
)));
5133 GLCALL(glUniform3fv
, location
, count
, value
);
5134 D(bug("...exit\n"));
5138 void glUniform4fv (GLint location
, GLsizei count
, const GLfloat
* value
)
5141 D(bug("[HostGL] TASK: 0x%x, glUniform4fv", FindTask(NULL
)));
5142 GLCALL(glUniform4fv
, location
, count
, value
);
5143 D(bug("...exit\n"));
5147 void glUniform1iv (GLint location
, GLsizei count
, const GLint
* value
)
5150 D(bug("[HostGL] TASK: 0x%x, glUniform1iv", FindTask(NULL
)));
5151 GLCALL(glUniform1iv
, location
, count
, value
);
5152 D(bug("...exit\n"));
5156 void glUniform2iv (GLint location
, GLsizei count
, const GLint
* value
)
5159 D(bug("[HostGL] TASK: 0x%x, glUniform2iv", FindTask(NULL
)));
5160 GLCALL(glUniform2iv
, location
, count
, value
);
5161 D(bug("...exit\n"));
5165 void glUniform3iv (GLint location
, GLsizei count
, const GLint
* value
)
5168 D(bug("[HostGL] TASK: 0x%x, glUniform3iv", FindTask(NULL
)));
5169 GLCALL(glUniform3iv
, location
, count
, value
);
5170 D(bug("...exit\n"));
5174 void glUniform4iv (GLint location
, GLsizei count
, const GLint
* value
)
5177 D(bug("[HostGL] TASK: 0x%x, glUniform4iv", FindTask(NULL
)));
5178 GLCALL(glUniform4iv
, location
, count
, value
);
5179 D(bug("...exit\n"));
5183 void glUniformMatrix2fv (GLint location
, GLsizei count
, GLboolean transpose
, const GLfloat
* value
)
5186 D(bug("[HostGL] TASK: 0x%x, glUniformMatrix2fv", FindTask(NULL
)));
5187 GLCALL(glUniformMatrix2fv
, location
, count
, transpose
, value
);
5188 D(bug("...exit\n"));
5192 void glUniformMatrix3fv (GLint location
, GLsizei count
, GLboolean transpose
, const GLfloat
* value
)
5195 D(bug("[HostGL] TASK: 0x%x, glUniformMatrix3fv", FindTask(NULL
)));
5196 GLCALL(glUniformMatrix3fv
, location
, count
, transpose
, value
);
5197 D(bug("...exit\n"));
5201 void glUniformMatrix4fv (GLint location
, GLsizei count
, GLboolean transpose
, const GLfloat
* value
)
5204 D(bug("[HostGL] TASK: 0x%x, glUniformMatrix4fv", FindTask(NULL
)));
5205 GLCALL(glUniformMatrix4fv
, location
, count
, transpose
, value
);
5206 D(bug("...exit\n"));
5210 void glValidateProgram (GLuint program
)
5213 D(bug("[HostGL] TASK: 0x%x, glValidateProgram", FindTask(NULL
)));
5214 GLCALL(glValidateProgram
, program
);
5215 D(bug("...exit\n"));
5219 void glVertexAttrib1d (GLuint index
, GLdouble x
)
5222 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1d", FindTask(NULL
)));
5223 GLCALL(glVertexAttrib1d
, index
, x
);
5224 D(bug("...exit\n"));
5228 void glVertexAttrib1dv (GLuint index
, const GLdouble
* v
)
5231 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1dv", FindTask(NULL
)));
5232 GLCALL(glVertexAttrib1dv
, index
, v
);
5233 D(bug("...exit\n"));
5237 void glVertexAttrib1f (GLuint index
, GLfloat x
)
5240 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1f", FindTask(NULL
)));
5241 GLCALL(glVertexAttrib1f
, index
, x
);
5242 D(bug("...exit\n"));
5246 void glVertexAttrib1fv (GLuint index
, const GLfloat
* v
)
5249 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1fv", FindTask(NULL
)));
5250 GLCALL(glVertexAttrib1fv
, index
, v
);
5251 D(bug("...exit\n"));
5255 void glVertexAttrib1s (GLuint index
, GLshort x
)
5258 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1s", FindTask(NULL
)));
5259 GLCALL(glVertexAttrib1s
, index
, x
);
5260 D(bug("...exit\n"));
5264 void glVertexAttrib1sv (GLuint index
, const GLshort
* v
)
5267 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1sv", FindTask(NULL
)));
5268 GLCALL(glVertexAttrib1sv
, index
, v
);
5269 D(bug("...exit\n"));
5273 void glVertexAttrib2d (GLuint index
, GLdouble x
, GLdouble y
)
5276 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2d", FindTask(NULL
)));
5277 GLCALL(glVertexAttrib2d
, index
, x
, y
);
5278 D(bug("...exit\n"));
5282 void glVertexAttrib2dv (GLuint index
, const GLdouble
* v
)
5285 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2dv", FindTask(NULL
)));
5286 GLCALL(glVertexAttrib2dv
, index
, v
);
5287 D(bug("...exit\n"));
5291 void glVertexAttrib2f (GLuint index
, GLfloat x
, GLfloat y
)
5294 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2f", FindTask(NULL
)));
5295 GLCALL(glVertexAttrib2f
, index
, x
, y
);
5296 D(bug("...exit\n"));
5300 void glVertexAttrib2fv (GLuint index
, const GLfloat
* v
)
5303 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2fv", FindTask(NULL
)));
5304 GLCALL(glVertexAttrib2fv
, index
, v
);
5305 D(bug("...exit\n"));
5309 void glVertexAttrib2s (GLuint index
, GLshort x
, GLshort y
)
5312 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2s", FindTask(NULL
)));
5313 GLCALL(glVertexAttrib2s
, index
, x
, y
);
5314 D(bug("...exit\n"));
5318 void glVertexAttrib2sv (GLuint index
, const GLshort
* v
)
5321 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2sv", FindTask(NULL
)));
5322 GLCALL(glVertexAttrib2sv
, index
, v
);
5323 D(bug("...exit\n"));
5327 void glVertexAttrib3d (GLuint index
, GLdouble x
, GLdouble y
, GLdouble z
)
5330 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3d", FindTask(NULL
)));
5331 GLCALL(glVertexAttrib3d
, index
, x
, y
, z
);
5332 D(bug("...exit\n"));
5336 void glVertexAttrib3dv (GLuint index
, const GLdouble
* v
)
5339 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3dv", FindTask(NULL
)));
5340 GLCALL(glVertexAttrib3dv
, index
, v
);
5341 D(bug("...exit\n"));
5345 void glVertexAttrib3f (GLuint index
, GLfloat x
, GLfloat y
, GLfloat z
)
5348 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3f", FindTask(NULL
)));
5349 GLCALL(glVertexAttrib3f
, index
, x
, y
, z
);
5350 D(bug("...exit\n"));
5354 void glVertexAttrib3fv (GLuint index
, const GLfloat
* v
)
5357 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3fv", FindTask(NULL
)));
5358 GLCALL(glVertexAttrib3fv
, index
, v
);
5359 D(bug("...exit\n"));
5363 void glVertexAttrib3s (GLuint index
, GLshort x
, GLshort y
, GLshort z
)
5366 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3s", FindTask(NULL
)));
5367 GLCALL(glVertexAttrib3s
, index
, x
, y
, z
);
5368 D(bug("...exit\n"));
5372 void glVertexAttrib3sv (GLuint index
, const GLshort
* v
)
5375 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3sv", FindTask(NULL
)));
5376 GLCALL(glVertexAttrib3sv
, index
, v
);
5377 D(bug("...exit\n"));
5381 void glVertexAttrib4Nbv (GLuint index
, const GLbyte
* v
)
5384 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4Nbv", FindTask(NULL
)));
5385 GLCALL(glVertexAttrib4Nbv
, index
, v
);
5386 D(bug("...exit\n"));
5390 void glVertexAttrib4Niv (GLuint index
, const GLint
* v
)
5393 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4Niv", FindTask(NULL
)));
5394 GLCALL(glVertexAttrib4Niv
, index
, v
);
5395 D(bug("...exit\n"));
5399 void glVertexAttrib4Nsv (GLuint index
, const GLshort
* v
)
5402 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4Nsv", FindTask(NULL
)));
5403 GLCALL(glVertexAttrib4Nsv
, index
, v
);
5404 D(bug("...exit\n"));
5408 void glVertexAttrib4Nub (GLuint index
, GLubyte x
, GLubyte y
, GLubyte z
, GLubyte w
)
5411 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4Nub", FindTask(NULL
)));
5412 GLCALL(glVertexAttrib4Nub
, index
, x
, y
, z
, w
);
5413 D(bug("...exit\n"));
5417 void glVertexAttrib4Nubv (GLuint index
, const GLubyte
* v
)
5420 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4Nubv", FindTask(NULL
)));
5421 GLCALL(glVertexAttrib4Nubv
, index
, v
);
5422 D(bug("...exit\n"));
5426 void glVertexAttrib4Nuiv (GLuint index
, const GLuint
* v
)
5429 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4Nuiv", FindTask(NULL
)));
5430 GLCALL(glVertexAttrib4Nuiv
, index
, v
);
5431 D(bug("...exit\n"));
5435 void glVertexAttrib4Nusv (GLuint index
, const GLushort
* v
)
5438 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4Nusv", FindTask(NULL
)));
5439 GLCALL(glVertexAttrib4Nusv
, index
, v
);
5440 D(bug("...exit\n"));
5444 void glVertexAttrib4bv (GLuint index
, const GLbyte
* v
)
5447 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4bv", FindTask(NULL
)));
5448 GLCALL(glVertexAttrib4bv
, index
, v
);
5449 D(bug("...exit\n"));
5453 void glVertexAttrib4d (GLuint index
, GLdouble x
, GLdouble y
, GLdouble z
, GLdouble w
)
5456 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4d", FindTask(NULL
)));
5457 GLCALL(glVertexAttrib4d
, index
, x
, y
, z
, w
);
5458 D(bug("...exit\n"));
5462 void glVertexAttrib4dv (GLuint index
, const GLdouble
* v
)
5465 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4dv", FindTask(NULL
)));
5466 GLCALL(glVertexAttrib4dv
, index
, v
);
5467 D(bug("...exit\n"));
5471 void glVertexAttrib4f (GLuint index
, GLfloat x
, GLfloat y
, GLfloat z
, GLfloat w
)
5474 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4f", FindTask(NULL
)));
5475 GLCALL(glVertexAttrib4f
, index
, x
, y
, z
, w
);
5476 D(bug("...exit\n"));
5480 void glVertexAttrib4fv (GLuint index
, const GLfloat
* v
)
5483 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4fv", FindTask(NULL
)));
5484 GLCALL(glVertexAttrib4fv
, index
, v
);
5485 D(bug("...exit\n"));
5489 void glVertexAttrib4iv (GLuint index
, const GLint
* v
)
5492 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4iv", FindTask(NULL
)));
5493 GLCALL(glVertexAttrib4iv
, index
, v
);
5494 D(bug("...exit\n"));
5498 void glVertexAttrib4s (GLuint index
, GLshort x
, GLshort y
, GLshort z
, GLshort w
)
5501 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4s", FindTask(NULL
)));
5502 GLCALL(glVertexAttrib4s
, index
, x
, y
, z
, w
);
5503 D(bug("...exit\n"));
5507 void glVertexAttrib4sv (GLuint index
, const GLshort
* v
)
5510 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4sv", FindTask(NULL
)));
5511 GLCALL(glVertexAttrib4sv
, index
, v
);
5512 D(bug("...exit\n"));
5516 void glVertexAttrib4ubv (GLuint index
, const GLubyte
* v
)
5519 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4ubv", FindTask(NULL
)));
5520 GLCALL(glVertexAttrib4ubv
, index
, v
);
5521 D(bug("...exit\n"));
5525 void glVertexAttrib4uiv (GLuint index
, const GLuint
* v
)
5528 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4uiv", FindTask(NULL
)));
5529 GLCALL(glVertexAttrib4uiv
, index
, v
);
5530 D(bug("...exit\n"));
5534 void glVertexAttrib4usv (GLuint index
, const GLushort
* v
)
5537 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4usv", FindTask(NULL
)));
5538 GLCALL(glVertexAttrib4usv
, index
, v
);
5539 D(bug("...exit\n"));
5543 void glVertexAttribPointer (GLuint index
, GLint size
, GLenum type
, GLboolean normalized
, GLsizei stride
, const GLvoid
* pointer
)
5546 D(bug("[HostGL] TASK: 0x%x, glVertexAttribPointer", FindTask(NULL
)));
5547 GLCALL(glVertexAttribPointer
, index
, size
, type
, normalized
, stride
, pointer
);
5548 D(bug("...exit\n"));
5552 void glUniformMatrix2x3fv (GLint location
, GLsizei count
, GLboolean transpose
, const GLfloat
* value
)
5555 D(bug("[HostGL] TASK: 0x%x, glUniformMatrix2x3fv", FindTask(NULL
)));
5556 GLCALL(glUniformMatrix2x3fv
, location
, count
, transpose
, value
);
5557 D(bug("...exit\n"));
5561 void glUniformMatrix3x2fv (GLint location
, GLsizei count
, GLboolean transpose
, const GLfloat
* value
)
5564 D(bug("[HostGL] TASK: 0x%x, glUniformMatrix3x2fv", FindTask(NULL
)));
5565 GLCALL(glUniformMatrix3x2fv
, location
, count
, transpose
, value
);
5566 D(bug("...exit\n"));
5570 void glUniformMatrix2x4fv (GLint location
, GLsizei count
, GLboolean transpose
, const GLfloat
* value
)
5573 D(bug("[HostGL] TASK: 0x%x, glUniformMatrix2x4fv", FindTask(NULL
)));
5574 GLCALL(glUniformMatrix2x4fv
, location
, count
, transpose
, value
);
5575 D(bug("...exit\n"));
5579 void glUniformMatrix4x2fv (GLint location
, GLsizei count
, GLboolean transpose
, const GLfloat
* value
)
5582 D(bug("[HostGL] TASK: 0x%x, glUniformMatrix4x2fv", FindTask(NULL
)));
5583 GLCALL(glUniformMatrix4x2fv
, location
, count
, transpose
, value
);
5584 D(bug("...exit\n"));
5588 void glUniformMatrix3x4fv (GLint location
, GLsizei count
, GLboolean transpose
, const GLfloat
* value
)
5591 D(bug("[HostGL] TASK: 0x%x, glUniformMatrix3x4fv", FindTask(NULL
)));
5592 GLCALL(glUniformMatrix3x4fv
, location
, count
, transpose
, value
);
5593 D(bug("...exit\n"));
5597 void glUniformMatrix4x3fv (GLint location
, GLsizei count
, GLboolean transpose
, const GLfloat
* value
)
5600 D(bug("[HostGL] TASK: 0x%x, glUniformMatrix4x3fv", FindTask(NULL
)));
5601 GLCALL(glUniformMatrix4x3fv
, location
, count
, transpose
, value
);
5602 D(bug("...exit\n"));
5606 void glLoadTransposeMatrixfARB (const GLfloat
* m
)
5609 D(bug("[HostGL] TASK: 0x%x, glLoadTransposeMatrixfARB", FindTask(NULL
)));
5610 GLCALL(glLoadTransposeMatrixfARB
, m
);
5611 D(bug("...exit\n"));
5615 void glLoadTransposeMatrixdARB (const GLdouble
* m
)
5618 D(bug("[HostGL] TASK: 0x%x, glLoadTransposeMatrixdARB", FindTask(NULL
)));
5619 GLCALL(glLoadTransposeMatrixdARB
, m
);
5620 D(bug("...exit\n"));
5624 void glMultTransposeMatrixfARB (const GLfloat
* m
)
5627 D(bug("[HostGL] TASK: 0x%x, glMultTransposeMatrixfARB", FindTask(NULL
)));
5628 GLCALL(glMultTransposeMatrixfARB
, m
);
5629 D(bug("...exit\n"));
5633 void glMultTransposeMatrixdARB (const GLdouble
* m
)
5636 D(bug("[HostGL] TASK: 0x%x, glMultTransposeMatrixdARB", FindTask(NULL
)));
5637 GLCALL(glMultTransposeMatrixdARB
, m
);
5638 D(bug("...exit\n"));
5642 void glSampleCoverageARB (GLclampf value
, GLboolean invert
)
5645 D(bug("[HostGL] TASK: 0x%x, glSampleCoverageARB", FindTask(NULL
)));
5646 GLCALL(glSampleCoverageARB
, value
, invert
);
5647 D(bug("...exit\n"));
5651 void glCompressedTexImage3DARB (GLenum target
, GLint level
, GLenum internalformat
, GLsizei width
, GLsizei height
, GLsizei depth
, GLint border
, GLsizei imageSize
, const GLvoid
* data
)
5654 D(bug("[HostGL] TASK: 0x%x, glCompressedTexImage3DARB", FindTask(NULL
)));
5655 GLCALL(glCompressedTexImage3DARB
, target
, level
, internalformat
, width
, height
, depth
, border
, imageSize
, data
);
5656 D(bug("...exit\n"));
5660 void glCompressedTexImage2DARB (GLenum target
, GLint level
, GLenum internalformat
, GLsizei width
, GLsizei height
, GLint border
, GLsizei imageSize
, const GLvoid
* data
)
5663 D(bug("[HostGL] TASK: 0x%x, glCompressedTexImage2DARB", FindTask(NULL
)));
5664 GLCALL(glCompressedTexImage2DARB
, target
, level
, internalformat
, width
, height
, border
, imageSize
, data
);
5665 D(bug("...exit\n"));
5669 void glCompressedTexImage1DARB (GLenum target
, GLint level
, GLenum internalformat
, GLsizei width
, GLint border
, GLsizei imageSize
, const GLvoid
* data
)
5672 D(bug("[HostGL] TASK: 0x%x, glCompressedTexImage1DARB", FindTask(NULL
)));
5673 GLCALL(glCompressedTexImage1DARB
, target
, level
, internalformat
, width
, border
, imageSize
, data
);
5674 D(bug("...exit\n"));
5678 void glCompressedTexSubImage3DARB (GLenum target
, GLint level
, GLint xoffset
, GLint yoffset
, GLint zoffset
, GLsizei width
, GLsizei height
, GLsizei depth
, GLenum format
, GLsizei imageSize
, const GLvoid
* data
)
5681 D(bug("[HostGL] TASK: 0x%x, glCompressedTexSubImage3DARB", FindTask(NULL
)));
5682 GLCALL(glCompressedTexSubImage3DARB
, target
, level
, xoffset
, yoffset
, zoffset
, width
, height
, depth
, format
, imageSize
, data
);
5683 D(bug("...exit\n"));
5687 void glCompressedTexSubImage2DARB (GLenum target
, GLint level
, GLint xoffset
, GLint yoffset
, GLsizei width
, GLsizei height
, GLenum format
, GLsizei imageSize
, const GLvoid
* data
)
5690 D(bug("[HostGL] TASK: 0x%x, glCompressedTexSubImage2DARB", FindTask(NULL
)));
5691 GLCALL(glCompressedTexSubImage2DARB
, target
, level
, xoffset
, yoffset
, width
, height
, format
, imageSize
, data
);
5692 D(bug("...exit\n"));
5696 void glCompressedTexSubImage1DARB (GLenum target
, GLint level
, GLint xoffset
, GLsizei width
, GLenum format
, GLsizei imageSize
, const GLvoid
* data
)
5699 D(bug("[HostGL] TASK: 0x%x, glCompressedTexSubImage1DARB", FindTask(NULL
)));
5700 GLCALL(glCompressedTexSubImage1DARB
, target
, level
, xoffset
, width
, format
, imageSize
, data
);
5701 D(bug("...exit\n"));
5705 void glGetCompressedTexImageARB (GLenum target
, GLint level
, GLvoid
* img
)
5708 D(bug("[HostGL] TASK: 0x%x, glGetCompressedTexImageARB", FindTask(NULL
)));
5709 GLCALL(glGetCompressedTexImageARB
, target
, level
, img
);
5710 D(bug("...exit\n"));
5714 void glPointParameterfARB (GLenum pname
, GLfloat param
)
5717 D(bug("[HostGL] TASK: 0x%x, glPointParameterfARB", FindTask(NULL
)));
5718 GLCALL(glPointParameterfARB
, pname
, param
);
5719 D(bug("...exit\n"));
5723 void glPointParameterfvARB (GLenum pname
, const GLfloat
* params
)
5726 D(bug("[HostGL] TASK: 0x%x, glPointParameterfvARB", FindTask(NULL
)));
5727 GLCALL(glPointParameterfvARB
, pname
, params
);
5728 D(bug("...exit\n"));
5732 void glWindowPos2dARB (GLdouble x
, GLdouble y
)
5735 D(bug("[HostGL] TASK: 0x%x, glWindowPos2dARB", FindTask(NULL
)));
5736 GLCALL(glWindowPos2dARB
, x
, y
);
5737 D(bug("...exit\n"));
5741 void glWindowPos2dvARB (const GLdouble
* v
)
5744 D(bug("[HostGL] TASK: 0x%x, glWindowPos2dvARB", FindTask(NULL
)));
5745 GLCALL(glWindowPos2dvARB
, v
);
5746 D(bug("...exit\n"));
5750 void glWindowPos2fARB (GLfloat x
, GLfloat y
)
5753 D(bug("[HostGL] TASK: 0x%x, glWindowPos2fARB", FindTask(NULL
)));
5754 GLCALL(glWindowPos2fARB
, x
, y
);
5755 D(bug("...exit\n"));
5759 void glWindowPos2fvARB (const GLfloat
* v
)
5762 D(bug("[HostGL] TASK: 0x%x, glWindowPos2fvARB", FindTask(NULL
)));
5763 GLCALL(glWindowPos2fvARB
, v
);
5764 D(bug("...exit\n"));
5768 void glWindowPos2iARB (GLint x
, GLint y
)
5771 D(bug("[HostGL] TASK: 0x%x, glWindowPos2iARB", FindTask(NULL
)));
5772 GLCALL(glWindowPos2iARB
, x
, y
);
5773 D(bug("...exit\n"));
5777 void glWindowPos2ivARB (const GLint
* v
)
5780 D(bug("[HostGL] TASK: 0x%x, glWindowPos2ivARB", FindTask(NULL
)));
5781 GLCALL(glWindowPos2ivARB
, v
);
5782 D(bug("...exit\n"));
5786 void glWindowPos2sARB (GLshort x
, GLshort y
)
5789 D(bug("[HostGL] TASK: 0x%x, glWindowPos2sARB", FindTask(NULL
)));
5790 GLCALL(glWindowPos2sARB
, x
, y
);
5791 D(bug("...exit\n"));
5795 void glWindowPos2svARB (const GLshort
* v
)
5798 D(bug("[HostGL] TASK: 0x%x, glWindowPos2svARB", FindTask(NULL
)));
5799 GLCALL(glWindowPos2svARB
, v
);
5800 D(bug("...exit\n"));
5804 void glWindowPos3dARB (GLdouble x
, GLdouble y
, GLdouble z
)
5807 D(bug("[HostGL] TASK: 0x%x, glWindowPos3dARB", FindTask(NULL
)));
5808 GLCALL(glWindowPos3dARB
, x
, y
, z
);
5809 D(bug("...exit\n"));
5813 void glWindowPos3dvARB (const GLdouble
* v
)
5816 D(bug("[HostGL] TASK: 0x%x, glWindowPos3dvARB", FindTask(NULL
)));
5817 GLCALL(glWindowPos3dvARB
, v
);
5818 D(bug("...exit\n"));
5822 void glWindowPos3fARB (GLfloat x
, GLfloat y
, GLfloat z
)
5825 D(bug("[HostGL] TASK: 0x%x, glWindowPos3fARB", FindTask(NULL
)));
5826 GLCALL(glWindowPos3fARB
, x
, y
, z
);
5827 D(bug("...exit\n"));
5831 void glWindowPos3fvARB (const GLfloat
* v
)
5834 D(bug("[HostGL] TASK: 0x%x, glWindowPos3fvARB", FindTask(NULL
)));
5835 GLCALL(glWindowPos3fvARB
, v
);
5836 D(bug("...exit\n"));
5840 void glWindowPos3iARB (GLint x
, GLint y
, GLint z
)
5843 D(bug("[HostGL] TASK: 0x%x, glWindowPos3iARB", FindTask(NULL
)));
5844 GLCALL(glWindowPos3iARB
, x
, y
, z
);
5845 D(bug("...exit\n"));
5849 void glWindowPos3ivARB (const GLint
* v
)
5852 D(bug("[HostGL] TASK: 0x%x, glWindowPos3ivARB", FindTask(NULL
)));
5853 GLCALL(glWindowPos3ivARB
, v
);
5854 D(bug("...exit\n"));
5858 void glWindowPos3sARB (GLshort x
, GLshort y
, GLshort z
)
5861 D(bug("[HostGL] TASK: 0x%x, glWindowPos3sARB", FindTask(NULL
)));
5862 GLCALL(glWindowPos3sARB
, x
, y
, z
);
5863 D(bug("...exit\n"));
5867 void glWindowPos3svARB (const GLshort
* v
)
5870 D(bug("[HostGL] TASK: 0x%x, glWindowPos3svARB", FindTask(NULL
)));
5871 GLCALL(glWindowPos3svARB
, v
);
5872 D(bug("...exit\n"));
5876 void glVertexAttrib1dARB (GLuint index
, GLdouble x
)
5879 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1dARB", FindTask(NULL
)));
5880 GLCALL(glVertexAttrib1dARB
, index
, x
);
5881 D(bug("...exit\n"));
5885 void glVertexAttrib1dvARB (GLuint index
, const GLdouble
* v
)
5888 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1dvARB", FindTask(NULL
)));
5889 GLCALL(glVertexAttrib1dvARB
, index
, v
);
5890 D(bug("...exit\n"));
5894 void glVertexAttrib1fARB (GLuint index
, GLfloat x
)
5897 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1fARB", FindTask(NULL
)));
5898 GLCALL(glVertexAttrib1fARB
, index
, x
);
5899 D(bug("...exit\n"));
5903 void glVertexAttrib1fvARB (GLuint index
, const GLfloat
* v
)
5906 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1fvARB", FindTask(NULL
)));
5907 GLCALL(glVertexAttrib1fvARB
, index
, v
);
5908 D(bug("...exit\n"));
5912 void glVertexAttrib1sARB (GLuint index
, GLshort x
)
5915 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1sARB", FindTask(NULL
)));
5916 GLCALL(glVertexAttrib1sARB
, index
, x
);
5917 D(bug("...exit\n"));
5921 void glVertexAttrib1svARB (GLuint index
, const GLshort
* v
)
5924 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1svARB", FindTask(NULL
)));
5925 GLCALL(glVertexAttrib1svARB
, index
, v
);
5926 D(bug("...exit\n"));
5930 void glVertexAttrib2dARB (GLuint index
, GLdouble x
, GLdouble y
)
5933 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2dARB", FindTask(NULL
)));
5934 GLCALL(glVertexAttrib2dARB
, index
, x
, y
);
5935 D(bug("...exit\n"));
5939 void glVertexAttrib2dvARB (GLuint index
, const GLdouble
* v
)
5942 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2dvARB", FindTask(NULL
)));
5943 GLCALL(glVertexAttrib2dvARB
, index
, v
);
5944 D(bug("...exit\n"));
5948 void glVertexAttrib2fARB (GLuint index
, GLfloat x
, GLfloat y
)
5951 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2fARB", FindTask(NULL
)));
5952 GLCALL(glVertexAttrib2fARB
, index
, x
, y
);
5953 D(bug("...exit\n"));
5957 void glVertexAttrib2fvARB (GLuint index
, const GLfloat
* v
)
5960 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2fvARB", FindTask(NULL
)));
5961 GLCALL(glVertexAttrib2fvARB
, index
, v
);
5962 D(bug("...exit\n"));
5966 void glVertexAttrib2sARB (GLuint index
, GLshort x
, GLshort y
)
5969 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2sARB", FindTask(NULL
)));
5970 GLCALL(glVertexAttrib2sARB
, index
, x
, y
);
5971 D(bug("...exit\n"));
5975 void glVertexAttrib2svARB (GLuint index
, const GLshort
* v
)
5978 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2svARB", FindTask(NULL
)));
5979 GLCALL(glVertexAttrib2svARB
, index
, v
);
5980 D(bug("...exit\n"));
5984 void glVertexAttrib3dARB (GLuint index
, GLdouble x
, GLdouble y
, GLdouble z
)
5987 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3dARB", FindTask(NULL
)));
5988 GLCALL(glVertexAttrib3dARB
, index
, x
, y
, z
);
5989 D(bug("...exit\n"));
5993 void glVertexAttrib3dvARB (GLuint index
, const GLdouble
* v
)
5996 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3dvARB", FindTask(NULL
)));
5997 GLCALL(glVertexAttrib3dvARB
, index
, v
);
5998 D(bug("...exit\n"));
6002 void glVertexAttrib3fARB (GLuint index
, GLfloat x
, GLfloat y
, GLfloat z
)
6005 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3fARB", FindTask(NULL
)));
6006 GLCALL(glVertexAttrib3fARB
, index
, x
, y
, z
);
6007 D(bug("...exit\n"));
6011 void glVertexAttrib3fvARB (GLuint index
, const GLfloat
* v
)
6014 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3fvARB", FindTask(NULL
)));
6015 GLCALL(glVertexAttrib3fvARB
, index
, v
);
6016 D(bug("...exit\n"));
6020 void glVertexAttrib3sARB (GLuint index
, GLshort x
, GLshort y
, GLshort z
)
6023 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3sARB", FindTask(NULL
)));
6024 GLCALL(glVertexAttrib3sARB
, index
, x
, y
, z
);
6025 D(bug("...exit\n"));
6029 void glVertexAttrib3svARB (GLuint index
, const GLshort
* v
)
6032 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3svARB", FindTask(NULL
)));
6033 GLCALL(glVertexAttrib3svARB
, index
, v
);
6034 D(bug("...exit\n"));
6038 void glVertexAttrib4NbvARB (GLuint index
, const GLbyte
* v
)
6041 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4NbvARB", FindTask(NULL
)));
6042 GLCALL(glVertexAttrib4NbvARB
, index
, v
);
6043 D(bug("...exit\n"));
6047 void glVertexAttrib4NivARB (GLuint index
, const GLint
* v
)
6050 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4NivARB", FindTask(NULL
)));
6051 GLCALL(glVertexAttrib4NivARB
, index
, v
);
6052 D(bug("...exit\n"));
6056 void glVertexAttrib4NsvARB (GLuint index
, const GLshort
* v
)
6059 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4NsvARB", FindTask(NULL
)));
6060 GLCALL(glVertexAttrib4NsvARB
, index
, v
);
6061 D(bug("...exit\n"));
6065 void glVertexAttrib4NubARB (GLuint index
, GLubyte x
, GLubyte y
, GLubyte z
, GLubyte w
)
6068 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4NubARB", FindTask(NULL
)));
6069 GLCALL(glVertexAttrib4NubARB
, index
, x
, y
, z
, w
);
6070 D(bug("...exit\n"));
6074 void glVertexAttrib4NubvARB (GLuint index
, const GLubyte
* v
)
6077 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4NubvARB", FindTask(NULL
)));
6078 GLCALL(glVertexAttrib4NubvARB
, index
, v
);
6079 D(bug("...exit\n"));
6083 void glVertexAttrib4NuivARB (GLuint index
, const GLuint
* v
)
6086 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4NuivARB", FindTask(NULL
)));
6087 GLCALL(glVertexAttrib4NuivARB
, index
, v
);
6088 D(bug("...exit\n"));
6092 void glVertexAttrib4NusvARB (GLuint index
, const GLushort
* v
)
6095 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4NusvARB", FindTask(NULL
)));
6096 GLCALL(glVertexAttrib4NusvARB
, index
, v
);
6097 D(bug("...exit\n"));
6101 void glVertexAttrib4bvARB (GLuint index
, const GLbyte
* v
)
6104 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4bvARB", FindTask(NULL
)));
6105 GLCALL(glVertexAttrib4bvARB
, index
, v
);
6106 D(bug("...exit\n"));
6110 void glVertexAttrib4dARB (GLuint index
, GLdouble x
, GLdouble y
, GLdouble z
, GLdouble w
)
6113 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4dARB", FindTask(NULL
)));
6114 GLCALL(glVertexAttrib4dARB
, index
, x
, y
, z
, w
);
6115 D(bug("...exit\n"));
6119 void glVertexAttrib4dvARB (GLuint index
, const GLdouble
* v
)
6122 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4dvARB", FindTask(NULL
)));
6123 GLCALL(glVertexAttrib4dvARB
, index
, v
);
6124 D(bug("...exit\n"));
6128 void glVertexAttrib4fARB (GLuint index
, GLfloat x
, GLfloat y
, GLfloat z
, GLfloat w
)
6131 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4fARB", FindTask(NULL
)));
6132 GLCALL(glVertexAttrib4fARB
, index
, x
, y
, z
, w
);
6133 D(bug("...exit\n"));
6137 void glVertexAttrib4fvARB (GLuint index
, const GLfloat
* v
)
6140 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4fvARB", FindTask(NULL
)));
6141 GLCALL(glVertexAttrib4fvARB
, index
, v
);
6142 D(bug("...exit\n"));
6146 void glVertexAttrib4ivARB (GLuint index
, const GLint
* v
)
6149 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4ivARB", FindTask(NULL
)));
6150 GLCALL(glVertexAttrib4ivARB
, index
, v
);
6151 D(bug("...exit\n"));
6155 void glVertexAttrib4sARB (GLuint index
, GLshort x
, GLshort y
, GLshort z
, GLshort w
)
6158 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4sARB", FindTask(NULL
)));
6159 GLCALL(glVertexAttrib4sARB
, index
, x
, y
, z
, w
);
6160 D(bug("...exit\n"));
6164 void glVertexAttrib4svARB (GLuint index
, const GLshort
* v
)
6167 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4svARB", FindTask(NULL
)));
6168 GLCALL(glVertexAttrib4svARB
, index
, v
);
6169 D(bug("...exit\n"));
6173 void glVertexAttrib4ubvARB (GLuint index
, const GLubyte
* v
)
6176 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4ubvARB", FindTask(NULL
)));
6177 GLCALL(glVertexAttrib4ubvARB
, index
, v
);
6178 D(bug("...exit\n"));
6182 void glVertexAttrib4uivARB (GLuint index
, const GLuint
* v
)
6185 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4uivARB", FindTask(NULL
)));
6186 GLCALL(glVertexAttrib4uivARB
, index
, v
);
6187 D(bug("...exit\n"));
6191 void glVertexAttrib4usvARB (GLuint index
, const GLushort
* v
)
6194 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4usvARB", FindTask(NULL
)));
6195 GLCALL(glVertexAttrib4usvARB
, index
, v
);
6196 D(bug("...exit\n"));
6200 void glVertexAttribPointerARB (GLuint index
, GLint size
, GLenum type
, GLboolean normalized
, GLsizei stride
, const GLvoid
* pointer
)
6203 D(bug("[HostGL] TASK: 0x%x, glVertexAttribPointerARB", FindTask(NULL
)));
6204 GLCALL(glVertexAttribPointerARB
, index
, size
, type
, normalized
, stride
, pointer
);
6205 D(bug("...exit\n"));
6209 void glEnableVertexAttribArrayARB (GLuint index
)
6212 D(bug("[HostGL] TASK: 0x%x, glEnableVertexAttribArrayARB", FindTask(NULL
)));
6213 GLCALL(glEnableVertexAttribArrayARB
, index
);
6214 D(bug("...exit\n"));
6218 void glDisableVertexAttribArrayARB (GLuint index
)
6221 D(bug("[HostGL] TASK: 0x%x, glDisableVertexAttribArrayARB", FindTask(NULL
)));
6222 GLCALL(glDisableVertexAttribArrayARB
, index
);
6223 D(bug("...exit\n"));
6227 void glProgramStringARB (GLenum target
, GLenum format
, GLsizei len
, const GLvoid
* string
)
6230 D(bug("[HostGL] TASK: 0x%x, glProgramStringARB", FindTask(NULL
)));
6231 GLCALL(glProgramStringARB
, target
, format
, len
, string
);
6232 D(bug("...exit\n"));
6236 void glBindProgramARB (GLenum target
, GLuint program
)
6239 D(bug("[HostGL] TASK: 0x%x, glBindProgramARB", FindTask(NULL
)));
6240 GLCALL(glBindProgramARB
, target
, program
);
6241 D(bug("...exit\n"));
6245 void glDeleteProgramsARB (GLsizei n
, const GLuint
* programs
)
6248 D(bug("[HostGL] TASK: 0x%x, glDeleteProgramsARB", FindTask(NULL
)));
6249 GLCALL(glDeleteProgramsARB
, n
, programs
);
6250 D(bug("...exit\n"));
6254 void glGenProgramsARB (GLsizei n
, GLuint
* programs
)
6257 D(bug("[HostGL] TASK: 0x%x, glGenProgramsARB", FindTask(NULL
)));
6258 GLCALL(glGenProgramsARB
, n
, programs
);
6259 D(bug("...exit\n"));
6263 void glProgramEnvParameter4dARB (GLenum target
, GLuint index
, GLdouble x
, GLdouble y
, GLdouble z
, GLdouble w
)
6266 D(bug("[HostGL] TASK: 0x%x, glProgramEnvParameter4dARB", FindTask(NULL
)));
6267 GLCALL(glProgramEnvParameter4dARB
, target
, index
, x
, y
, z
, w
);
6268 D(bug("...exit\n"));
6272 void glProgramEnvParameter4dvARB (GLenum target
, GLuint index
, const GLdouble
* params
)
6275 D(bug("[HostGL] TASK: 0x%x, glProgramEnvParameter4dvARB", FindTask(NULL
)));
6276 GLCALL(glProgramEnvParameter4dvARB
, target
, index
, params
);
6277 D(bug("...exit\n"));
6281 void glProgramEnvParameter4fARB (GLenum target
, GLuint index
, GLfloat x
, GLfloat y
, GLfloat z
, GLfloat w
)
6284 D(bug("[HostGL] TASK: 0x%x, glProgramEnvParameter4fARB", FindTask(NULL
)));
6285 GLCALL(glProgramEnvParameter4fARB
, target
, index
, x
, y
, z
, w
);
6286 D(bug("...exit\n"));
6290 void glProgramEnvParameter4fvARB (GLenum target
, GLuint index
, const GLfloat
* params
)
6293 D(bug("[HostGL] TASK: 0x%x, glProgramEnvParameter4fvARB", FindTask(NULL
)));
6294 GLCALL(glProgramEnvParameter4fvARB
, target
, index
, params
);
6295 D(bug("...exit\n"));
6299 void glProgramLocalParameter4dARB (GLenum target
, GLuint index
, GLdouble x
, GLdouble y
, GLdouble z
, GLdouble w
)
6302 D(bug("[HostGL] TASK: 0x%x, glProgramLocalParameter4dARB", FindTask(NULL
)));
6303 GLCALL(glProgramLocalParameter4dARB
, target
, index
, x
, y
, z
, w
);
6304 D(bug("...exit\n"));
6308 void glProgramLocalParameter4dvARB (GLenum target
, GLuint index
, const GLdouble
* params
)
6311 D(bug("[HostGL] TASK: 0x%x, glProgramLocalParameter4dvARB", FindTask(NULL
)));
6312 GLCALL(glProgramLocalParameter4dvARB
, target
, index
, params
);
6313 D(bug("...exit\n"));
6317 void glProgramLocalParameter4fARB (GLenum target
, GLuint index
, GLfloat x
, GLfloat y
, GLfloat z
, GLfloat w
)
6320 D(bug("[HostGL] TASK: 0x%x, glProgramLocalParameter4fARB", FindTask(NULL
)));
6321 GLCALL(glProgramLocalParameter4fARB
, target
, index
, x
, y
, z
, w
);
6322 D(bug("...exit\n"));
6326 void glProgramLocalParameter4fvARB (GLenum target
, GLuint index
, const GLfloat
* params
)
6329 D(bug("[HostGL] TASK: 0x%x, glProgramLocalParameter4fvARB", FindTask(NULL
)));
6330 GLCALL(glProgramLocalParameter4fvARB
, target
, index
, params
);
6331 D(bug("...exit\n"));
6335 void glGetProgramEnvParameterdvARB (GLenum target
, GLuint index
, GLdouble
* params
)
6338 D(bug("[HostGL] TASK: 0x%x, glGetProgramEnvParameterdvARB", FindTask(NULL
)));
6339 GLCALL(glGetProgramEnvParameterdvARB
, target
, index
, params
);
6340 D(bug("...exit\n"));
6344 void glGetProgramEnvParameterfvARB (GLenum target
, GLuint index
, GLfloat
* params
)
6347 D(bug("[HostGL] TASK: 0x%x, glGetProgramEnvParameterfvARB", FindTask(NULL
)));
6348 GLCALL(glGetProgramEnvParameterfvARB
, target
, index
, params
);
6349 D(bug("...exit\n"));
6353 void glGetProgramLocalParameterdvARB (GLenum target
, GLuint index
, GLdouble
* params
)
6356 D(bug("[HostGL] TASK: 0x%x, glGetProgramLocalParameterdvARB", FindTask(NULL
)));
6357 GLCALL(glGetProgramLocalParameterdvARB
, target
, index
, params
);
6358 D(bug("...exit\n"));
6362 void glGetProgramLocalParameterfvARB (GLenum target
, GLuint index
, GLfloat
* params
)
6365 D(bug("[HostGL] TASK: 0x%x, glGetProgramLocalParameterfvARB", FindTask(NULL
)));
6366 GLCALL(glGetProgramLocalParameterfvARB
, target
, index
, params
);
6367 D(bug("...exit\n"));
6371 void glGetProgramivARB (GLenum target
, GLenum pname
, GLint
* params
)
6374 D(bug("[HostGL] TASK: 0x%x, glGetProgramivARB", FindTask(NULL
)));
6375 GLCALL(glGetProgramivARB
, target
, pname
, params
);
6376 D(bug("...exit\n"));
6380 void glGetProgramStringARB (GLenum target
, GLenum pname
, GLvoid
* string
)
6383 D(bug("[HostGL] TASK: 0x%x, glGetProgramStringARB", FindTask(NULL
)));
6384 GLCALL(glGetProgramStringARB
, target
, pname
, string
);
6385 D(bug("...exit\n"));
6389 void glGetVertexAttribdvARB (GLuint index
, GLenum pname
, GLdouble
* params
)
6392 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribdvARB", FindTask(NULL
)));
6393 GLCALL(glGetVertexAttribdvARB
, index
, pname
, params
);
6394 D(bug("...exit\n"));
6398 void glGetVertexAttribfvARB (GLuint index
, GLenum pname
, GLfloat
* params
)
6401 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribfvARB", FindTask(NULL
)));
6402 GLCALL(glGetVertexAttribfvARB
, index
, pname
, params
);
6403 D(bug("...exit\n"));
6407 void glGetVertexAttribivARB (GLuint index
, GLenum pname
, GLint
* params
)
6410 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribivARB", FindTask(NULL
)));
6411 GLCALL(glGetVertexAttribivARB
, index
, pname
, params
);
6412 D(bug("...exit\n"));
6416 void glGetVertexAttribPointervARB (GLuint index
, GLenum pname
, GLvoid
* * pointer
)
6419 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribPointervARB", FindTask(NULL
)));
6420 GLCALL(glGetVertexAttribPointervARB
, index
, pname
, pointer
);
6421 D(bug("...exit\n"));
6425 GLboolean
glIsProgramARB (GLuint program
)
6429 D(bug("[HostGL] TASK: 0x%x, glIsProgramARB", FindTask(NULL
)));
6430 _ret
= GLCALL(glIsProgramARB
, program
);
6431 D(bug("...exit\n"));
6436 void glBindBufferARB (GLenum target
, GLuint buffer
)
6439 D(bug("[HostGL] TASK: 0x%x, glBindBufferARB", FindTask(NULL
)));
6440 GLCALL(glBindBufferARB
, target
, buffer
);
6441 D(bug("...exit\n"));
6445 void glDeleteBuffersARB (GLsizei n
, const GLuint
* buffers
)
6448 D(bug("[HostGL] TASK: 0x%x, glDeleteBuffersARB", FindTask(NULL
)));
6449 GLCALL(glDeleteBuffersARB
, n
, buffers
);
6450 D(bug("...exit\n"));
6454 void glGenBuffersARB (GLsizei n
, GLuint
* buffers
)
6457 D(bug("[HostGL] TASK: 0x%x, glGenBuffersARB", FindTask(NULL
)));
6458 GLCALL(glGenBuffersARB
, n
, buffers
);
6459 D(bug("...exit\n"));
6463 GLboolean
glIsBufferARB (GLuint buffer
)
6467 D(bug("[HostGL] TASK: 0x%x, glIsBufferARB", FindTask(NULL
)));
6468 _ret
= GLCALL(glIsBufferARB
, buffer
);
6469 D(bug("...exit\n"));
6474 void glBufferDataARB (GLenum target
, GLsizeiptrARB size
, const GLvoid
* data
, GLenum usage
)
6477 D(bug("[HostGL] TASK: 0x%x, glBufferDataARB", FindTask(NULL
)));
6478 GLCALL(glBufferDataARB
, target
, size
, data
, usage
);
6479 D(bug("...exit\n"));
6483 void glBufferSubDataARB (GLenum target
, GLintptrARB offset
, GLsizeiptrARB size
, const GLvoid
* data
)
6486 D(bug("[HostGL] TASK: 0x%x, glBufferSubDataARB", FindTask(NULL
)));
6487 GLCALL(glBufferSubDataARB
, target
, offset
, size
, data
);
6488 D(bug("...exit\n"));
6492 void glGetBufferSubDataARB (GLenum target
, GLintptrARB offset
, GLsizeiptrARB size
, GLvoid
* data
)
6495 D(bug("[HostGL] TASK: 0x%x, glGetBufferSubDataARB", FindTask(NULL
)));
6496 GLCALL(glGetBufferSubDataARB
, target
, offset
, size
, data
);
6497 D(bug("...exit\n"));
6501 GLvoid
* glMapBufferARB (GLenum target
, GLenum access
)
6505 D(bug("[HostGL] TASK: 0x%x, glMapBufferARB", FindTask(NULL
)));
6506 _ret
= GLCALL(glMapBufferARB
, target
, access
);
6507 D(bug("...exit\n"));
6512 GLboolean
glUnmapBufferARB (GLenum target
)
6516 D(bug("[HostGL] TASK: 0x%x, glUnmapBufferARB", FindTask(NULL
)));
6517 _ret
= GLCALL(glUnmapBufferARB
, target
);
6518 D(bug("...exit\n"));
6523 void glGetBufferParameterivARB (GLenum target
, GLenum pname
, GLint
* params
)
6526 D(bug("[HostGL] TASK: 0x%x, glGetBufferParameterivARB", FindTask(NULL
)));
6527 GLCALL(glGetBufferParameterivARB
, target
, pname
, params
);
6528 D(bug("...exit\n"));
6532 void glGetBufferPointervARB (GLenum target
, GLenum pname
, GLvoid
* * params
)
6535 D(bug("[HostGL] TASK: 0x%x, glGetBufferPointervARB", FindTask(NULL
)));
6536 GLCALL(glGetBufferPointervARB
, target
, pname
, params
);
6537 D(bug("...exit\n"));
6541 void glGenQueriesARB (GLsizei n
, GLuint
* ids
)
6544 D(bug("[HostGL] TASK: 0x%x, glGenQueriesARB", FindTask(NULL
)));
6545 GLCALL(glGenQueriesARB
, n
, ids
);
6546 D(bug("...exit\n"));
6550 void glDeleteQueriesARB (GLsizei n
, const GLuint
* ids
)
6553 D(bug("[HostGL] TASK: 0x%x, glDeleteQueriesARB", FindTask(NULL
)));
6554 GLCALL(glDeleteQueriesARB
, n
, ids
);
6555 D(bug("...exit\n"));
6559 GLboolean
glIsQueryARB (GLuint id
)
6563 D(bug("[HostGL] TASK: 0x%x, glIsQueryARB", FindTask(NULL
)));
6564 _ret
= GLCALL(glIsQueryARB
, id
);
6565 D(bug("...exit\n"));
6570 void glBeginQueryARB (GLenum target
, GLuint id
)
6573 D(bug("[HostGL] TASK: 0x%x, glBeginQueryARB", FindTask(NULL
)));
6574 GLCALL(glBeginQueryARB
, target
, id
);
6575 D(bug("...exit\n"));
6579 void glEndQueryARB (GLenum target
)
6582 D(bug("[HostGL] TASK: 0x%x, glEndQueryARB", FindTask(NULL
)));
6583 GLCALL(glEndQueryARB
, target
);
6584 D(bug("...exit\n"));
6588 void glGetQueryivARB (GLenum target
, GLenum pname
, GLint
* params
)
6591 D(bug("[HostGL] TASK: 0x%x, glGetQueryivARB", FindTask(NULL
)));
6592 GLCALL(glGetQueryivARB
, target
, pname
, params
);
6593 D(bug("...exit\n"));
6597 void glGetQueryObjectivARB (GLuint id
, GLenum pname
, GLint
* params
)
6600 D(bug("[HostGL] TASK: 0x%x, glGetQueryObjectivARB", FindTask(NULL
)));
6601 GLCALL(glGetQueryObjectivARB
, id
, pname
, params
);
6602 D(bug("...exit\n"));
6606 void glGetQueryObjectuivARB (GLuint id
, GLenum pname
, GLuint
* params
)
6609 D(bug("[HostGL] TASK: 0x%x, glGetQueryObjectuivARB", FindTask(NULL
)));
6610 GLCALL(glGetQueryObjectuivARB
, id
, pname
, params
);
6611 D(bug("...exit\n"));
6615 void glDeleteObjectARB (GLhandleARB obj
)
6618 D(bug("[HostGL] TASK: 0x%x, glDeleteObjectARB", FindTask(NULL
)));
6619 GLCALL(glDeleteObjectARB
, obj
);
6620 D(bug("...exit\n"));
6624 GLhandleARB
glGetHandleARB (GLenum pname
)
6628 D(bug("[HostGL] TASK: 0x%x, glGetHandleARB", FindTask(NULL
)));
6629 _ret
= GLCALL(glGetHandleARB
, pname
);
6630 D(bug("...exit\n"));
6635 void glDetachObjectARB (GLhandleARB containerObj
, GLhandleARB attachedObj
)
6638 D(bug("[HostGL] TASK: 0x%x, glDetachObjectARB", FindTask(NULL
)));
6639 GLCALL(glDetachObjectARB
, containerObj
, attachedObj
);
6640 D(bug("...exit\n"));
6644 GLhandleARB
glCreateShaderObjectARB (GLenum shaderType
)
6648 D(bug("[HostGL] TASK: 0x%x, glCreateShaderObjectARB", FindTask(NULL
)));
6649 _ret
= GLCALL(glCreateShaderObjectARB
, shaderType
);
6650 D(bug("...exit\n"));
6655 void glShaderSourceARB (GLhandleARB shaderObj
, GLsizei count
, const GLcharARB
* * string
, const GLint
* length
)
6658 D(bug("[HostGL] TASK: 0x%x, glShaderSourceARB", FindTask(NULL
)));
6659 GLCALL(glShaderSourceARB
, shaderObj
, count
, string
, length
);
6660 D(bug("...exit\n"));
6664 void glCompileShaderARB (GLhandleARB shaderObj
)
6667 D(bug("[HostGL] TASK: 0x%x, glCompileShaderARB", FindTask(NULL
)));
6668 GLCALL(glCompileShaderARB
, shaderObj
);
6669 D(bug("...exit\n"));
6673 GLhandleARB
glCreateProgramObjectARB ()
6677 D(bug("[HostGL] TASK: 0x%x, glCreateProgramObjectARB", FindTask(NULL
)));
6678 _ret
= GLCALL(glCreateProgramObjectARB
);
6679 D(bug("...exit\n"));
6684 void glAttachObjectARB (GLhandleARB containerObj
, GLhandleARB obj
)
6687 D(bug("[HostGL] TASK: 0x%x, glAttachObjectARB", FindTask(NULL
)));
6688 GLCALL(glAttachObjectARB
, containerObj
, obj
);
6689 D(bug("...exit\n"));
6693 void glLinkProgramARB (GLhandleARB programObj
)
6696 D(bug("[HostGL] TASK: 0x%x, glLinkProgramARB", FindTask(NULL
)));
6697 GLCALL(glLinkProgramARB
, programObj
);
6698 D(bug("...exit\n"));
6702 void glUseProgramObjectARB (GLhandleARB programObj
)
6705 D(bug("[HostGL] TASK: 0x%x, glUseProgramObjectARB", FindTask(NULL
)));
6706 GLCALL(glUseProgramObjectARB
, programObj
);
6707 D(bug("...exit\n"));
6711 void glValidateProgramARB (GLhandleARB programObj
)
6714 D(bug("[HostGL] TASK: 0x%x, glValidateProgramARB", FindTask(NULL
)));
6715 GLCALL(glValidateProgramARB
, programObj
);
6716 D(bug("...exit\n"));
6720 void glUniform1fARB (GLint location
, GLfloat v0
)
6723 D(bug("[HostGL] TASK: 0x%x, glUniform1fARB", FindTask(NULL
)));
6724 GLCALL(glUniform1fARB
, location
, v0
);
6725 D(bug("...exit\n"));
6729 void glUniform2fARB (GLint location
, GLfloat v0
, GLfloat v1
)
6732 D(bug("[HostGL] TASK: 0x%x, glUniform2fARB", FindTask(NULL
)));
6733 GLCALL(glUniform2fARB
, location
, v0
, v1
);
6734 D(bug("...exit\n"));
6738 void glUniform3fARB (GLint location
, GLfloat v0
, GLfloat v1
, GLfloat v2
)
6741 D(bug("[HostGL] TASK: 0x%x, glUniform3fARB", FindTask(NULL
)));
6742 GLCALL(glUniform3fARB
, location
, v0
, v1
, v2
);
6743 D(bug("...exit\n"));
6747 void glUniform4fARB (GLint location
, GLfloat v0
, GLfloat v1
, GLfloat v2
, GLfloat v3
)
6750 D(bug("[HostGL] TASK: 0x%x, glUniform4fARB", FindTask(NULL
)));
6751 GLCALL(glUniform4fARB
, location
, v0
, v1
, v2
, v3
);
6752 D(bug("...exit\n"));
6756 void glUniform1iARB (GLint location
, GLint v0
)
6759 D(bug("[HostGL] TASK: 0x%x, glUniform1iARB", FindTask(NULL
)));
6760 GLCALL(glUniform1iARB
, location
, v0
);
6761 D(bug("...exit\n"));
6765 void glUniform2iARB (GLint location
, GLint v0
, GLint v1
)
6768 D(bug("[HostGL] TASK: 0x%x, glUniform2iARB", FindTask(NULL
)));
6769 GLCALL(glUniform2iARB
, location
, v0
, v1
);
6770 D(bug("...exit\n"));
6774 void glUniform3iARB (GLint location
, GLint v0
, GLint v1
, GLint v2
)
6777 D(bug("[HostGL] TASK: 0x%x, glUniform3iARB", FindTask(NULL
)));
6778 GLCALL(glUniform3iARB
, location
, v0
, v1
, v2
);
6779 D(bug("...exit\n"));
6783 void glUniform4iARB (GLint location
, GLint v0
, GLint v1
, GLint v2
, GLint v3
)
6786 D(bug("[HostGL] TASK: 0x%x, glUniform4iARB", FindTask(NULL
)));
6787 GLCALL(glUniform4iARB
, location
, v0
, v1
, v2
, v3
);
6788 D(bug("...exit\n"));
6792 void glUniform1fvARB (GLint location
, GLsizei count
, const GLfloat
* value
)
6795 D(bug("[HostGL] TASK: 0x%x, glUniform1fvARB", FindTask(NULL
)));
6796 GLCALL(glUniform1fvARB
, location
, count
, value
);
6797 D(bug("...exit\n"));
6801 void glUniform2fvARB (GLint location
, GLsizei count
, const GLfloat
* value
)
6804 D(bug("[HostGL] TASK: 0x%x, glUniform2fvARB", FindTask(NULL
)));
6805 GLCALL(glUniform2fvARB
, location
, count
, value
);
6806 D(bug("...exit\n"));
6810 void glUniform3fvARB (GLint location
, GLsizei count
, const GLfloat
* value
)
6813 D(bug("[HostGL] TASK: 0x%x, glUniform3fvARB", FindTask(NULL
)));
6814 GLCALL(glUniform3fvARB
, location
, count
, value
);
6815 D(bug("...exit\n"));
6819 void glUniform4fvARB (GLint location
, GLsizei count
, const GLfloat
* value
)
6822 D(bug("[HostGL] TASK: 0x%x, glUniform4fvARB", FindTask(NULL
)));
6823 GLCALL(glUniform4fvARB
, location
, count
, value
);
6824 D(bug("...exit\n"));
6828 void glUniform1ivARB (GLint location
, GLsizei count
, const GLint
* value
)
6831 D(bug("[HostGL] TASK: 0x%x, glUniform1ivARB", FindTask(NULL
)));
6832 GLCALL(glUniform1ivARB
, location
, count
, value
);
6833 D(bug("...exit\n"));
6837 void glUniform2ivARB (GLint location
, GLsizei count
, const GLint
* value
)
6840 D(bug("[HostGL] TASK: 0x%x, glUniform2ivARB", FindTask(NULL
)));
6841 GLCALL(glUniform2ivARB
, location
, count
, value
);
6842 D(bug("...exit\n"));
6846 void glUniform3ivARB (GLint location
, GLsizei count
, const GLint
* value
)
6849 D(bug("[HostGL] TASK: 0x%x, glUniform3ivARB", FindTask(NULL
)));
6850 GLCALL(glUniform3ivARB
, location
, count
, value
);
6851 D(bug("...exit\n"));
6855 void glUniform4ivARB (GLint location
, GLsizei count
, const GLint
* value
)
6858 D(bug("[HostGL] TASK: 0x%x, glUniform4ivARB", FindTask(NULL
)));
6859 GLCALL(glUniform4ivARB
, location
, count
, value
);
6860 D(bug("...exit\n"));
6864 void glUniformMatrix2fvARB (GLint location
, GLsizei count
, GLboolean transpose
, const GLfloat
* value
)
6867 D(bug("[HostGL] TASK: 0x%x, glUniformMatrix2fvARB", FindTask(NULL
)));
6868 GLCALL(glUniformMatrix2fvARB
, location
, count
, transpose
, value
);
6869 D(bug("...exit\n"));
6873 void glUniformMatrix3fvARB (GLint location
, GLsizei count
, GLboolean transpose
, const GLfloat
* value
)
6876 D(bug("[HostGL] TASK: 0x%x, glUniformMatrix3fvARB", FindTask(NULL
)));
6877 GLCALL(glUniformMatrix3fvARB
, location
, count
, transpose
, value
);
6878 D(bug("...exit\n"));
6882 void glUniformMatrix4fvARB (GLint location
, GLsizei count
, GLboolean transpose
, const GLfloat
* value
)
6885 D(bug("[HostGL] TASK: 0x%x, glUniformMatrix4fvARB", FindTask(NULL
)));
6886 GLCALL(glUniformMatrix4fvARB
, location
, count
, transpose
, value
);
6887 D(bug("...exit\n"));
6891 void glGetObjectParameterfvARB (GLhandleARB obj
, GLenum pname
, GLfloat
* params
)
6894 D(bug("[HostGL] TASK: 0x%x, glGetObjectParameterfvARB", FindTask(NULL
)));
6895 GLCALL(glGetObjectParameterfvARB
, obj
, pname
, params
);
6896 D(bug("...exit\n"));
6900 void glGetObjectParameterivARB (GLhandleARB obj
, GLenum pname
, GLint
* params
)
6903 D(bug("[HostGL] TASK: 0x%x, glGetObjectParameterivARB", FindTask(NULL
)));
6904 GLCALL(glGetObjectParameterivARB
, obj
, pname
, params
);
6905 D(bug("...exit\n"));
6909 void glGetInfoLogARB (GLhandleARB obj
, GLsizei maxLength
, GLsizei
* length
, GLcharARB
* infoLog
)
6912 D(bug("[HostGL] TASK: 0x%x, glGetInfoLogARB", FindTask(NULL
)));
6913 GLCALL(glGetInfoLogARB
, obj
, maxLength
, length
, infoLog
);
6914 D(bug("...exit\n"));
6918 void glGetAttachedObjectsARB (GLhandleARB containerObj
, GLsizei maxCount
, GLsizei
* count
, GLhandleARB
* obj
)
6921 D(bug("[HostGL] TASK: 0x%x, glGetAttachedObjectsARB", FindTask(NULL
)));
6922 GLCALL(glGetAttachedObjectsARB
, containerObj
, maxCount
, count
, obj
);
6923 D(bug("...exit\n"));
6927 GLint
glGetUniformLocationARB (GLhandleARB programObj
, const GLcharARB
* name
)
6931 D(bug("[HostGL] TASK: 0x%x, glGetUniformLocationARB", FindTask(NULL
)));
6932 _ret
= GLCALL(glGetUniformLocationARB
, programObj
, name
);
6933 D(bug("...exit\n"));
6938 void glGetActiveUniformARB (GLhandleARB programObj
, GLuint index
, GLsizei maxLength
, GLsizei
* length
, GLint
* size
, GLenum
* type
, GLcharARB
* name
)
6941 D(bug("[HostGL] TASK: 0x%x, glGetActiveUniformARB", FindTask(NULL
)));
6942 GLCALL(glGetActiveUniformARB
, programObj
, index
, maxLength
, length
, size
, type
, name
);
6943 D(bug("...exit\n"));
6947 void glGetUniformfvARB (GLhandleARB programObj
, GLint location
, GLfloat
* params
)
6950 D(bug("[HostGL] TASK: 0x%x, glGetUniformfvARB", FindTask(NULL
)));
6951 GLCALL(glGetUniformfvARB
, programObj
, location
, params
);
6952 D(bug("...exit\n"));
6956 void glGetUniformivARB (GLhandleARB programObj
, GLint location
, GLint
* params
)
6959 D(bug("[HostGL] TASK: 0x%x, glGetUniformivARB", FindTask(NULL
)));
6960 GLCALL(glGetUniformivARB
, programObj
, location
, params
);
6961 D(bug("...exit\n"));
6965 void glGetShaderSourceARB (GLhandleARB obj
, GLsizei maxLength
, GLsizei
* length
, GLcharARB
* source
)
6968 D(bug("[HostGL] TASK: 0x%x, glGetShaderSourceARB", FindTask(NULL
)));
6969 GLCALL(glGetShaderSourceARB
, obj
, maxLength
, length
, source
);
6970 D(bug("...exit\n"));
6974 void glBindAttribLocationARB (GLhandleARB programObj
, GLuint index
, const GLcharARB
* name
)
6977 D(bug("[HostGL] TASK: 0x%x, glBindAttribLocationARB", FindTask(NULL
)));
6978 GLCALL(glBindAttribLocationARB
, programObj
, index
, name
);
6979 D(bug("...exit\n"));
6983 void glGetActiveAttribARB (GLhandleARB programObj
, GLuint index
, GLsizei maxLength
, GLsizei
* length
, GLint
* size
, GLenum
* type
, GLcharARB
* name
)
6986 D(bug("[HostGL] TASK: 0x%x, glGetActiveAttribARB", FindTask(NULL
)));
6987 GLCALL(glGetActiveAttribARB
, programObj
, index
, maxLength
, length
, size
, type
, name
);
6988 D(bug("...exit\n"));
6992 GLint
glGetAttribLocationARB (GLhandleARB programObj
, const GLcharARB
* name
)
6996 D(bug("[HostGL] TASK: 0x%x, glGetAttribLocationARB", FindTask(NULL
)));
6997 _ret
= GLCALL(glGetAttribLocationARB
, programObj
, name
);
6998 D(bug("...exit\n"));
7003 void glDrawBuffersARB (GLsizei n
, const GLenum
* bufs
)
7006 D(bug("[HostGL] TASK: 0x%x, glDrawBuffersARB", FindTask(NULL
)));
7007 GLCALL(glDrawBuffersARB
, n
, bufs
);
7008 D(bug("...exit\n"));
7012 GLboolean
glIsRenderbuffer (GLuint renderbuffer
)
7016 D(bug("[HostGL] TASK: 0x%x, glIsRenderbuffer", FindTask(NULL
)));
7017 _ret
= GLCALL(glIsRenderbuffer
, renderbuffer
);
7018 D(bug("...exit\n"));
7023 void glBindRenderbuffer (GLenum target
, GLuint renderbuffer
)
7026 D(bug("[HostGL] TASK: 0x%x, glBindRenderbuffer", FindTask(NULL
)));
7027 GLCALL(glBindRenderbuffer
, target
, renderbuffer
);
7028 D(bug("...exit\n"));
7032 void glDeleteRenderbuffers (GLsizei n
, const GLuint
* renderbuffers
)
7035 D(bug("[HostGL] TASK: 0x%x, glDeleteRenderbuffers", FindTask(NULL
)));
7036 GLCALL(glDeleteRenderbuffers
, n
, renderbuffers
);
7037 D(bug("...exit\n"));
7041 void glGenRenderbuffers (GLsizei n
, GLuint
* renderbuffers
)
7044 D(bug("[HostGL] TASK: 0x%x, glGenRenderbuffers", FindTask(NULL
)));
7045 GLCALL(glGenRenderbuffers
, n
, renderbuffers
);
7046 D(bug("...exit\n"));
7050 void glRenderbufferStorage (GLenum target
, GLenum internalformat
, GLsizei width
, GLsizei height
)
7053 D(bug("[HostGL] TASK: 0x%x, glRenderbufferStorage", FindTask(NULL
)));
7054 GLCALL(glRenderbufferStorage
, target
, internalformat
, width
, height
);
7055 D(bug("...exit\n"));
7059 void glGetRenderbufferParameteriv (GLenum target
, GLenum pname
, GLint
* params
)
7062 D(bug("[HostGL] TASK: 0x%x, glGetRenderbufferParameteriv", FindTask(NULL
)));
7063 GLCALL(glGetRenderbufferParameteriv
, target
, pname
, params
);
7064 D(bug("...exit\n"));
7068 GLboolean
glIsFramebuffer (GLuint framebuffer
)
7072 D(bug("[HostGL] TASK: 0x%x, glIsFramebuffer", FindTask(NULL
)));
7073 _ret
= GLCALL(glIsFramebuffer
, framebuffer
);
7074 D(bug("...exit\n"));
7079 void glBindFramebuffer (GLenum target
, GLuint framebuffer
)
7082 D(bug("[HostGL] TASK: 0x%x, glBindFramebuffer", FindTask(NULL
)));
7083 GLCALL(glBindFramebuffer
, target
, framebuffer
);
7084 D(bug("...exit\n"));
7088 void glDeleteFramebuffers (GLsizei n
, const GLuint
* framebuffers
)
7091 D(bug("[HostGL] TASK: 0x%x, glDeleteFramebuffers", FindTask(NULL
)));
7092 GLCALL(glDeleteFramebuffers
, n
, framebuffers
);
7093 D(bug("...exit\n"));
7097 void glGenFramebuffers (GLsizei n
, GLuint
* framebuffers
)
7100 D(bug("[HostGL] TASK: 0x%x, glGenFramebuffers", FindTask(NULL
)));
7101 GLCALL(glGenFramebuffers
, n
, framebuffers
);
7102 D(bug("...exit\n"));
7106 GLenum
glCheckFramebufferStatus (GLenum target
)
7110 D(bug("[HostGL] TASK: 0x%x, glCheckFramebufferStatus", FindTask(NULL
)));
7111 _ret
= GLCALL(glCheckFramebufferStatus
, target
);
7112 D(bug("...exit\n"));
7117 void glFramebufferTexture1D (GLenum target
, GLenum attachment
, GLenum textarget
, GLuint texture
, GLint level
)
7120 D(bug("[HostGL] TASK: 0x%x, glFramebufferTexture1D", FindTask(NULL
)));
7121 GLCALL(glFramebufferTexture1D
, target
, attachment
, textarget
, texture
, level
);
7122 D(bug("...exit\n"));
7126 void glFramebufferTexture2D (GLenum target
, GLenum attachment
, GLenum textarget
, GLuint texture
, GLint level
)
7129 D(bug("[HostGL] TASK: 0x%x, glFramebufferTexture2D", FindTask(NULL
)));
7130 GLCALL(glFramebufferTexture2D
, target
, attachment
, textarget
, texture
, level
);
7131 D(bug("...exit\n"));
7135 void glFramebufferTexture3D (GLenum target
, GLenum attachment
, GLenum textarget
, GLuint texture
, GLint level
, GLint zoffset
)
7138 D(bug("[HostGL] TASK: 0x%x, glFramebufferTexture3D", FindTask(NULL
)));
7139 GLCALL(glFramebufferTexture3D
, target
, attachment
, textarget
, texture
, level
, zoffset
);
7140 D(bug("...exit\n"));
7144 void glFramebufferRenderbuffer (GLenum target
, GLenum attachment
, GLenum renderbuffertarget
, GLuint renderbuffer
)
7147 D(bug("[HostGL] TASK: 0x%x, glFramebufferRenderbuffer", FindTask(NULL
)));
7148 GLCALL(glFramebufferRenderbuffer
, target
, attachment
, renderbuffertarget
, renderbuffer
);
7149 D(bug("...exit\n"));
7153 void glGetFramebufferAttachmentParameteriv (GLenum target
, GLenum attachment
, GLenum pname
, GLint
* params
)
7156 D(bug("[HostGL] TASK: 0x%x, glGetFramebufferAttachmentParameteriv", FindTask(NULL
)));
7157 GLCALL(glGetFramebufferAttachmentParameteriv
, target
, attachment
, pname
, params
);
7158 D(bug("...exit\n"));
7162 void glGenerateMipmap (GLenum target
)
7165 D(bug("[HostGL] TASK: 0x%x, glGenerateMipmap", FindTask(NULL
)));
7166 GLCALL(glGenerateMipmap
, target
);
7167 D(bug("...exit\n"));
7171 void glBlitFramebuffer (GLint srcX0
, GLint srcY0
, GLint srcX1
, GLint srcY1
, GLint dstX0
, GLint dstY0
, GLint dstX1
, GLint dstY1
, GLbitfield mask
, GLenum filter
)
7174 D(bug("[HostGL] TASK: 0x%x, glBlitFramebuffer", FindTask(NULL
)));
7175 GLCALL(glBlitFramebuffer
, srcX0
, srcY0
, srcX1
, srcY1
, dstX0
, dstY0
, dstX1
, dstY1
, mask
, filter
);
7176 D(bug("...exit\n"));
7180 void glRenderbufferStorageMultisample (GLenum target
, GLsizei samples
, GLenum internalformat
, GLsizei width
, GLsizei height
)
7183 D(bug("[HostGL] TASK: 0x%x, glRenderbufferStorageMultisample", FindTask(NULL
)));
7184 GLCALL(glRenderbufferStorageMultisample
, target
, samples
, internalformat
, width
, height
);
7185 D(bug("...exit\n"));
7189 void glFramebufferTextureLayer (GLenum target
, GLenum attachment
, GLuint texture
, GLint level
, GLint layer
)
7192 D(bug("[HostGL] TASK: 0x%x, glFramebufferTextureLayer", FindTask(NULL
)));
7193 GLCALL(glFramebufferTextureLayer
, target
, attachment
, texture
, level
, layer
);
7194 D(bug("...exit\n"));
7198 void glBlendColorEXT (GLclampf red
, GLclampf green
, GLclampf blue
, GLclampf alpha
)
7201 D(bug("[HostGL] TASK: 0x%x, glBlendColorEXT", FindTask(NULL
)));
7202 GLCALL(glBlendColorEXT
, red
, green
, blue
, alpha
);
7203 D(bug("...exit\n"));
7207 void glPolygonOffsetEXT (GLfloat factor
, GLfloat bias
)
7210 D(bug("[HostGL] TASK: 0x%x, glPolygonOffsetEXT", FindTask(NULL
)));
7211 GLCALL(glPolygonOffsetEXT
, factor
, bias
);
7212 D(bug("...exit\n"));
7216 void glTexImage3DEXT (GLenum target
, GLint level
, GLenum internalformat
, GLsizei width
, GLsizei height
, GLsizei depth
, GLint border
, GLenum format
, GLenum type
, const GLvoid
* pixels
)
7219 D(bug("[HostGL] TASK: 0x%x, glTexImage3DEXT", FindTask(NULL
)));
7220 GLCALL(glTexImage3DEXT
, target
, level
, internalformat
, width
, height
, depth
, border
, format
, type
, pixels
);
7221 D(bug("...exit\n"));
7225 void glTexSubImage3DEXT (GLenum target
, GLint level
, GLint xoffset
, GLint yoffset
, GLint zoffset
, GLsizei width
, GLsizei height
, GLsizei depth
, GLenum format
, GLenum type
, const GLvoid
* pixels
)
7228 D(bug("[HostGL] TASK: 0x%x, glTexSubImage3DEXT", FindTask(NULL
)));
7229 GLCALL(glTexSubImage3DEXT
, target
, level
, xoffset
, yoffset
, zoffset
, width
, height
, depth
, format
, type
, pixels
);
7230 D(bug("...exit\n"));
7234 void glTexSubImage1DEXT (GLenum target
, GLint level
, GLint xoffset
, GLsizei width
, GLenum format
, GLenum type
, const GLvoid
* pixels
)
7237 D(bug("[HostGL] TASK: 0x%x, glTexSubImage1DEXT", FindTask(NULL
)));
7238 GLCALL(glTexSubImage1DEXT
, target
, level
, xoffset
, width
, format
, type
, pixels
);
7239 D(bug("...exit\n"));
7243 void glTexSubImage2DEXT (GLenum target
, GLint level
, GLint xoffset
, GLint yoffset
, GLsizei width
, GLsizei height
, GLenum format
, GLenum type
, const GLvoid
* pixels
)
7246 D(bug("[HostGL] TASK: 0x%x, glTexSubImage2DEXT", FindTask(NULL
)));
7247 GLCALL(glTexSubImage2DEXT
, target
, level
, xoffset
, yoffset
, width
, height
, format
, type
, pixels
);
7248 D(bug("...exit\n"));
7252 void glCopyTexImage1DEXT (GLenum target
, GLint level
, GLenum internalformat
, GLint x
, GLint y
, GLsizei width
, GLint border
)
7255 D(bug("[HostGL] TASK: 0x%x, glCopyTexImage1DEXT", FindTask(NULL
)));
7256 GLCALL(glCopyTexImage1DEXT
, target
, level
, internalformat
, x
, y
, width
, border
);
7257 D(bug("...exit\n"));
7261 void glCopyTexImage2DEXT (GLenum target
, GLint level
, GLenum internalformat
, GLint x
, GLint y
, GLsizei width
, GLsizei height
, GLint border
)
7264 D(bug("[HostGL] TASK: 0x%x, glCopyTexImage2DEXT", FindTask(NULL
)));
7265 GLCALL(glCopyTexImage2DEXT
, target
, level
, internalformat
, x
, y
, width
, height
, border
);
7266 D(bug("...exit\n"));
7270 void glCopyTexSubImage1DEXT (GLenum target
, GLint level
, GLint xoffset
, GLint x
, GLint y
, GLsizei width
)
7273 D(bug("[HostGL] TASK: 0x%x, glCopyTexSubImage1DEXT", FindTask(NULL
)));
7274 GLCALL(glCopyTexSubImage1DEXT
, target
, level
, xoffset
, x
, y
, width
);
7275 D(bug("...exit\n"));
7279 void glCopyTexSubImage2DEXT (GLenum target
, GLint level
, GLint xoffset
, GLint yoffset
, GLint x
, GLint y
, GLsizei width
, GLsizei height
)
7282 D(bug("[HostGL] TASK: 0x%x, glCopyTexSubImage2DEXT", FindTask(NULL
)));
7283 GLCALL(glCopyTexSubImage2DEXT
, target
, level
, xoffset
, yoffset
, x
, y
, width
, height
);
7284 D(bug("...exit\n"));
7288 void glCopyTexSubImage3DEXT (GLenum target
, GLint level
, GLint xoffset
, GLint yoffset
, GLint zoffset
, GLint x
, GLint y
, GLsizei width
, GLsizei height
)
7291 D(bug("[HostGL] TASK: 0x%x, glCopyTexSubImage3DEXT", FindTask(NULL
)));
7292 GLCALL(glCopyTexSubImage3DEXT
, target
, level
, xoffset
, yoffset
, zoffset
, x
, y
, width
, height
);
7293 D(bug("...exit\n"));
7297 GLboolean
glAreTexturesResidentEXT (GLsizei n
, const GLuint
* textures
, GLboolean
* residences
)
7301 D(bug("[HostGL] TASK: 0x%x, glAreTexturesResidentEXT", FindTask(NULL
)));
7302 _ret
= GLCALL(glAreTexturesResidentEXT
, n
, textures
, residences
);
7303 D(bug("...exit\n"));
7308 void glBindTextureEXT (GLenum target
, GLuint texture
)
7311 D(bug("[HostGL] TASK: 0x%x, glBindTextureEXT", FindTask(NULL
)));
7312 GLCALL(glBindTextureEXT
, target
, texture
);
7313 D(bug("...exit\n"));
7317 void glDeleteTexturesEXT (GLsizei n
, const GLuint
* textures
)
7320 D(bug("[HostGL] TASK: 0x%x, glDeleteTexturesEXT", FindTask(NULL
)));
7321 GLCALL(glDeleteTexturesEXT
, n
, textures
);
7322 D(bug("...exit\n"));
7326 void glGenTexturesEXT (GLsizei n
, GLuint
* textures
)
7329 D(bug("[HostGL] TASK: 0x%x, glGenTexturesEXT", FindTask(NULL
)));
7330 GLCALL(glGenTexturesEXT
, n
, textures
);
7331 D(bug("...exit\n"));
7335 GLboolean
glIsTextureEXT (GLuint texture
)
7339 D(bug("[HostGL] TASK: 0x%x, glIsTextureEXT", FindTask(NULL
)));
7340 _ret
= GLCALL(glIsTextureEXT
, texture
);
7341 D(bug("...exit\n"));
7346 void glPrioritizeTexturesEXT (GLsizei n
, const GLuint
* textures
, const GLclampf
* priorities
)
7349 D(bug("[HostGL] TASK: 0x%x, glPrioritizeTexturesEXT", FindTask(NULL
)));
7350 GLCALL(glPrioritizeTexturesEXT
, n
, textures
, priorities
);
7351 D(bug("...exit\n"));
7355 void glArrayElementEXT (GLint i
)
7358 D(bug("[HostGL] TASK: 0x%x, glArrayElementEXT", FindTask(NULL
)));
7359 GLCALL(glArrayElementEXT
, i
);
7360 D(bug("...exit\n"));
7364 void glColorPointerEXT (GLint size
, GLenum type
, GLsizei stride
, GLsizei count
, const GLvoid
* pointer
)
7367 D(bug("[HostGL] TASK: 0x%x, glColorPointerEXT", FindTask(NULL
)));
7368 GLCALL(glColorPointerEXT
, size
, type
, stride
, count
, pointer
);
7369 D(bug("...exit\n"));
7373 void glDrawArraysEXT (GLenum mode
, GLint first
, GLsizei count
)
7376 D(bug("[HostGL] TASK: 0x%x, glDrawArraysEXT", FindTask(NULL
)));
7377 GLCALL(glDrawArraysEXT
, mode
, first
, count
);
7378 D(bug("...exit\n"));
7382 void glEdgeFlagPointerEXT (GLsizei stride
, GLsizei count
, const GLboolean
* pointer
)
7385 D(bug("[HostGL] TASK: 0x%x, glEdgeFlagPointerEXT", FindTask(NULL
)));
7386 GLCALL(glEdgeFlagPointerEXT
, stride
, count
, pointer
);
7387 D(bug("...exit\n"));
7391 void glGetPointervEXT (GLenum pname
, GLvoid
* * params
)
7394 D(bug("[HostGL] TASK: 0x%x, glGetPointervEXT", FindTask(NULL
)));
7395 GLCALL(glGetPointervEXT
, pname
, params
);
7396 D(bug("...exit\n"));
7400 void glIndexPointerEXT (GLenum type
, GLsizei stride
, GLsizei count
, const GLvoid
* pointer
)
7403 D(bug("[HostGL] TASK: 0x%x, glIndexPointerEXT", FindTask(NULL
)));
7404 GLCALL(glIndexPointerEXT
, type
, stride
, count
, pointer
);
7405 D(bug("...exit\n"));
7409 void glNormalPointerEXT (GLenum type
, GLsizei stride
, GLsizei count
, const GLvoid
* pointer
)
7412 D(bug("[HostGL] TASK: 0x%x, glNormalPointerEXT", FindTask(NULL
)));
7413 GLCALL(glNormalPointerEXT
, type
, stride
, count
, pointer
);
7414 D(bug("...exit\n"));
7418 void glTexCoordPointerEXT (GLint size
, GLenum type
, GLsizei stride
, GLsizei count
, const GLvoid
* pointer
)
7421 D(bug("[HostGL] TASK: 0x%x, glTexCoordPointerEXT", FindTask(NULL
)));
7422 GLCALL(glTexCoordPointerEXT
, size
, type
, stride
, count
, pointer
);
7423 D(bug("...exit\n"));
7427 void glVertexPointerEXT (GLint size
, GLenum type
, GLsizei stride
, GLsizei count
, const GLvoid
* pointer
)
7430 D(bug("[HostGL] TASK: 0x%x, glVertexPointerEXT", FindTask(NULL
)));
7431 GLCALL(glVertexPointerEXT
, size
, type
, stride
, count
, pointer
);
7432 D(bug("...exit\n"));
7436 void glBlendEquationEXT (GLenum mode
)
7439 D(bug("[HostGL] TASK: 0x%x, glBlendEquationEXT", FindTask(NULL
)));
7440 GLCALL(glBlendEquationEXT
, mode
);
7441 D(bug("...exit\n"));
7445 void glPointParameterfEXT (GLenum pname
, GLfloat param
)
7448 D(bug("[HostGL] TASK: 0x%x, glPointParameterfEXT", FindTask(NULL
)));
7449 GLCALL(glPointParameterfEXT
, pname
, param
);
7450 D(bug("...exit\n"));
7454 void glPointParameterfvEXT (GLenum pname
, const GLfloat
* params
)
7457 D(bug("[HostGL] TASK: 0x%x, glPointParameterfvEXT", FindTask(NULL
)));
7458 GLCALL(glPointParameterfvEXT
, pname
, params
);
7459 D(bug("...exit\n"));
7463 void glColorTableEXT (GLenum target
, GLenum internalFormat
, GLsizei width
, GLenum format
, GLenum type
, const GLvoid
* table
)
7466 D(bug("[HostGL] TASK: 0x%x, glColorTableEXT", FindTask(NULL
)));
7467 GLCALL(glColorTableEXT
, target
, internalFormat
, width
, format
, type
, table
);
7468 D(bug("...exit\n"));
7472 void glGetColorTableEXT (GLenum target
, GLenum format
, GLenum type
, GLvoid
* data
)
7475 D(bug("[HostGL] TASK: 0x%x, glGetColorTableEXT", FindTask(NULL
)));
7476 GLCALL(glGetColorTableEXT
, target
, format
, type
, data
);
7477 D(bug("...exit\n"));
7481 void glGetColorTableParameterivEXT (GLenum target
, GLenum pname
, GLint
* params
)
7484 D(bug("[HostGL] TASK: 0x%x, glGetColorTableParameterivEXT", FindTask(NULL
)));
7485 GLCALL(glGetColorTableParameterivEXT
, target
, pname
, params
);
7486 D(bug("...exit\n"));
7490 void glGetColorTableParameterfvEXT (GLenum target
, GLenum pname
, GLfloat
* params
)
7493 D(bug("[HostGL] TASK: 0x%x, glGetColorTableParameterfvEXT", FindTask(NULL
)));
7494 GLCALL(glGetColorTableParameterfvEXT
, target
, pname
, params
);
7495 D(bug("...exit\n"));
7499 void glLockArraysEXT (GLint first
, GLsizei count
)
7502 D(bug("[HostGL] TASK: 0x%x, glLockArraysEXT", FindTask(NULL
)));
7503 GLCALL(glLockArraysEXT
, first
, count
);
7504 D(bug("...exit\n"));
7508 void glUnlockArraysEXT ()
7511 D(bug("[HostGL] TASK: 0x%x, glUnlockArraysEXT", FindTask(NULL
)));
7512 GLCALL(glUnlockArraysEXT
);
7513 D(bug("...exit\n"));
7517 void glDrawRangeElementsEXT (GLenum mode
, GLuint start
, GLuint end
, GLsizei count
, GLenum type
, const GLvoid
* indices
)
7520 D(bug("[HostGL] TASK: 0x%x, glDrawRangeElementsEXT", FindTask(NULL
)));
7521 GLCALL(glDrawRangeElementsEXT
, mode
, start
, end
, count
, type
, indices
);
7522 D(bug("...exit\n"));
7526 void glSecondaryColor3bEXT (GLbyte red
, GLbyte green
, GLbyte blue
)
7529 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3bEXT", FindTask(NULL
)));
7530 GLCALL(glSecondaryColor3bEXT
, red
, green
, blue
);
7531 D(bug("...exit\n"));
7535 void glSecondaryColor3bvEXT (const GLbyte
* v
)
7538 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3bvEXT", FindTask(NULL
)));
7539 GLCALL(glSecondaryColor3bvEXT
, v
);
7540 D(bug("...exit\n"));
7544 void glSecondaryColor3dEXT (GLdouble red
, GLdouble green
, GLdouble blue
)
7547 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3dEXT", FindTask(NULL
)));
7548 GLCALL(glSecondaryColor3dEXT
, red
, green
, blue
);
7549 D(bug("...exit\n"));
7553 void glSecondaryColor3dvEXT (const GLdouble
* v
)
7556 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3dvEXT", FindTask(NULL
)));
7557 GLCALL(glSecondaryColor3dvEXT
, v
);
7558 D(bug("...exit\n"));
7562 void glSecondaryColor3fEXT (GLfloat red
, GLfloat green
, GLfloat blue
)
7565 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3fEXT", FindTask(NULL
)));
7566 GLCALL(glSecondaryColor3fEXT
, red
, green
, blue
);
7567 D(bug("...exit\n"));
7571 void glSecondaryColor3fvEXT (const GLfloat
* v
)
7574 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3fvEXT", FindTask(NULL
)));
7575 GLCALL(glSecondaryColor3fvEXT
, v
);
7576 D(bug("...exit\n"));
7580 void glSecondaryColor3iEXT (GLint red
, GLint green
, GLint blue
)
7583 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3iEXT", FindTask(NULL
)));
7584 GLCALL(glSecondaryColor3iEXT
, red
, green
, blue
);
7585 D(bug("...exit\n"));
7589 void glSecondaryColor3ivEXT (const GLint
* v
)
7592 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3ivEXT", FindTask(NULL
)));
7593 GLCALL(glSecondaryColor3ivEXT
, v
);
7594 D(bug("...exit\n"));
7598 void glSecondaryColor3sEXT (GLshort red
, GLshort green
, GLshort blue
)
7601 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3sEXT", FindTask(NULL
)));
7602 GLCALL(glSecondaryColor3sEXT
, red
, green
, blue
);
7603 D(bug("...exit\n"));
7607 void glSecondaryColor3svEXT (const GLshort
* v
)
7610 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3svEXT", FindTask(NULL
)));
7611 GLCALL(glSecondaryColor3svEXT
, v
);
7612 D(bug("...exit\n"));
7616 void glSecondaryColor3ubEXT (GLubyte red
, GLubyte green
, GLubyte blue
)
7619 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3ubEXT", FindTask(NULL
)));
7620 GLCALL(glSecondaryColor3ubEXT
, red
, green
, blue
);
7621 D(bug("...exit\n"));
7625 void glSecondaryColor3ubvEXT (const GLubyte
* v
)
7628 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3ubvEXT", FindTask(NULL
)));
7629 GLCALL(glSecondaryColor3ubvEXT
, v
);
7630 D(bug("...exit\n"));
7634 void glSecondaryColor3uiEXT (GLuint red
, GLuint green
, GLuint blue
)
7637 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3uiEXT", FindTask(NULL
)));
7638 GLCALL(glSecondaryColor3uiEXT
, red
, green
, blue
);
7639 D(bug("...exit\n"));
7643 void glSecondaryColor3uivEXT (const GLuint
* v
)
7646 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3uivEXT", FindTask(NULL
)));
7647 GLCALL(glSecondaryColor3uivEXT
, v
);
7648 D(bug("...exit\n"));
7652 void glSecondaryColor3usEXT (GLushort red
, GLushort green
, GLushort blue
)
7655 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3usEXT", FindTask(NULL
)));
7656 GLCALL(glSecondaryColor3usEXT
, red
, green
, blue
);
7657 D(bug("...exit\n"));
7661 void glSecondaryColor3usvEXT (const GLushort
* v
)
7664 D(bug("[HostGL] TASK: 0x%x, glSecondaryColor3usvEXT", FindTask(NULL
)));
7665 GLCALL(glSecondaryColor3usvEXT
, v
);
7666 D(bug("...exit\n"));
7670 void glSecondaryColorPointerEXT (GLint size
, GLenum type
, GLsizei stride
, const GLvoid
* pointer
)
7673 D(bug("[HostGL] TASK: 0x%x, glSecondaryColorPointerEXT", FindTask(NULL
)));
7674 GLCALL(glSecondaryColorPointerEXT
, size
, type
, stride
, pointer
);
7675 D(bug("...exit\n"));
7679 void glMultiDrawArraysEXT (GLenum mode
, const GLint
* first
, const GLsizei
* count
, GLsizei primcount
)
7682 D(bug("[HostGL] TASK: 0x%x, glMultiDrawArraysEXT", FindTask(NULL
)));
7683 GLCALL(glMultiDrawArraysEXT
, mode
, first
, count
, primcount
);
7684 D(bug("...exit\n"));
7688 void glMultiDrawElementsEXT (GLenum mode
, const GLsizei
* count
, GLenum type
, const GLvoid
* * indices
, GLsizei primcount
)
7691 D(bug("[HostGL] TASK: 0x%x, glMultiDrawElementsEXT", FindTask(NULL
)));
7692 GLCALL(glMultiDrawElementsEXT
, mode
, count
, type
, indices
, primcount
);
7693 D(bug("...exit\n"));
7697 void glFogCoordfEXT (GLfloat coord
)
7700 D(bug("[HostGL] TASK: 0x%x, glFogCoordfEXT", FindTask(NULL
)));
7701 GLCALL(glFogCoordfEXT
, coord
);
7702 D(bug("...exit\n"));
7706 void glFogCoordfvEXT (const GLfloat
* coord
)
7709 D(bug("[HostGL] TASK: 0x%x, glFogCoordfvEXT", FindTask(NULL
)));
7710 GLCALL(glFogCoordfvEXT
, coord
);
7711 D(bug("...exit\n"));
7715 void glFogCoorddEXT (GLdouble coord
)
7718 D(bug("[HostGL] TASK: 0x%x, glFogCoorddEXT", FindTask(NULL
)));
7719 GLCALL(glFogCoorddEXT
, coord
);
7720 D(bug("...exit\n"));
7724 void glFogCoorddvEXT (const GLdouble
* coord
)
7727 D(bug("[HostGL] TASK: 0x%x, glFogCoorddvEXT", FindTask(NULL
)));
7728 GLCALL(glFogCoorddvEXT
, coord
);
7729 D(bug("...exit\n"));
7733 void glFogCoordPointerEXT (GLenum type
, GLsizei stride
, const GLvoid
* pointer
)
7736 D(bug("[HostGL] TASK: 0x%x, glFogCoordPointerEXT", FindTask(NULL
)));
7737 GLCALL(glFogCoordPointerEXT
, type
, stride
, pointer
);
7738 D(bug("...exit\n"));
7742 void glBlendFuncSeparateEXT (GLenum sfactorRGB
, GLenum dfactorRGB
, GLenum sfactorAlpha
, GLenum dfactorAlpha
)
7745 D(bug("[HostGL] TASK: 0x%x, glBlendFuncSeparateEXT", FindTask(NULL
)));
7746 GLCALL(glBlendFuncSeparateEXT
, sfactorRGB
, dfactorRGB
, sfactorAlpha
, dfactorAlpha
);
7747 D(bug("...exit\n"));
7751 void glFlushVertexArrayRangeNV ()
7754 D(bug("[HostGL] TASK: 0x%x, glFlushVertexArrayRangeNV", FindTask(NULL
)));
7755 GLCALL(glFlushVertexArrayRangeNV
);
7756 D(bug("...exit\n"));
7760 void glVertexArrayRangeNV (GLsizei length
, const GLvoid
* pointer
)
7763 D(bug("[HostGL] TASK: 0x%x, glVertexArrayRangeNV", FindTask(NULL
)));
7764 GLCALL(glVertexArrayRangeNV
, length
, pointer
);
7765 D(bug("...exit\n"));
7769 void glCombinerParameterfvNV (GLenum pname
, const GLfloat
* params
)
7772 D(bug("[HostGL] TASK: 0x%x, glCombinerParameterfvNV", FindTask(NULL
)));
7773 GLCALL(glCombinerParameterfvNV
, pname
, params
);
7774 D(bug("...exit\n"));
7778 void glCombinerParameterfNV (GLenum pname
, GLfloat param
)
7781 D(bug("[HostGL] TASK: 0x%x, glCombinerParameterfNV", FindTask(NULL
)));
7782 GLCALL(glCombinerParameterfNV
, pname
, param
);
7783 D(bug("...exit\n"));
7787 void glCombinerParameterivNV (GLenum pname
, const GLint
* params
)
7790 D(bug("[HostGL] TASK: 0x%x, glCombinerParameterivNV", FindTask(NULL
)));
7791 GLCALL(glCombinerParameterivNV
, pname
, params
);
7792 D(bug("...exit\n"));
7796 void glCombinerParameteriNV (GLenum pname
, GLint param
)
7799 D(bug("[HostGL] TASK: 0x%x, glCombinerParameteriNV", FindTask(NULL
)));
7800 GLCALL(glCombinerParameteriNV
, pname
, param
);
7801 D(bug("...exit\n"));
7805 void glCombinerInputNV (GLenum stage
, GLenum portion
, GLenum variable
, GLenum input
, GLenum mapping
, GLenum componentUsage
)
7808 D(bug("[HostGL] TASK: 0x%x, glCombinerInputNV", FindTask(NULL
)));
7809 GLCALL(glCombinerInputNV
, stage
, portion
, variable
, input
, mapping
, componentUsage
);
7810 D(bug("...exit\n"));
7814 void glCombinerOutputNV (GLenum stage
, GLenum portion
, GLenum abOutput
, GLenum cdOutput
, GLenum sumOutput
, GLenum scale
, GLenum bias
, GLboolean abDotProduct
, GLboolean cdDotProduct
, GLboolean muxSum
)
7817 D(bug("[HostGL] TASK: 0x%x, glCombinerOutputNV", FindTask(NULL
)));
7818 GLCALL(glCombinerOutputNV
, stage
, portion
, abOutput
, cdOutput
, sumOutput
, scale
, bias
, abDotProduct
, cdDotProduct
, muxSum
);
7819 D(bug("...exit\n"));
7823 void glFinalCombinerInputNV (GLenum variable
, GLenum input
, GLenum mapping
, GLenum componentUsage
)
7826 D(bug("[HostGL] TASK: 0x%x, glFinalCombinerInputNV", FindTask(NULL
)));
7827 GLCALL(glFinalCombinerInputNV
, variable
, input
, mapping
, componentUsage
);
7828 D(bug("...exit\n"));
7832 void glGetCombinerInputParameterfvNV (GLenum stage
, GLenum portion
, GLenum variable
, GLenum pname
, GLfloat
* params
)
7835 D(bug("[HostGL] TASK: 0x%x, glGetCombinerInputParameterfvNV", FindTask(NULL
)));
7836 GLCALL(glGetCombinerInputParameterfvNV
, stage
, portion
, variable
, pname
, params
);
7837 D(bug("...exit\n"));
7841 void glGetCombinerInputParameterivNV (GLenum stage
, GLenum portion
, GLenum variable
, GLenum pname
, GLint
* params
)
7844 D(bug("[HostGL] TASK: 0x%x, glGetCombinerInputParameterivNV", FindTask(NULL
)));
7845 GLCALL(glGetCombinerInputParameterivNV
, stage
, portion
, variable
, pname
, params
);
7846 D(bug("...exit\n"));
7850 void glGetCombinerOutputParameterfvNV (GLenum stage
, GLenum portion
, GLenum pname
, GLfloat
* params
)
7853 D(bug("[HostGL] TASK: 0x%x, glGetCombinerOutputParameterfvNV", FindTask(NULL
)));
7854 GLCALL(glGetCombinerOutputParameterfvNV
, stage
, portion
, pname
, params
);
7855 D(bug("...exit\n"));
7859 void glGetCombinerOutputParameterivNV (GLenum stage
, GLenum portion
, GLenum pname
, GLint
* params
)
7862 D(bug("[HostGL] TASK: 0x%x, glGetCombinerOutputParameterivNV", FindTask(NULL
)));
7863 GLCALL(glGetCombinerOutputParameterivNV
, stage
, portion
, pname
, params
);
7864 D(bug("...exit\n"));
7868 void glGetFinalCombinerInputParameterfvNV (GLenum variable
, GLenum pname
, GLfloat
* params
)
7871 D(bug("[HostGL] TASK: 0x%x, glGetFinalCombinerInputParameterfvNV", FindTask(NULL
)));
7872 GLCALL(glGetFinalCombinerInputParameterfvNV
, variable
, pname
, params
);
7873 D(bug("...exit\n"));
7877 void glGetFinalCombinerInputParameterivNV (GLenum variable
, GLenum pname
, GLint
* params
)
7880 D(bug("[HostGL] TASK: 0x%x, glGetFinalCombinerInputParameterivNV", FindTask(NULL
)));
7881 GLCALL(glGetFinalCombinerInputParameterivNV
, variable
, pname
, params
);
7882 D(bug("...exit\n"));
7886 void glResizeBuffersMESA ()
7889 D(bug("[HostGL] TASK: 0x%x, glResizeBuffersMESA", FindTask(NULL
)));
7890 GLCALL(glResizeBuffersMESA
);
7891 D(bug("...exit\n"));
7895 void glWindowPos2dMESA (GLdouble x
, GLdouble y
)
7898 D(bug("[HostGL] TASK: 0x%x, glWindowPos2dMESA", FindTask(NULL
)));
7899 GLCALL(glWindowPos2dMESA
, x
, y
);
7900 D(bug("...exit\n"));
7904 void glWindowPos2dvMESA (const GLdouble
* v
)
7907 D(bug("[HostGL] TASK: 0x%x, glWindowPos2dvMESA", FindTask(NULL
)));
7908 GLCALL(glWindowPos2dvMESA
, v
);
7909 D(bug("...exit\n"));
7913 void glWindowPos2fMESA (GLfloat x
, GLfloat y
)
7916 D(bug("[HostGL] TASK: 0x%x, glWindowPos2fMESA", FindTask(NULL
)));
7917 GLCALL(glWindowPos2fMESA
, x
, y
);
7918 D(bug("...exit\n"));
7922 void glWindowPos2fvMESA (const GLfloat
* v
)
7925 D(bug("[HostGL] TASK: 0x%x, glWindowPos2fvMESA", FindTask(NULL
)));
7926 GLCALL(glWindowPos2fvMESA
, v
);
7927 D(bug("...exit\n"));
7931 void glWindowPos2iMESA (GLint x
, GLint y
)
7934 D(bug("[HostGL] TASK: 0x%x, glWindowPos2iMESA", FindTask(NULL
)));
7935 GLCALL(glWindowPos2iMESA
, x
, y
);
7936 D(bug("...exit\n"));
7940 void glWindowPos2ivMESA (const GLint
* v
)
7943 D(bug("[HostGL] TASK: 0x%x, glWindowPos2ivMESA", FindTask(NULL
)));
7944 GLCALL(glWindowPos2ivMESA
, v
);
7945 D(bug("...exit\n"));
7949 void glWindowPos2sMESA (GLshort x
, GLshort y
)
7952 D(bug("[HostGL] TASK: 0x%x, glWindowPos2sMESA", FindTask(NULL
)));
7953 GLCALL(glWindowPos2sMESA
, x
, y
);
7954 D(bug("...exit\n"));
7958 void glWindowPos2svMESA (const GLshort
* v
)
7961 D(bug("[HostGL] TASK: 0x%x, glWindowPos2svMESA", FindTask(NULL
)));
7962 GLCALL(glWindowPos2svMESA
, v
);
7963 D(bug("...exit\n"));
7967 void glWindowPos3dMESA (GLdouble x
, GLdouble y
, GLdouble z
)
7970 D(bug("[HostGL] TASK: 0x%x, glWindowPos3dMESA", FindTask(NULL
)));
7971 GLCALL(glWindowPos3dMESA
, x
, y
, z
);
7972 D(bug("...exit\n"));
7976 void glWindowPos3dvMESA (const GLdouble
* v
)
7979 D(bug("[HostGL] TASK: 0x%x, glWindowPos3dvMESA", FindTask(NULL
)));
7980 GLCALL(glWindowPos3dvMESA
, v
);
7981 D(bug("...exit\n"));
7985 void glWindowPos3fMESA (GLfloat x
, GLfloat y
, GLfloat z
)
7988 D(bug("[HostGL] TASK: 0x%x, glWindowPos3fMESA", FindTask(NULL
)));
7989 GLCALL(glWindowPos3fMESA
, x
, y
, z
);
7990 D(bug("...exit\n"));
7994 void glWindowPos3fvMESA (const GLfloat
* v
)
7997 D(bug("[HostGL] TASK: 0x%x, glWindowPos3fvMESA", FindTask(NULL
)));
7998 GLCALL(glWindowPos3fvMESA
, v
);
7999 D(bug("...exit\n"));
8003 void glWindowPos3iMESA (GLint x
, GLint y
, GLint z
)
8006 D(bug("[HostGL] TASK: 0x%x, glWindowPos3iMESA", FindTask(NULL
)));
8007 GLCALL(glWindowPos3iMESA
, x
, y
, z
);
8008 D(bug("...exit\n"));
8012 void glWindowPos3ivMESA (const GLint
* v
)
8015 D(bug("[HostGL] TASK: 0x%x, glWindowPos3ivMESA", FindTask(NULL
)));
8016 GLCALL(glWindowPos3ivMESA
, v
);
8017 D(bug("...exit\n"));
8021 void glWindowPos3sMESA (GLshort x
, GLshort y
, GLshort z
)
8024 D(bug("[HostGL] TASK: 0x%x, glWindowPos3sMESA", FindTask(NULL
)));
8025 GLCALL(glWindowPos3sMESA
, x
, y
, z
);
8026 D(bug("...exit\n"));
8030 void glWindowPos3svMESA (const GLshort
* v
)
8033 D(bug("[HostGL] TASK: 0x%x, glWindowPos3svMESA", FindTask(NULL
)));
8034 GLCALL(glWindowPos3svMESA
, v
);
8035 D(bug("...exit\n"));
8039 void glWindowPos4dMESA (GLdouble x
, GLdouble y
, GLdouble z
, GLdouble w
)
8042 D(bug("[HostGL] TASK: 0x%x, glWindowPos4dMESA", FindTask(NULL
)));
8043 GLCALL(glWindowPos4dMESA
, x
, y
, z
, w
);
8044 D(bug("...exit\n"));
8048 void glWindowPos4dvMESA (const GLdouble
* v
)
8051 D(bug("[HostGL] TASK: 0x%x, glWindowPos4dvMESA", FindTask(NULL
)));
8052 GLCALL(glWindowPos4dvMESA
, v
);
8053 D(bug("...exit\n"));
8057 void glWindowPos4fMESA (GLfloat x
, GLfloat y
, GLfloat z
, GLfloat w
)
8060 D(bug("[HostGL] TASK: 0x%x, glWindowPos4fMESA", FindTask(NULL
)));
8061 GLCALL(glWindowPos4fMESA
, x
, y
, z
, w
);
8062 D(bug("...exit\n"));
8066 void glWindowPos4fvMESA (const GLfloat
* v
)
8069 D(bug("[HostGL] TASK: 0x%x, glWindowPos4fvMESA", FindTask(NULL
)));
8070 GLCALL(glWindowPos4fvMESA
, v
);
8071 D(bug("...exit\n"));
8075 void glWindowPos4iMESA (GLint x
, GLint y
, GLint z
, GLint w
)
8078 D(bug("[HostGL] TASK: 0x%x, glWindowPos4iMESA", FindTask(NULL
)));
8079 GLCALL(glWindowPos4iMESA
, x
, y
, z
, w
);
8080 D(bug("...exit\n"));
8084 void glWindowPos4ivMESA (const GLint
* v
)
8087 D(bug("[HostGL] TASK: 0x%x, glWindowPos4ivMESA", FindTask(NULL
)));
8088 GLCALL(glWindowPos4ivMESA
, v
);
8089 D(bug("...exit\n"));
8093 void glWindowPos4sMESA (GLshort x
, GLshort y
, GLshort z
, GLshort w
)
8096 D(bug("[HostGL] TASK: 0x%x, glWindowPos4sMESA", FindTask(NULL
)));
8097 GLCALL(glWindowPos4sMESA
, x
, y
, z
, w
);
8098 D(bug("...exit\n"));
8102 void glWindowPos4svMESA (const GLshort
* v
)
8105 D(bug("[HostGL] TASK: 0x%x, glWindowPos4svMESA", FindTask(NULL
)));
8106 GLCALL(glWindowPos4svMESA
, v
);
8107 D(bug("...exit\n"));
8111 GLboolean
glAreProgramsResidentNV (GLsizei n
, const GLuint
* programs
, GLboolean
* residences
)
8115 D(bug("[HostGL] TASK: 0x%x, glAreProgramsResidentNV", FindTask(NULL
)));
8116 _ret
= GLCALL(glAreProgramsResidentNV
, n
, programs
, residences
);
8117 D(bug("...exit\n"));
8122 void glBindProgramNV (GLenum target
, GLuint id
)
8125 D(bug("[HostGL] TASK: 0x%x, glBindProgramNV", FindTask(NULL
)));
8126 GLCALL(glBindProgramNV
, target
, id
);
8127 D(bug("...exit\n"));
8131 void glDeleteProgramsNV (GLsizei n
, const GLuint
* programs
)
8134 D(bug("[HostGL] TASK: 0x%x, glDeleteProgramsNV", FindTask(NULL
)));
8135 GLCALL(glDeleteProgramsNV
, n
, programs
);
8136 D(bug("...exit\n"));
8140 void glExecuteProgramNV (GLenum target
, GLuint id
, const GLfloat
* params
)
8143 D(bug("[HostGL] TASK: 0x%x, glExecuteProgramNV", FindTask(NULL
)));
8144 GLCALL(glExecuteProgramNV
, target
, id
, params
);
8145 D(bug("...exit\n"));
8149 void glGenProgramsNV (GLsizei n
, GLuint
* programs
)
8152 D(bug("[HostGL] TASK: 0x%x, glGenProgramsNV", FindTask(NULL
)));
8153 GLCALL(glGenProgramsNV
, n
, programs
);
8154 D(bug("...exit\n"));
8158 void glGetProgramParameterdvNV (GLenum target
, GLuint index
, GLenum pname
, GLdouble
* params
)
8161 D(bug("[HostGL] TASK: 0x%x, glGetProgramParameterdvNV", FindTask(NULL
)));
8162 GLCALL(glGetProgramParameterdvNV
, target
, index
, pname
, params
);
8163 D(bug("...exit\n"));
8167 void glGetProgramParameterfvNV (GLenum target
, GLuint index
, GLenum pname
, GLfloat
* params
)
8170 D(bug("[HostGL] TASK: 0x%x, glGetProgramParameterfvNV", FindTask(NULL
)));
8171 GLCALL(glGetProgramParameterfvNV
, target
, index
, pname
, params
);
8172 D(bug("...exit\n"));
8176 void glGetProgramivNV (GLuint id
, GLenum pname
, GLint
* params
)
8179 D(bug("[HostGL] TASK: 0x%x, glGetProgramivNV", FindTask(NULL
)));
8180 GLCALL(glGetProgramivNV
, id
, pname
, params
);
8181 D(bug("...exit\n"));
8185 void glGetProgramStringNV (GLuint id
, GLenum pname
, GLubyte
* program
)
8188 D(bug("[HostGL] TASK: 0x%x, glGetProgramStringNV", FindTask(NULL
)));
8189 GLCALL(glGetProgramStringNV
, id
, pname
, program
);
8190 D(bug("...exit\n"));
8194 void glGetTrackMatrixivNV (GLenum target
, GLuint address
, GLenum pname
, GLint
* params
)
8197 D(bug("[HostGL] TASK: 0x%x, glGetTrackMatrixivNV", FindTask(NULL
)));
8198 GLCALL(glGetTrackMatrixivNV
, target
, address
, pname
, params
);
8199 D(bug("...exit\n"));
8203 void glGetVertexAttribdvNV (GLuint index
, GLenum pname
, GLdouble
* params
)
8206 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribdvNV", FindTask(NULL
)));
8207 GLCALL(glGetVertexAttribdvNV
, index
, pname
, params
);
8208 D(bug("...exit\n"));
8212 void glGetVertexAttribfvNV (GLuint index
, GLenum pname
, GLfloat
* params
)
8215 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribfvNV", FindTask(NULL
)));
8216 GLCALL(glGetVertexAttribfvNV
, index
, pname
, params
);
8217 D(bug("...exit\n"));
8221 void glGetVertexAttribivNV (GLuint index
, GLenum pname
, GLint
* params
)
8224 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribivNV", FindTask(NULL
)));
8225 GLCALL(glGetVertexAttribivNV
, index
, pname
, params
);
8226 D(bug("...exit\n"));
8230 void glGetVertexAttribPointervNV (GLuint index
, GLenum pname
, GLvoid
* * pointer
)
8233 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribPointervNV", FindTask(NULL
)));
8234 GLCALL(glGetVertexAttribPointervNV
, index
, pname
, pointer
);
8235 D(bug("...exit\n"));
8239 GLboolean
glIsProgramNV (GLuint id
)
8243 D(bug("[HostGL] TASK: 0x%x, glIsProgramNV", FindTask(NULL
)));
8244 _ret
= GLCALL(glIsProgramNV
, id
);
8245 D(bug("...exit\n"));
8250 void glLoadProgramNV (GLenum target
, GLuint id
, GLsizei len
, const GLubyte
* program
)
8253 D(bug("[HostGL] TASK: 0x%x, glLoadProgramNV", FindTask(NULL
)));
8254 GLCALL(glLoadProgramNV
, target
, id
, len
, program
);
8255 D(bug("...exit\n"));
8259 void glProgramParameter4dNV (GLenum target
, GLuint index
, GLdouble x
, GLdouble y
, GLdouble z
, GLdouble w
)
8262 D(bug("[HostGL] TASK: 0x%x, glProgramParameter4dNV", FindTask(NULL
)));
8263 GLCALL(glProgramParameter4dNV
, target
, index
, x
, y
, z
, w
);
8264 D(bug("...exit\n"));
8268 void glProgramParameter4dvNV (GLenum target
, GLuint index
, const GLdouble
* v
)
8271 D(bug("[HostGL] TASK: 0x%x, glProgramParameter4dvNV", FindTask(NULL
)));
8272 GLCALL(glProgramParameter4dvNV
, target
, index
, v
);
8273 D(bug("...exit\n"));
8277 void glProgramParameter4fNV (GLenum target
, GLuint index
, GLfloat x
, GLfloat y
, GLfloat z
, GLfloat w
)
8280 D(bug("[HostGL] TASK: 0x%x, glProgramParameter4fNV", FindTask(NULL
)));
8281 GLCALL(glProgramParameter4fNV
, target
, index
, x
, y
, z
, w
);
8282 D(bug("...exit\n"));
8286 void glProgramParameter4fvNV (GLenum target
, GLuint index
, const GLfloat
* v
)
8289 D(bug("[HostGL] TASK: 0x%x, glProgramParameter4fvNV", FindTask(NULL
)));
8290 GLCALL(glProgramParameter4fvNV
, target
, index
, v
);
8291 D(bug("...exit\n"));
8295 void glProgramParameters4dvNV (GLenum target
, GLuint index
, GLsizei count
, const GLdouble
* v
)
8298 D(bug("[HostGL] TASK: 0x%x, glProgramParameters4dvNV", FindTask(NULL
)));
8299 GLCALL(glProgramParameters4dvNV
, target
, index
, count
, v
);
8300 D(bug("...exit\n"));
8304 void glProgramParameters4fvNV (GLenum target
, GLuint index
, GLsizei count
, const GLfloat
* v
)
8307 D(bug("[HostGL] TASK: 0x%x, glProgramParameters4fvNV", FindTask(NULL
)));
8308 GLCALL(glProgramParameters4fvNV
, target
, index
, count
, v
);
8309 D(bug("...exit\n"));
8313 void glRequestResidentProgramsNV (GLsizei n
, const GLuint
* programs
)
8316 D(bug("[HostGL] TASK: 0x%x, glRequestResidentProgramsNV", FindTask(NULL
)));
8317 GLCALL(glRequestResidentProgramsNV
, n
, programs
);
8318 D(bug("...exit\n"));
8322 void glTrackMatrixNV (GLenum target
, GLuint address
, GLenum matrix
, GLenum transform
)
8325 D(bug("[HostGL] TASK: 0x%x, glTrackMatrixNV", FindTask(NULL
)));
8326 GLCALL(glTrackMatrixNV
, target
, address
, matrix
, transform
);
8327 D(bug("...exit\n"));
8331 void glVertexAttribPointerNV (GLuint index
, GLint fsize
, GLenum type
, GLsizei stride
, const GLvoid
* pointer
)
8334 D(bug("[HostGL] TASK: 0x%x, glVertexAttribPointerNV", FindTask(NULL
)));
8335 GLCALL(glVertexAttribPointerNV
, index
, fsize
, type
, stride
, pointer
);
8336 D(bug("...exit\n"));
8340 void glVertexAttrib1dNV (GLuint index
, GLdouble x
)
8343 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1dNV", FindTask(NULL
)));
8344 GLCALL(glVertexAttrib1dNV
, index
, x
);
8345 D(bug("...exit\n"));
8349 void glVertexAttrib1dvNV (GLuint index
, const GLdouble
* v
)
8352 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1dvNV", FindTask(NULL
)));
8353 GLCALL(glVertexAttrib1dvNV
, index
, v
);
8354 D(bug("...exit\n"));
8358 void glVertexAttrib1fNV (GLuint index
, GLfloat x
)
8361 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1fNV", FindTask(NULL
)));
8362 GLCALL(glVertexAttrib1fNV
, index
, x
);
8363 D(bug("...exit\n"));
8367 void glVertexAttrib1fvNV (GLuint index
, const GLfloat
* v
)
8370 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1fvNV", FindTask(NULL
)));
8371 GLCALL(glVertexAttrib1fvNV
, index
, v
);
8372 D(bug("...exit\n"));
8376 void glVertexAttrib1sNV (GLuint index
, GLshort x
)
8379 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1sNV", FindTask(NULL
)));
8380 GLCALL(glVertexAttrib1sNV
, index
, x
);
8381 D(bug("...exit\n"));
8385 void glVertexAttrib1svNV (GLuint index
, const GLshort
* v
)
8388 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib1svNV", FindTask(NULL
)));
8389 GLCALL(glVertexAttrib1svNV
, index
, v
);
8390 D(bug("...exit\n"));
8394 void glVertexAttrib2dNV (GLuint index
, GLdouble x
, GLdouble y
)
8397 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2dNV", FindTask(NULL
)));
8398 GLCALL(glVertexAttrib2dNV
, index
, x
, y
);
8399 D(bug("...exit\n"));
8403 void glVertexAttrib2dvNV (GLuint index
, const GLdouble
* v
)
8406 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2dvNV", FindTask(NULL
)));
8407 GLCALL(glVertexAttrib2dvNV
, index
, v
);
8408 D(bug("...exit\n"));
8412 void glVertexAttrib2fNV (GLuint index
, GLfloat x
, GLfloat y
)
8415 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2fNV", FindTask(NULL
)));
8416 GLCALL(glVertexAttrib2fNV
, index
, x
, y
);
8417 D(bug("...exit\n"));
8421 void glVertexAttrib2fvNV (GLuint index
, const GLfloat
* v
)
8424 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2fvNV", FindTask(NULL
)));
8425 GLCALL(glVertexAttrib2fvNV
, index
, v
);
8426 D(bug("...exit\n"));
8430 void glVertexAttrib2sNV (GLuint index
, GLshort x
, GLshort y
)
8433 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2sNV", FindTask(NULL
)));
8434 GLCALL(glVertexAttrib2sNV
, index
, x
, y
);
8435 D(bug("...exit\n"));
8439 void glVertexAttrib2svNV (GLuint index
, const GLshort
* v
)
8442 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib2svNV", FindTask(NULL
)));
8443 GLCALL(glVertexAttrib2svNV
, index
, v
);
8444 D(bug("...exit\n"));
8448 void glVertexAttrib3dNV (GLuint index
, GLdouble x
, GLdouble y
, GLdouble z
)
8451 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3dNV", FindTask(NULL
)));
8452 GLCALL(glVertexAttrib3dNV
, index
, x
, y
, z
);
8453 D(bug("...exit\n"));
8457 void glVertexAttrib3dvNV (GLuint index
, const GLdouble
* v
)
8460 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3dvNV", FindTask(NULL
)));
8461 GLCALL(glVertexAttrib3dvNV
, index
, v
);
8462 D(bug("...exit\n"));
8466 void glVertexAttrib3fNV (GLuint index
, GLfloat x
, GLfloat y
, GLfloat z
)
8469 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3fNV", FindTask(NULL
)));
8470 GLCALL(glVertexAttrib3fNV
, index
, x
, y
, z
);
8471 D(bug("...exit\n"));
8475 void glVertexAttrib3fvNV (GLuint index
, const GLfloat
* v
)
8478 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3fvNV", FindTask(NULL
)));
8479 GLCALL(glVertexAttrib3fvNV
, index
, v
);
8480 D(bug("...exit\n"));
8484 void glVertexAttrib3sNV (GLuint index
, GLshort x
, GLshort y
, GLshort z
)
8487 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3sNV", FindTask(NULL
)));
8488 GLCALL(glVertexAttrib3sNV
, index
, x
, y
, z
);
8489 D(bug("...exit\n"));
8493 void glVertexAttrib3svNV (GLuint index
, const GLshort
* v
)
8496 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib3svNV", FindTask(NULL
)));
8497 GLCALL(glVertexAttrib3svNV
, index
, v
);
8498 D(bug("...exit\n"));
8502 void glVertexAttrib4dNV (GLuint index
, GLdouble x
, GLdouble y
, GLdouble z
, GLdouble w
)
8505 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4dNV", FindTask(NULL
)));
8506 GLCALL(glVertexAttrib4dNV
, index
, x
, y
, z
, w
);
8507 D(bug("...exit\n"));
8511 void glVertexAttrib4dvNV (GLuint index
, const GLdouble
* v
)
8514 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4dvNV", FindTask(NULL
)));
8515 GLCALL(glVertexAttrib4dvNV
, index
, v
);
8516 D(bug("...exit\n"));
8520 void glVertexAttrib4fNV (GLuint index
, GLfloat x
, GLfloat y
, GLfloat z
, GLfloat w
)
8523 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4fNV", FindTask(NULL
)));
8524 GLCALL(glVertexAttrib4fNV
, index
, x
, y
, z
, w
);
8525 D(bug("...exit\n"));
8529 void glVertexAttrib4fvNV (GLuint index
, const GLfloat
* v
)
8532 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4fvNV", FindTask(NULL
)));
8533 GLCALL(glVertexAttrib4fvNV
, index
, v
);
8534 D(bug("...exit\n"));
8538 void glVertexAttrib4sNV (GLuint index
, GLshort x
, GLshort y
, GLshort z
, GLshort w
)
8541 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4sNV", FindTask(NULL
)));
8542 GLCALL(glVertexAttrib4sNV
, index
, x
, y
, z
, w
);
8543 D(bug("...exit\n"));
8547 void glVertexAttrib4svNV (GLuint index
, const GLshort
* v
)
8550 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4svNV", FindTask(NULL
)));
8551 GLCALL(glVertexAttrib4svNV
, index
, v
);
8552 D(bug("...exit\n"));
8556 void glVertexAttrib4ubNV (GLuint index
, GLubyte x
, GLubyte y
, GLubyte z
, GLubyte w
)
8559 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4ubNV", FindTask(NULL
)));
8560 GLCALL(glVertexAttrib4ubNV
, index
, x
, y
, z
, w
);
8561 D(bug("...exit\n"));
8565 void glVertexAttrib4ubvNV (GLuint index
, const GLubyte
* v
)
8568 D(bug("[HostGL] TASK: 0x%x, glVertexAttrib4ubvNV", FindTask(NULL
)));
8569 GLCALL(glVertexAttrib4ubvNV
, index
, v
);
8570 D(bug("...exit\n"));
8574 void glVertexAttribs1dvNV (GLuint index
, GLsizei count
, const GLdouble
* v
)
8577 D(bug("[HostGL] TASK: 0x%x, glVertexAttribs1dvNV", FindTask(NULL
)));
8578 GLCALL(glVertexAttribs1dvNV
, index
, count
, v
);
8579 D(bug("...exit\n"));
8583 void glVertexAttribs1fvNV (GLuint index
, GLsizei count
, const GLfloat
* v
)
8586 D(bug("[HostGL] TASK: 0x%x, glVertexAttribs1fvNV", FindTask(NULL
)));
8587 GLCALL(glVertexAttribs1fvNV
, index
, count
, v
);
8588 D(bug("...exit\n"));
8592 void glVertexAttribs1svNV (GLuint index
, GLsizei count
, const GLshort
* v
)
8595 D(bug("[HostGL] TASK: 0x%x, glVertexAttribs1svNV", FindTask(NULL
)));
8596 GLCALL(glVertexAttribs1svNV
, index
, count
, v
);
8597 D(bug("...exit\n"));
8601 void glVertexAttribs2dvNV (GLuint index
, GLsizei count
, const GLdouble
* v
)
8604 D(bug("[HostGL] TASK: 0x%x, glVertexAttribs2dvNV", FindTask(NULL
)));
8605 GLCALL(glVertexAttribs2dvNV
, index
, count
, v
);
8606 D(bug("...exit\n"));
8610 void glVertexAttribs2fvNV (GLuint index
, GLsizei count
, const GLfloat
* v
)
8613 D(bug("[HostGL] TASK: 0x%x, glVertexAttribs2fvNV", FindTask(NULL
)));
8614 GLCALL(glVertexAttribs2fvNV
, index
, count
, v
);
8615 D(bug("...exit\n"));
8619 void glVertexAttribs2svNV (GLuint index
, GLsizei count
, const GLshort
* v
)
8622 D(bug("[HostGL] TASK: 0x%x, glVertexAttribs2svNV", FindTask(NULL
)));
8623 GLCALL(glVertexAttribs2svNV
, index
, count
, v
);
8624 D(bug("...exit\n"));
8628 void glVertexAttribs3dvNV (GLuint index
, GLsizei count
, const GLdouble
* v
)
8631 D(bug("[HostGL] TASK: 0x%x, glVertexAttribs3dvNV", FindTask(NULL
)));
8632 GLCALL(glVertexAttribs3dvNV
, index
, count
, v
);
8633 D(bug("...exit\n"));
8637 void glVertexAttribs3fvNV (GLuint index
, GLsizei count
, const GLfloat
* v
)
8640 D(bug("[HostGL] TASK: 0x%x, glVertexAttribs3fvNV", FindTask(NULL
)));
8641 GLCALL(glVertexAttribs3fvNV
, index
, count
, v
);
8642 D(bug("...exit\n"));
8646 void glVertexAttribs3svNV (GLuint index
, GLsizei count
, const GLshort
* v
)
8649 D(bug("[HostGL] TASK: 0x%x, glVertexAttribs3svNV", FindTask(NULL
)));
8650 GLCALL(glVertexAttribs3svNV
, index
, count
, v
);
8651 D(bug("...exit\n"));
8655 void glVertexAttribs4dvNV (GLuint index
, GLsizei count
, const GLdouble
* v
)
8658 D(bug("[HostGL] TASK: 0x%x, glVertexAttribs4dvNV", FindTask(NULL
)));
8659 GLCALL(glVertexAttribs4dvNV
, index
, count
, v
);
8660 D(bug("...exit\n"));
8664 void glVertexAttribs4fvNV (GLuint index
, GLsizei count
, const GLfloat
* v
)
8667 D(bug("[HostGL] TASK: 0x%x, glVertexAttribs4fvNV", FindTask(NULL
)));
8668 GLCALL(glVertexAttribs4fvNV
, index
, count
, v
);
8669 D(bug("...exit\n"));
8673 void glVertexAttribs4svNV (GLuint index
, GLsizei count
, const GLshort
* v
)
8676 D(bug("[HostGL] TASK: 0x%x, glVertexAttribs4svNV", FindTask(NULL
)));
8677 GLCALL(glVertexAttribs4svNV
, index
, count
, v
);
8678 D(bug("...exit\n"));
8682 void glVertexAttribs4ubvNV (GLuint index
, GLsizei count
, const GLubyte
* v
)
8685 D(bug("[HostGL] TASK: 0x%x, glVertexAttribs4ubvNV", FindTask(NULL
)));
8686 GLCALL(glVertexAttribs4ubvNV
, index
, count
, v
);
8687 D(bug("...exit\n"));
8691 void glTexBumpParameterivATI (GLenum pname
, const GLint
* param
)
8694 D(bug("[HostGL] TASK: 0x%x, glTexBumpParameterivATI", FindTask(NULL
)));
8695 GLCALL(glTexBumpParameterivATI
, pname
, param
);
8696 D(bug("...exit\n"));
8700 void glTexBumpParameterfvATI (GLenum pname
, const GLfloat
* param
)
8703 D(bug("[HostGL] TASK: 0x%x, glTexBumpParameterfvATI", FindTask(NULL
)));
8704 GLCALL(glTexBumpParameterfvATI
, pname
, param
);
8705 D(bug("...exit\n"));
8709 void glGetTexBumpParameterivATI (GLenum pname
, GLint
* param
)
8712 D(bug("[HostGL] TASK: 0x%x, glGetTexBumpParameterivATI", FindTask(NULL
)));
8713 GLCALL(glGetTexBumpParameterivATI
, pname
, param
);
8714 D(bug("...exit\n"));
8718 void glGetTexBumpParameterfvATI (GLenum pname
, GLfloat
* param
)
8721 D(bug("[HostGL] TASK: 0x%x, glGetTexBumpParameterfvATI", FindTask(NULL
)));
8722 GLCALL(glGetTexBumpParameterfvATI
, pname
, param
);
8723 D(bug("...exit\n"));
8727 GLuint
glGenFragmentShadersATI (GLuint range
)
8731 D(bug("[HostGL] TASK: 0x%x, glGenFragmentShadersATI", FindTask(NULL
)));
8732 _ret
= GLCALL(glGenFragmentShadersATI
, range
);
8733 D(bug("...exit\n"));
8738 void glBindFragmentShaderATI (GLuint id
)
8741 D(bug("[HostGL] TASK: 0x%x, glBindFragmentShaderATI", FindTask(NULL
)));
8742 GLCALL(glBindFragmentShaderATI
, id
);
8743 D(bug("...exit\n"));
8747 void glDeleteFragmentShaderATI (GLuint id
)
8750 D(bug("[HostGL] TASK: 0x%x, glDeleteFragmentShaderATI", FindTask(NULL
)));
8751 GLCALL(glDeleteFragmentShaderATI
, id
);
8752 D(bug("...exit\n"));
8756 void glBeginFragmentShaderATI ()
8759 D(bug("[HostGL] TASK: 0x%x, glBeginFragmentShaderATI", FindTask(NULL
)));
8760 GLCALL(glBeginFragmentShaderATI
);
8761 D(bug("...exit\n"));
8765 void glEndFragmentShaderATI ()
8768 D(bug("[HostGL] TASK: 0x%x, glEndFragmentShaderATI", FindTask(NULL
)));
8769 GLCALL(glEndFragmentShaderATI
);
8770 D(bug("...exit\n"));
8774 void glPassTexCoordATI (GLuint dst
, GLuint coord
, GLenum swizzle
)
8777 D(bug("[HostGL] TASK: 0x%x, glPassTexCoordATI", FindTask(NULL
)));
8778 GLCALL(glPassTexCoordATI
, dst
, coord
, swizzle
);
8779 D(bug("...exit\n"));
8783 void glSampleMapATI (GLuint dst
, GLuint interp
, GLenum swizzle
)
8786 D(bug("[HostGL] TASK: 0x%x, glSampleMapATI", FindTask(NULL
)));
8787 GLCALL(glSampleMapATI
, dst
, interp
, swizzle
);
8788 D(bug("...exit\n"));
8792 void glColorFragmentOp1ATI (GLenum op
, GLuint dst
, GLuint dstMask
, GLuint dstMod
, GLuint arg1
, GLuint arg1Rep
, GLuint arg1Mod
)
8795 D(bug("[HostGL] TASK: 0x%x, glColorFragmentOp1ATI", FindTask(NULL
)));
8796 GLCALL(glColorFragmentOp1ATI
, op
, dst
, dstMask
, dstMod
, arg1
, arg1Rep
, arg1Mod
);
8797 D(bug("...exit\n"));
8801 void glColorFragmentOp2ATI (GLenum op
, GLuint dst
, GLuint dstMask
, GLuint dstMod
, GLuint arg1
, GLuint arg1Rep
, GLuint arg1Mod
, GLuint arg2
, GLuint arg2Rep
, GLuint arg2Mod
)
8804 D(bug("[HostGL] TASK: 0x%x, glColorFragmentOp2ATI", FindTask(NULL
)));
8805 GLCALL(glColorFragmentOp2ATI
, op
, dst
, dstMask
, dstMod
, arg1
, arg1Rep
, arg1Mod
, arg2
, arg2Rep
, arg2Mod
);
8806 D(bug("...exit\n"));
8810 void glColorFragmentOp3ATI (GLenum op
, GLuint dst
, GLuint dstMask
, GLuint dstMod
, GLuint arg1
, GLuint arg1Rep
, GLuint arg1Mod
, GLuint arg2
, GLuint arg2Rep
, GLuint arg2Mod
, GLuint arg3
, GLuint arg3Rep
, GLuint arg3Mod
)
8813 D(bug("[HostGL] TASK: 0x%x, glColorFragmentOp3ATI", FindTask(NULL
)));
8814 GLCALL(glColorFragmentOp3ATI
, op
, dst
, dstMask
, dstMod
, arg1
, arg1Rep
, arg1Mod
, arg2
, arg2Rep
, arg2Mod
, arg3
, arg3Rep
, arg3Mod
);
8815 D(bug("...exit\n"));
8819 void glAlphaFragmentOp1ATI (GLenum op
, GLuint dst
, GLuint dstMod
, GLuint arg1
, GLuint arg1Rep
, GLuint arg1Mod
)
8822 D(bug("[HostGL] TASK: 0x%x, glAlphaFragmentOp1ATI", FindTask(NULL
)));
8823 GLCALL(glAlphaFragmentOp1ATI
, op
, dst
, dstMod
, arg1
, arg1Rep
, arg1Mod
);
8824 D(bug("...exit\n"));
8828 void glAlphaFragmentOp2ATI (GLenum op
, GLuint dst
, GLuint dstMod
, GLuint arg1
, GLuint arg1Rep
, GLuint arg1Mod
, GLuint arg2
, GLuint arg2Rep
, GLuint arg2Mod
)
8831 D(bug("[HostGL] TASK: 0x%x, glAlphaFragmentOp2ATI", FindTask(NULL
)));
8832 GLCALL(glAlphaFragmentOp2ATI
, op
, dst
, dstMod
, arg1
, arg1Rep
, arg1Mod
, arg2
, arg2Rep
, arg2Mod
);
8833 D(bug("...exit\n"));
8837 void glAlphaFragmentOp3ATI (GLenum op
, GLuint dst
, GLuint dstMod
, GLuint arg1
, GLuint arg1Rep
, GLuint arg1Mod
, GLuint arg2
, GLuint arg2Rep
, GLuint arg2Mod
, GLuint arg3
, GLuint arg3Rep
, GLuint arg3Mod
)
8840 D(bug("[HostGL] TASK: 0x%x, glAlphaFragmentOp3ATI", FindTask(NULL
)));
8841 GLCALL(glAlphaFragmentOp3ATI
, op
, dst
, dstMod
, arg1
, arg1Rep
, arg1Mod
, arg2
, arg2Rep
, arg2Mod
, arg3
, arg3Rep
, arg3Mod
);
8842 D(bug("...exit\n"));
8846 void glSetFragmentShaderConstantATI (GLuint dst
, const GLfloat
* value
)
8849 D(bug("[HostGL] TASK: 0x%x, glSetFragmentShaderConstantATI", FindTask(NULL
)));
8850 GLCALL(glSetFragmentShaderConstantATI
, dst
, value
);
8851 D(bug("...exit\n"));
8855 void glPointParameteriNV (GLenum pname
, GLint param
)
8858 D(bug("[HostGL] TASK: 0x%x, glPointParameteriNV", FindTask(NULL
)));
8859 GLCALL(glPointParameteriNV
, pname
, param
);
8860 D(bug("...exit\n"));
8864 void glPointParameterivNV (GLenum pname
, const GLint
* params
)
8867 D(bug("[HostGL] TASK: 0x%x, glPointParameterivNV", FindTask(NULL
)));
8868 GLCALL(glPointParameterivNV
, pname
, params
);
8869 D(bug("...exit\n"));
8873 void glDrawBuffersATI (GLsizei n
, const GLenum
* bufs
)
8876 D(bug("[HostGL] TASK: 0x%x, glDrawBuffersATI", FindTask(NULL
)));
8877 GLCALL(glDrawBuffersATI
, n
, bufs
);
8878 D(bug("...exit\n"));
8882 void glProgramNamedParameter4fNV (GLuint id
, GLsizei len
, const GLubyte
* name
, GLfloat x
, GLfloat y
, GLfloat z
, GLfloat w
)
8885 D(bug("[HostGL] TASK: 0x%x, glProgramNamedParameter4fNV", FindTask(NULL
)));
8886 GLCALL(glProgramNamedParameter4fNV
, id
, len
, name
, x
, y
, z
, w
);
8887 D(bug("...exit\n"));
8891 void glProgramNamedParameter4dNV (GLuint id
, GLsizei len
, const GLubyte
* name
, GLdouble x
, GLdouble y
, GLdouble z
, GLdouble w
)
8894 D(bug("[HostGL] TASK: 0x%x, glProgramNamedParameter4dNV", FindTask(NULL
)));
8895 GLCALL(glProgramNamedParameter4dNV
, id
, len
, name
, x
, y
, z
, w
);
8896 D(bug("...exit\n"));
8900 void glProgramNamedParameter4fvNV (GLuint id
, GLsizei len
, const GLubyte
* name
, const GLfloat
* v
)
8903 D(bug("[HostGL] TASK: 0x%x, glProgramNamedParameter4fvNV", FindTask(NULL
)));
8904 GLCALL(glProgramNamedParameter4fvNV
, id
, len
, name
, v
);
8905 D(bug("...exit\n"));
8909 void glProgramNamedParameter4dvNV (GLuint id
, GLsizei len
, const GLubyte
* name
, const GLdouble
* v
)
8912 D(bug("[HostGL] TASK: 0x%x, glProgramNamedParameter4dvNV", FindTask(NULL
)));
8913 GLCALL(glProgramNamedParameter4dvNV
, id
, len
, name
, v
);
8914 D(bug("...exit\n"));
8918 void glGetProgramNamedParameterfvNV (GLuint id
, GLsizei len
, const GLubyte
* name
, GLfloat
* params
)
8921 D(bug("[HostGL] TASK: 0x%x, glGetProgramNamedParameterfvNV", FindTask(NULL
)));
8922 GLCALL(glGetProgramNamedParameterfvNV
, id
, len
, name
, params
);
8923 D(bug("...exit\n"));
8927 void glGetProgramNamedParameterdvNV (GLuint id
, GLsizei len
, const GLubyte
* name
, GLdouble
* params
)
8930 D(bug("[HostGL] TASK: 0x%x, glGetProgramNamedParameterdvNV", FindTask(NULL
)));
8931 GLCALL(glGetProgramNamedParameterdvNV
, id
, len
, name
, params
);
8932 D(bug("...exit\n"));
8936 GLboolean
glIsRenderbufferEXT (GLuint renderbuffer
)
8940 D(bug("[HostGL] TASK: 0x%x, glIsRenderbufferEXT", FindTask(NULL
)));
8941 _ret
= GLCALL(glIsRenderbufferEXT
, renderbuffer
);
8942 D(bug("...exit\n"));
8947 void glBindRenderbufferEXT (GLenum target
, GLuint renderbuffer
)
8950 D(bug("[HostGL] TASK: 0x%x, glBindRenderbufferEXT", FindTask(NULL
)));
8951 GLCALL(glBindRenderbufferEXT
, target
, renderbuffer
);
8952 D(bug("...exit\n"));
8956 void glDeleteRenderbuffersEXT (GLsizei n
, const GLuint
* renderbuffers
)
8959 D(bug("[HostGL] TASK: 0x%x, glDeleteRenderbuffersEXT", FindTask(NULL
)));
8960 GLCALL(glDeleteRenderbuffersEXT
, n
, renderbuffers
);
8961 D(bug("...exit\n"));
8965 void glGenRenderbuffersEXT (GLsizei n
, GLuint
* renderbuffers
)
8968 D(bug("[HostGL] TASK: 0x%x, glGenRenderbuffersEXT", FindTask(NULL
)));
8969 GLCALL(glGenRenderbuffersEXT
, n
, renderbuffers
);
8970 D(bug("...exit\n"));
8974 void glRenderbufferStorageEXT (GLenum target
, GLenum internalformat
, GLsizei width
, GLsizei height
)
8977 D(bug("[HostGL] TASK: 0x%x, glRenderbufferStorageEXT", FindTask(NULL
)));
8978 GLCALL(glRenderbufferStorageEXT
, target
, internalformat
, width
, height
);
8979 D(bug("...exit\n"));
8983 void glGetRenderbufferParameterivEXT (GLenum target
, GLenum pname
, GLint
* params
)
8986 D(bug("[HostGL] TASK: 0x%x, glGetRenderbufferParameterivEXT", FindTask(NULL
)));
8987 GLCALL(glGetRenderbufferParameterivEXT
, target
, pname
, params
);
8988 D(bug("...exit\n"));
8992 GLboolean
glIsFramebufferEXT (GLuint framebuffer
)
8996 D(bug("[HostGL] TASK: 0x%x, glIsFramebufferEXT", FindTask(NULL
)));
8997 _ret
= GLCALL(glIsFramebufferEXT
, framebuffer
);
8998 D(bug("...exit\n"));
9003 void glBindFramebufferEXT (GLenum target
, GLuint framebuffer
)
9006 D(bug("[HostGL] TASK: 0x%x, glBindFramebufferEXT", FindTask(NULL
)));
9007 GLCALL(glBindFramebufferEXT
, target
, framebuffer
);
9008 D(bug("...exit\n"));
9012 void glDeleteFramebuffersEXT (GLsizei n
, const GLuint
* framebuffers
)
9015 D(bug("[HostGL] TASK: 0x%x, glDeleteFramebuffersEXT", FindTask(NULL
)));
9016 GLCALL(glDeleteFramebuffersEXT
, n
, framebuffers
);
9017 D(bug("...exit\n"));
9021 void glGenFramebuffersEXT (GLsizei n
, GLuint
* framebuffers
)
9024 D(bug("[HostGL] TASK: 0x%x, glGenFramebuffersEXT", FindTask(NULL
)));
9025 GLCALL(glGenFramebuffersEXT
, n
, framebuffers
);
9026 D(bug("...exit\n"));
9030 GLenum
glCheckFramebufferStatusEXT (GLenum target
)
9034 D(bug("[HostGL] TASK: 0x%x, glCheckFramebufferStatusEXT", FindTask(NULL
)));
9035 _ret
= GLCALL(glCheckFramebufferStatusEXT
, target
);
9036 D(bug("...exit\n"));
9041 void glFramebufferTexture1DEXT (GLenum target
, GLenum attachment
, GLenum textarget
, GLuint texture
, GLint level
)
9044 D(bug("[HostGL] TASK: 0x%x, glFramebufferTexture1DEXT", FindTask(NULL
)));
9045 GLCALL(glFramebufferTexture1DEXT
, target
, attachment
, textarget
, texture
, level
);
9046 D(bug("...exit\n"));
9050 void glFramebufferTexture2DEXT (GLenum target
, GLenum attachment
, GLenum textarget
, GLuint texture
, GLint level
)
9053 D(bug("[HostGL] TASK: 0x%x, glFramebufferTexture2DEXT", FindTask(NULL
)));
9054 GLCALL(glFramebufferTexture2DEXT
, target
, attachment
, textarget
, texture
, level
);
9055 D(bug("...exit\n"));
9059 void glFramebufferTexture3DEXT (GLenum target
, GLenum attachment
, GLenum textarget
, GLuint texture
, GLint level
, GLint zoffset
)
9062 D(bug("[HostGL] TASK: 0x%x, glFramebufferTexture3DEXT", FindTask(NULL
)));
9063 GLCALL(glFramebufferTexture3DEXT
, target
, attachment
, textarget
, texture
, level
, zoffset
);
9064 D(bug("...exit\n"));
9068 void glFramebufferRenderbufferEXT (GLenum target
, GLenum attachment
, GLenum renderbuffertarget
, GLuint renderbuffer
)
9071 D(bug("[HostGL] TASK: 0x%x, glFramebufferRenderbufferEXT", FindTask(NULL
)));
9072 GLCALL(glFramebufferRenderbufferEXT
, target
, attachment
, renderbuffertarget
, renderbuffer
);
9073 D(bug("...exit\n"));
9077 void glGetFramebufferAttachmentParameterivEXT (GLenum target
, GLenum attachment
, GLenum pname
, GLint
* params
)
9080 D(bug("[HostGL] TASK: 0x%x, glGetFramebufferAttachmentParameterivEXT", FindTask(NULL
)));
9081 GLCALL(glGetFramebufferAttachmentParameterivEXT
, target
, attachment
, pname
, params
);
9082 D(bug("...exit\n"));
9086 void glGenerateMipmapEXT (GLenum target
)
9089 D(bug("[HostGL] TASK: 0x%x, glGenerateMipmapEXT", FindTask(NULL
)));
9090 GLCALL(glGenerateMipmapEXT
, target
);
9091 D(bug("...exit\n"));
9095 void glFramebufferTextureLayerEXT (GLenum target
, GLenum attachment
, GLuint texture
, GLint level
, GLint layer
)
9098 D(bug("[HostGL] TASK: 0x%x, glFramebufferTextureLayerEXT", FindTask(NULL
)));
9099 GLCALL(glFramebufferTextureLayerEXT
, target
, attachment
, texture
, level
, layer
);
9100 D(bug("...exit\n"));
9104 GLvoid
* glMapBufferRange (GLenum target
, GLintptr offset
, GLsizeiptr length
, GLbitfield access
)
9108 D(bug("[HostGL] TASK: 0x%x, glMapBufferRange", FindTask(NULL
)));
9109 _ret
= GLCALL(glMapBufferRange
, target
, offset
, length
, access
);
9110 D(bug("...exit\n"));
9115 void glFlushMappedBufferRange (GLenum target
, GLintptr offset
, GLsizeiptr length
)
9118 D(bug("[HostGL] TASK: 0x%x, glFlushMappedBufferRange", FindTask(NULL
)));
9119 GLCALL(glFlushMappedBufferRange
, target
, offset
, length
);
9120 D(bug("...exit\n"));
9124 void glBindVertexArray (GLuint array
)
9127 D(bug("[HostGL] TASK: 0x%x, glBindVertexArray", FindTask(NULL
)));
9128 GLCALL(glBindVertexArray
, array
);
9129 D(bug("...exit\n"));
9133 void glDeleteVertexArrays (GLsizei n
, const GLuint
* arrays
)
9136 D(bug("[HostGL] TASK: 0x%x, glDeleteVertexArrays", FindTask(NULL
)));
9137 GLCALL(glDeleteVertexArrays
, n
, arrays
);
9138 D(bug("...exit\n"));
9142 void glGenVertexArrays (GLsizei n
, GLuint
* arrays
)
9145 D(bug("[HostGL] TASK: 0x%x, glGenVertexArrays", FindTask(NULL
)));
9146 GLCALL(glGenVertexArrays
, n
, arrays
);
9147 D(bug("...exit\n"));
9151 GLboolean
glIsVertexArray (GLuint array
)
9155 D(bug("[HostGL] TASK: 0x%x, glIsVertexArray", FindTask(NULL
)));
9156 _ret
= GLCALL(glIsVertexArray
, array
);
9157 D(bug("...exit\n"));
9162 void glCopyBufferSubData (GLenum readTarget
, GLenum writeTarget
, GLintptr readOffset
, GLintptr writeOffset
, GLsizeiptr size
)
9165 D(bug("[HostGL] TASK: 0x%x, glCopyBufferSubData", FindTask(NULL
)));
9166 GLCALL(glCopyBufferSubData
, readTarget
, writeTarget
, readOffset
, writeOffset
, size
);
9167 D(bug("...exit\n"));
9171 GLsync
glFenceSync (GLenum condition
, GLbitfield flags
)
9175 D(bug("[HostGL] TASK: 0x%x, glFenceSync", FindTask(NULL
)));
9176 _ret
= GLCALL(glFenceSync
, condition
, flags
);
9177 D(bug("...exit\n"));
9182 GLboolean
glIsSync (GLsync sync
)
9186 D(bug("[HostGL] TASK: 0x%x, glIsSync", FindTask(NULL
)));
9187 _ret
= GLCALL(glIsSync
, sync
);
9188 D(bug("...exit\n"));
9193 void glDeleteSync (GLsync sync
)
9196 D(bug("[HostGL] TASK: 0x%x, glDeleteSync", FindTask(NULL
)));
9197 GLCALL(glDeleteSync
, sync
);
9198 D(bug("...exit\n"));
9202 GLenum
glClientWaitSync (GLsync sync
, GLbitfield flags
, GLuint64 timeout
)
9206 D(bug("[HostGL] TASK: 0x%x, glClientWaitSync", FindTask(NULL
)));
9207 _ret
= GLCALL(glClientWaitSync
, sync
, flags
, timeout
);
9208 D(bug("...exit\n"));
9213 void glWaitSync (GLsync sync
, GLbitfield flags
, GLuint64 timeout
)
9216 D(bug("[HostGL] TASK: 0x%x, glWaitSync", FindTask(NULL
)));
9217 GLCALL(glWaitSync
, sync
, flags
, timeout
);
9218 D(bug("...exit\n"));
9222 void glGetInteger64v (GLenum pname
, GLint64
* params
)
9225 D(bug("[HostGL] TASK: 0x%x, glGetInteger64v", FindTask(NULL
)));
9226 GLCALL(glGetInteger64v
, pname
, params
);
9227 D(bug("...exit\n"));
9231 void glGetSynciv (GLsync sync
, GLenum pname
, GLsizei bufSize
, GLsizei
* length
, GLint
* values
)
9234 D(bug("[HostGL] TASK: 0x%x, glGetSynciv", FindTask(NULL
)));
9235 GLCALL(glGetSynciv
, sync
, pname
, bufSize
, length
, values
);
9236 D(bug("...exit\n"));
9240 void glProvokingVertexEXT (GLenum mode
)
9243 D(bug("[HostGL] TASK: 0x%x, glProvokingVertexEXT", FindTask(NULL
)));
9244 GLCALL(glProvokingVertexEXT
, mode
);
9245 D(bug("...exit\n"));
9249 void glDrawElementsBaseVertex (GLenum mode
, GLsizei count
, GLenum type
, const GLvoid
* indices
, GLint basevertex
)
9252 D(bug("[HostGL] TASK: 0x%x, glDrawElementsBaseVertex", FindTask(NULL
)));
9253 GLCALL(glDrawElementsBaseVertex
, mode
, count
, type
, indices
, basevertex
);
9254 D(bug("...exit\n"));
9258 void glDrawRangeElementsBaseVertex (GLenum mode
, GLuint start
, GLuint end
, GLsizei count
, GLenum type
, const GLvoid
* indices
, GLint basevertex
)
9261 D(bug("[HostGL] TASK: 0x%x, glDrawRangeElementsBaseVertex", FindTask(NULL
)));
9262 GLCALL(glDrawRangeElementsBaseVertex
, mode
, start
, end
, count
, type
, indices
, basevertex
);
9263 D(bug("...exit\n"));
9267 void glMultiDrawElementsBaseVertex (GLenum mode
, const GLsizei
* count
, GLenum type
, const GLvoid
* * indices
, GLsizei primcount
, const GLint
* basevertex
)
9270 D(bug("[HostGL] TASK: 0x%x, glMultiDrawElementsBaseVertex", FindTask(NULL
)));
9271 GLCALL(glMultiDrawElementsBaseVertex
, mode
, count
, type
, indices
, primcount
, basevertex
);
9272 D(bug("...exit\n"));
9276 void glProvokingVertex (GLenum mode
)
9279 D(bug("[HostGL] TASK: 0x%x, glProvokingVertex", FindTask(NULL
)));
9280 GLCALL(glProvokingVertex
, mode
);
9281 D(bug("...exit\n"));
9285 void glRenderbufferStorageMultisampleEXT (GLenum target
, GLsizei samples
, GLenum internalformat
, GLsizei width
, GLsizei height
)
9288 D(bug("[HostGL] TASK: 0x%x, glRenderbufferStorageMultisampleEXT", FindTask(NULL
)));
9289 GLCALL(glRenderbufferStorageMultisampleEXT
, target
, samples
, internalformat
, width
, height
);
9290 D(bug("...exit\n"));
9294 void glColorMaskIndexedEXT (GLuint index
, GLboolean r
, GLboolean g
, GLboolean b
, GLboolean a
)
9297 D(bug("[HostGL] TASK: 0x%x, glColorMaskIndexedEXT", FindTask(NULL
)));
9298 GLCALL(glColorMaskIndexedEXT
, index
, r
, g
, b
, a
);
9299 D(bug("...exit\n"));
9303 void glGetBooleanIndexedvEXT (GLenum target
, GLuint index
, GLboolean
* data
)
9306 D(bug("[HostGL] TASK: 0x%x, glGetBooleanIndexedvEXT", FindTask(NULL
)));
9307 GLCALL(glGetBooleanIndexedvEXT
, target
, index
, data
);
9308 D(bug("...exit\n"));
9312 void glGetIntegerIndexedvEXT (GLenum target
, GLuint index
, GLint
* data
)
9315 D(bug("[HostGL] TASK: 0x%x, glGetIntegerIndexedvEXT", FindTask(NULL
)));
9316 GLCALL(glGetIntegerIndexedvEXT
, target
, index
, data
);
9317 D(bug("...exit\n"));
9321 void glEnableIndexedEXT (GLenum target
, GLuint index
)
9324 D(bug("[HostGL] TASK: 0x%x, glEnableIndexedEXT", FindTask(NULL
)));
9325 GLCALL(glEnableIndexedEXT
, target
, index
);
9326 D(bug("...exit\n"));
9330 void glDisableIndexedEXT (GLenum target
, GLuint index
)
9333 D(bug("[HostGL] TASK: 0x%x, glDisableIndexedEXT", FindTask(NULL
)));
9334 GLCALL(glDisableIndexedEXT
, target
, index
);
9335 D(bug("...exit\n"));
9339 GLboolean
glIsEnabledIndexedEXT (GLenum target
, GLuint index
)
9343 D(bug("[HostGL] TASK: 0x%x, glIsEnabledIndexedEXT", FindTask(NULL
)));
9344 _ret
= GLCALL(glIsEnabledIndexedEXT
, target
, index
);
9345 D(bug("...exit\n"));
9350 void glBeginConditionalRenderNV (GLuint id
, GLenum mode
)
9353 D(bug("[HostGL] TASK: 0x%x, glBeginConditionalRenderNV", FindTask(NULL
)));
9354 GLCALL(glBeginConditionalRenderNV
, id
, mode
);
9355 D(bug("...exit\n"));
9359 void glEndConditionalRenderNV ()
9362 D(bug("[HostGL] TASK: 0x%x, glEndConditionalRenderNV", FindTask(NULL
)));
9363 GLCALL(glEndConditionalRenderNV
);
9364 D(bug("...exit\n"));
9368 GLenum
glObjectPurgeableAPPLE (GLenum objectType
, GLuint name
, GLenum option
)
9372 D(bug("[HostGL] TASK: 0x%x, glObjectPurgeableAPPLE", FindTask(NULL
)));
9373 _ret
= GLCALL(glObjectPurgeableAPPLE
, objectType
, name
, option
);
9374 D(bug("...exit\n"));
9379 GLenum
glObjectUnpurgeableAPPLE (GLenum objectType
, GLuint name
, GLenum option
)
9383 D(bug("[HostGL] TASK: 0x%x, glObjectUnpurgeableAPPLE", FindTask(NULL
)));
9384 _ret
= GLCALL(glObjectUnpurgeableAPPLE
, objectType
, name
, option
);
9385 D(bug("...exit\n"));
9390 void glGetObjectParameterivAPPLE (GLenum objectType
, GLuint name
, GLenum pname
, GLint
* params
)
9393 D(bug("[HostGL] TASK: 0x%x, glGetObjectParameterivAPPLE", FindTask(NULL
)));
9394 GLCALL(glGetObjectParameterivAPPLE
, objectType
, name
, pname
, params
);
9395 D(bug("...exit\n"));
9399 void glBeginTransformFeedback (GLenum primitiveMode
)
9402 D(bug("[HostGL] TASK: 0x%x, glBeginTransformFeedback", FindTask(NULL
)));
9403 GLCALL(glBeginTransformFeedback
, primitiveMode
);
9404 D(bug("...exit\n"));
9408 void glEndTransformFeedback ()
9411 D(bug("[HostGL] TASK: 0x%x, glEndTransformFeedback", FindTask(NULL
)));
9412 GLCALL(glEndTransformFeedback
);
9413 D(bug("...exit\n"));
9417 void glBindBufferRange (GLenum target
, GLuint index
, GLuint buffer
, GLintptr offset
, GLsizeiptr size
)
9420 D(bug("[HostGL] TASK: 0x%x, glBindBufferRange", FindTask(NULL
)));
9421 GLCALL(glBindBufferRange
, target
, index
, buffer
, offset
, size
);
9422 D(bug("...exit\n"));
9426 void glBindBufferBase (GLenum target
, GLuint index
, GLuint buffer
)
9429 D(bug("[HostGL] TASK: 0x%x, glBindBufferBase", FindTask(NULL
)));
9430 GLCALL(glBindBufferBase
, target
, index
, buffer
);
9431 D(bug("...exit\n"));
9435 void glTransformFeedbackVaryings (GLuint program
, GLsizei count
, const GLchar
* * varyings
, GLenum bufferMode
)
9438 D(bug("[HostGL] TASK: 0x%x, glTransformFeedbackVaryings", FindTask(NULL
)));
9439 GLCALL(glTransformFeedbackVaryings
, program
, count
, varyings
, bufferMode
);
9440 D(bug("...exit\n"));
9444 void glGetTransformFeedbackVarying (GLuint program
, GLuint index
, GLsizei bufSize
, GLsizei
* length
, GLsizei
* size
, GLenum
* type
, GLchar
* name
)
9447 D(bug("[HostGL] TASK: 0x%x, glGetTransformFeedbackVarying", FindTask(NULL
)));
9448 GLCALL(glGetTransformFeedbackVarying
, program
, index
, bufSize
, length
, size
, type
, name
);
9449 D(bug("...exit\n"));
9453 void glDrawArraysInstanced (GLenum mode
, GLint first
, GLsizei count
, GLsizei primcount
)
9456 D(bug("[HostGL] TASK: 0x%x, glDrawArraysInstanced", FindTask(NULL
)));
9457 GLCALL(glDrawArraysInstanced
, mode
, first
, count
, primcount
);
9458 D(bug("...exit\n"));
9462 void glDrawElementsInstanced (GLenum mode
, GLsizei count
, GLenum type
, const GLvoid
* indices
, GLsizei primcount
)
9465 D(bug("[HostGL] TASK: 0x%x, glDrawElementsInstanced", FindTask(NULL
)));
9466 GLCALL(glDrawElementsInstanced
, mode
, count
, type
, indices
, primcount
);
9467 D(bug("...exit\n"));
9471 void glDrawArraysInstancedARB (GLenum mode
, GLint first
, GLsizei count
, GLsizei primcount
)
9474 D(bug("[HostGL] TASK: 0x%x, glDrawArraysInstancedARB", FindTask(NULL
)));
9475 GLCALL(glDrawArraysInstancedARB
, mode
, first
, count
, primcount
);
9476 D(bug("...exit\n"));
9480 void glDrawElementsInstancedARB (GLenum mode
, GLsizei count
, GLenum type
, const GLvoid
* indices
, GLsizei primcount
)
9483 D(bug("[HostGL] TASK: 0x%x, glDrawElementsInstancedARB", FindTask(NULL
)));
9484 GLCALL(glDrawElementsInstancedARB
, mode
, count
, type
, indices
, primcount
);
9485 D(bug("...exit\n"));
9489 void glProgramParameteriARB (GLuint program
, GLenum pname
, GLint value
)
9492 D(bug("[HostGL] TASK: 0x%x, glProgramParameteriARB", FindTask(NULL
)));
9493 GLCALL(glProgramParameteriARB
, program
, pname
, value
);
9494 D(bug("...exit\n"));
9498 void glFramebufferTextureARB (GLenum target
, GLenum attachment
, GLuint texture
, GLint level
)
9501 D(bug("[HostGL] TASK: 0x%x, glFramebufferTextureARB", FindTask(NULL
)));
9502 GLCALL(glFramebufferTextureARB
, target
, attachment
, texture
, level
);
9503 D(bug("...exit\n"));
9507 void glFramebufferTextureFaceARB (GLenum target
, GLenum attachment
, GLuint texture
, GLint level
, GLenum face
)
9510 D(bug("[HostGL] TASK: 0x%x, glFramebufferTextureFaceARB", FindTask(NULL
)));
9511 GLCALL(glFramebufferTextureFaceARB
, target
, attachment
, texture
, level
, face
);
9512 D(bug("...exit\n"));
9516 void glBindTransformFeedback (GLenum target
, GLuint id
)
9519 D(bug("[HostGL] TASK: 0x%x, glBindTransformFeedback", FindTask(NULL
)));
9520 GLCALL(glBindTransformFeedback
, target
, id
);
9521 D(bug("...exit\n"));
9525 void glDeleteTransformFeedbacks (GLsizei n
, const GLuint
* ids
)
9528 D(bug("[HostGL] TASK: 0x%x, glDeleteTransformFeedbacks", FindTask(NULL
)));
9529 GLCALL(glDeleteTransformFeedbacks
, n
, ids
);
9530 D(bug("...exit\n"));
9534 void glGenTransformFeedbacks (GLsizei n
, GLuint
* ids
)
9537 D(bug("[HostGL] TASK: 0x%x, glGenTransformFeedbacks", FindTask(NULL
)));
9538 GLCALL(glGenTransformFeedbacks
, n
, ids
);
9539 D(bug("...exit\n"));
9543 GLboolean
glIsTransformFeedback (GLuint id
)
9547 D(bug("[HostGL] TASK: 0x%x, glIsTransformFeedback", FindTask(NULL
)));
9548 _ret
= GLCALL(glIsTransformFeedback
, id
);
9549 D(bug("...exit\n"));
9554 void glPauseTransformFeedback ()
9557 D(bug("[HostGL] TASK: 0x%x, glPauseTransformFeedback", FindTask(NULL
)));
9558 GLCALL(glPauseTransformFeedback
);
9559 D(bug("...exit\n"));
9563 void glResumeTransformFeedback ()
9566 D(bug("[HostGL] TASK: 0x%x, glResumeTransformFeedback", FindTask(NULL
)));
9567 GLCALL(glResumeTransformFeedback
);
9568 D(bug("...exit\n"));
9572 void glDrawTransformFeedback (GLenum mode
, GLuint id
)
9575 D(bug("[HostGL] TASK: 0x%x, glDrawTransformFeedback", FindTask(NULL
)));
9576 GLCALL(glDrawTransformFeedback
, mode
, id
);
9577 D(bug("...exit\n"));
9581 void glDrawArraysInstancedEXT (GLenum mode
, GLint start
, GLsizei count
, GLsizei primcount
)
9584 D(bug("[HostGL] TASK: 0x%x, glDrawArraysInstancedEXT", FindTask(NULL
)));
9585 GLCALL(glDrawArraysInstancedEXT
, mode
, start
, count
, primcount
);
9586 D(bug("...exit\n"));
9590 void glDrawElementsInstancedEXT (GLenum mode
, GLsizei count
, GLenum type
, const GLvoid
* indices
, GLsizei primcount
)
9593 D(bug("[HostGL] TASK: 0x%x, glDrawElementsInstancedEXT", FindTask(NULL
)));
9594 GLCALL(glDrawElementsInstancedEXT
, mode
, count
, type
, indices
, primcount
);
9595 D(bug("...exit\n"));
9599 void glBeginTransformFeedbackEXT (GLenum primitiveMode
)
9602 D(bug("[HostGL] TASK: 0x%x, glBeginTransformFeedbackEXT", FindTask(NULL
)));
9603 GLCALL(glBeginTransformFeedbackEXT
, primitiveMode
);
9604 D(bug("...exit\n"));
9608 void glEndTransformFeedbackEXT ()
9611 D(bug("[HostGL] TASK: 0x%x, glEndTransformFeedbackEXT", FindTask(NULL
)));
9612 GLCALL(glEndTransformFeedbackEXT
);
9613 D(bug("...exit\n"));
9617 void glBindBufferRangeEXT (GLenum target
, GLuint index
, GLuint buffer
, GLintptr offset
, GLsizeiptr size
)
9620 D(bug("[HostGL] TASK: 0x%x, glBindBufferRangeEXT", FindTask(NULL
)));
9621 GLCALL(glBindBufferRangeEXT
, target
, index
, buffer
, offset
, size
);
9622 D(bug("...exit\n"));
9626 void glBindBufferOffsetEXT (GLenum target
, GLuint index
, GLuint buffer
, GLintptr offset
)
9629 D(bug("[HostGL] TASK: 0x%x, glBindBufferOffsetEXT", FindTask(NULL
)));
9630 GLCALL(glBindBufferOffsetEXT
, target
, index
, buffer
, offset
);
9631 D(bug("...exit\n"));
9635 void glBindBufferBaseEXT (GLenum target
, GLuint index
, GLuint buffer
)
9638 D(bug("[HostGL] TASK: 0x%x, glBindBufferBaseEXT", FindTask(NULL
)));
9639 GLCALL(glBindBufferBaseEXT
, target
, index
, buffer
);
9640 D(bug("...exit\n"));
9644 void glTransformFeedbackVaryingsEXT (GLuint program
, GLsizei count
, const GLchar
* * varyings
, GLenum bufferMode
)
9647 D(bug("[HostGL] TASK: 0x%x, glTransformFeedbackVaryingsEXT", FindTask(NULL
)));
9648 GLCALL(glTransformFeedbackVaryingsEXT
, program
, count
, varyings
, bufferMode
);
9649 D(bug("...exit\n"));
9653 void glGetTransformFeedbackVaryingEXT (GLuint program
, GLuint index
, GLsizei bufSize
, GLsizei
* length
, GLsizei
* size
, GLenum
* type
, GLchar
* name
)
9656 D(bug("[HostGL] TASK: 0x%x, glGetTransformFeedbackVaryingEXT", FindTask(NULL
)));
9657 GLCALL(glGetTransformFeedbackVaryingEXT
, program
, index
, bufSize
, length
, size
, type
, name
);
9658 D(bug("...exit\n"));
9662 void glEGLImageTargetTexture2DOES (GLenum target
, GLeglImageOES image
)
9665 D(bug("[HostGL] TASK: 0x%x, glEGLImageTargetTexture2DOES", FindTask(NULL
)));
9666 GLCALL(glEGLImageTargetTexture2DOES
, target
, image
);
9667 D(bug("...exit\n"));
9671 void glEGLImageTargetRenderbufferStorageOES (GLenum target
, GLeglImageOES image
)
9674 D(bug("[HostGL] TASK: 0x%x, glEGLImageTargetRenderbufferStorageOES", FindTask(NULL
)));
9675 GLCALL(glEGLImageTargetRenderbufferStorageOES
, target
, image
);
9676 D(bug("...exit\n"));
9680 void glColorMaski (GLuint index
, GLboolean r
, GLboolean g
, GLboolean b
, GLboolean a
)
9683 D(bug("[HostGL] TASK: 0x%x, glColorMaski", FindTask(NULL
)));
9684 GLCALL(glColorMaski
, index
, r
, g
, b
, a
);
9685 D(bug("...exit\n"));
9689 void glGetBooleani_v (GLenum target
, GLuint index
, GLboolean
* data
)
9692 D(bug("[HostGL] TASK: 0x%x, glGetBooleani_v", FindTask(NULL
)));
9693 GLCALL(glGetBooleani_v
, target
, index
, data
);
9694 D(bug("...exit\n"));
9698 void glGetIntegeri_v (GLenum target
, GLuint index
, GLint
* data
)
9701 D(bug("[HostGL] TASK: 0x%x, glGetIntegeri_v", FindTask(NULL
)));
9702 GLCALL(glGetIntegeri_v
, target
, index
, data
);
9703 D(bug("...exit\n"));
9707 void glEnablei (GLenum target
, GLuint index
)
9710 D(bug("[HostGL] TASK: 0x%x, glEnablei", FindTask(NULL
)));
9711 GLCALL(glEnablei
, target
, index
);
9712 D(bug("...exit\n"));
9716 void glDisablei (GLenum target
, GLuint index
)
9719 D(bug("[HostGL] TASK: 0x%x, glDisablei", FindTask(NULL
)));
9720 GLCALL(glDisablei
, target
, index
);
9721 D(bug("...exit\n"));
9725 GLboolean
glIsEnabledi (GLenum target
, GLuint index
)
9729 D(bug("[HostGL] TASK: 0x%x, glIsEnabledi", FindTask(NULL
)));
9730 _ret
= GLCALL(glIsEnabledi
, target
, index
);
9731 D(bug("...exit\n"));
9736 void glClampColor (GLenum target
, GLenum clamp
)
9739 D(bug("[HostGL] TASK: 0x%x, glClampColor", FindTask(NULL
)));
9740 GLCALL(glClampColor
, target
, clamp
);
9741 D(bug("...exit\n"));
9745 void glBeginConditionalRender (GLuint id
, GLenum mode
)
9748 D(bug("[HostGL] TASK: 0x%x, glBeginConditionalRender", FindTask(NULL
)));
9749 GLCALL(glBeginConditionalRender
, id
, mode
);
9750 D(bug("...exit\n"));
9754 void glEndConditionalRender ()
9757 D(bug("[HostGL] TASK: 0x%x, glEndConditionalRender", FindTask(NULL
)));
9758 GLCALL(glEndConditionalRender
);
9759 D(bug("...exit\n"));
9763 void glVertexAttribIPointer (GLuint index
, GLint size
, GLenum type
, GLsizei stride
, const GLvoid
* pointer
)
9766 D(bug("[HostGL] TASK: 0x%x, glVertexAttribIPointer", FindTask(NULL
)));
9767 GLCALL(glVertexAttribIPointer
, index
, size
, type
, stride
, pointer
);
9768 D(bug("...exit\n"));
9772 void glGetVertexAttribIiv (GLuint index
, GLenum pname
, GLint
* params
)
9775 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribIiv", FindTask(NULL
)));
9776 GLCALL(glGetVertexAttribIiv
, index
, pname
, params
);
9777 D(bug("...exit\n"));
9781 void glGetVertexAttribIuiv (GLuint index
, GLenum pname
, GLuint
* params
)
9784 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribIuiv", FindTask(NULL
)));
9785 GLCALL(glGetVertexAttribIuiv
, index
, pname
, params
);
9786 D(bug("...exit\n"));
9790 void glVertexAttribI1i (GLuint index
, GLint x
)
9793 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI1i", FindTask(NULL
)));
9794 GLCALL(glVertexAttribI1i
, index
, x
);
9795 D(bug("...exit\n"));
9799 void glVertexAttribI2i (GLuint index
, GLint x
, GLint y
)
9802 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI2i", FindTask(NULL
)));
9803 GLCALL(glVertexAttribI2i
, index
, x
, y
);
9804 D(bug("...exit\n"));
9808 void glVertexAttribI3i (GLuint index
, GLint x
, GLint y
, GLint z
)
9811 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI3i", FindTask(NULL
)));
9812 GLCALL(glVertexAttribI3i
, index
, x
, y
, z
);
9813 D(bug("...exit\n"));
9817 void glVertexAttribI4i (GLuint index
, GLint x
, GLint y
, GLint z
, GLint w
)
9820 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4i", FindTask(NULL
)));
9821 GLCALL(glVertexAttribI4i
, index
, x
, y
, z
, w
);
9822 D(bug("...exit\n"));
9826 void glVertexAttribI1ui (GLuint index
, GLuint x
)
9829 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI1ui", FindTask(NULL
)));
9830 GLCALL(glVertexAttribI1ui
, index
, x
);
9831 D(bug("...exit\n"));
9835 void glVertexAttribI2ui (GLuint index
, GLuint x
, GLuint y
)
9838 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI2ui", FindTask(NULL
)));
9839 GLCALL(glVertexAttribI2ui
, index
, x
, y
);
9840 D(bug("...exit\n"));
9844 void glVertexAttribI3ui (GLuint index
, GLuint x
, GLuint y
, GLuint z
)
9847 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI3ui", FindTask(NULL
)));
9848 GLCALL(glVertexAttribI3ui
, index
, x
, y
, z
);
9849 D(bug("...exit\n"));
9853 void glVertexAttribI4ui (GLuint index
, GLuint x
, GLuint y
, GLuint z
, GLuint w
)
9856 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4ui", FindTask(NULL
)));
9857 GLCALL(glVertexAttribI4ui
, index
, x
, y
, z
, w
);
9858 D(bug("...exit\n"));
9862 void glVertexAttribI1iv (GLuint index
, const GLint
* v
)
9865 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI1iv", FindTask(NULL
)));
9866 GLCALL(glVertexAttribI1iv
, index
, v
);
9867 D(bug("...exit\n"));
9871 void glVertexAttribI2iv (GLuint index
, const GLint
* v
)
9874 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI2iv", FindTask(NULL
)));
9875 GLCALL(glVertexAttribI2iv
, index
, v
);
9876 D(bug("...exit\n"));
9880 void glVertexAttribI3iv (GLuint index
, const GLint
* v
)
9883 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI3iv", FindTask(NULL
)));
9884 GLCALL(glVertexAttribI3iv
, index
, v
);
9885 D(bug("...exit\n"));
9889 void glVertexAttribI4iv (GLuint index
, const GLint
* v
)
9892 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4iv", FindTask(NULL
)));
9893 GLCALL(glVertexAttribI4iv
, index
, v
);
9894 D(bug("...exit\n"));
9898 void glVertexAttribI1uiv (GLuint index
, const GLuint
* v
)
9901 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI1uiv", FindTask(NULL
)));
9902 GLCALL(glVertexAttribI1uiv
, index
, v
);
9903 D(bug("...exit\n"));
9907 void glVertexAttribI2uiv (GLuint index
, const GLuint
* v
)
9910 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI2uiv", FindTask(NULL
)));
9911 GLCALL(glVertexAttribI2uiv
, index
, v
);
9912 D(bug("...exit\n"));
9916 void glVertexAttribI3uiv (GLuint index
, const GLuint
* v
)
9919 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI3uiv", FindTask(NULL
)));
9920 GLCALL(glVertexAttribI3uiv
, index
, v
);
9921 D(bug("...exit\n"));
9925 void glVertexAttribI4uiv (GLuint index
, const GLuint
* v
)
9928 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4uiv", FindTask(NULL
)));
9929 GLCALL(glVertexAttribI4uiv
, index
, v
);
9930 D(bug("...exit\n"));
9934 void glVertexAttribI4bv (GLuint index
, const GLbyte
* v
)
9937 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4bv", FindTask(NULL
)));
9938 GLCALL(glVertexAttribI4bv
, index
, v
);
9939 D(bug("...exit\n"));
9943 void glVertexAttribI4sv (GLuint index
, const GLshort
* v
)
9946 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4sv", FindTask(NULL
)));
9947 GLCALL(glVertexAttribI4sv
, index
, v
);
9948 D(bug("...exit\n"));
9952 void glVertexAttribI4ubv (GLuint index
, const GLubyte
* v
)
9955 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4ubv", FindTask(NULL
)));
9956 GLCALL(glVertexAttribI4ubv
, index
, v
);
9957 D(bug("...exit\n"));
9961 void glVertexAttribI4usv (GLuint index
, const GLushort
* v
)
9964 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4usv", FindTask(NULL
)));
9965 GLCALL(glVertexAttribI4usv
, index
, v
);
9966 D(bug("...exit\n"));
9970 void glGetUniformuiv (GLuint program
, GLint location
, GLuint
* params
)
9973 D(bug("[HostGL] TASK: 0x%x, glGetUniformuiv", FindTask(NULL
)));
9974 GLCALL(glGetUniformuiv
, program
, location
, params
);
9975 D(bug("...exit\n"));
9979 void glBindFragDataLocation (GLuint program
, GLuint color
, const GLchar
* name
)
9982 D(bug("[HostGL] TASK: 0x%x, glBindFragDataLocation", FindTask(NULL
)));
9983 GLCALL(glBindFragDataLocation
, program
, color
, name
);
9984 D(bug("...exit\n"));
9988 GLint
glGetFragDataLocation (GLuint program
, const GLchar
* name
)
9992 D(bug("[HostGL] TASK: 0x%x, glGetFragDataLocation", FindTask(NULL
)));
9993 _ret
= GLCALL(glGetFragDataLocation
, program
, name
);
9994 D(bug("...exit\n"));
9999 void glUniform1ui (GLint location
, GLuint v0
)
10002 D(bug("[HostGL] TASK: 0x%x, glUniform1ui", FindTask(NULL
)));
10003 GLCALL(glUniform1ui
, location
, v0
);
10004 D(bug("...exit\n"));
10008 void glUniform2ui (GLint location
, GLuint v0
, GLuint v1
)
10011 D(bug("[HostGL] TASK: 0x%x, glUniform2ui", FindTask(NULL
)));
10012 GLCALL(glUniform2ui
, location
, v0
, v1
);
10013 D(bug("...exit\n"));
10017 void glUniform3ui (GLint location
, GLuint v0
, GLuint v1
, GLuint v2
)
10020 D(bug("[HostGL] TASK: 0x%x, glUniform3ui", FindTask(NULL
)));
10021 GLCALL(glUniform3ui
, location
, v0
, v1
, v2
);
10022 D(bug("...exit\n"));
10026 void glUniform4ui (GLint location
, GLuint v0
, GLuint v1
, GLuint v2
, GLuint v3
)
10029 D(bug("[HostGL] TASK: 0x%x, glUniform4ui", FindTask(NULL
)));
10030 GLCALL(glUniform4ui
, location
, v0
, v1
, v2
, v3
);
10031 D(bug("...exit\n"));
10035 void glUniform1uiv (GLint location
, GLsizei count
, const GLuint
* value
)
10038 D(bug("[HostGL] TASK: 0x%x, glUniform1uiv", FindTask(NULL
)));
10039 GLCALL(glUniform1uiv
, location
, count
, value
);
10040 D(bug("...exit\n"));
10044 void glUniform2uiv (GLint location
, GLsizei count
, const GLuint
* value
)
10047 D(bug("[HostGL] TASK: 0x%x, glUniform2uiv", FindTask(NULL
)));
10048 GLCALL(glUniform2uiv
, location
, count
, value
);
10049 D(bug("...exit\n"));
10053 void glUniform3uiv (GLint location
, GLsizei count
, const GLuint
* value
)
10056 D(bug("[HostGL] TASK: 0x%x, glUniform3uiv", FindTask(NULL
)));
10057 GLCALL(glUniform3uiv
, location
, count
, value
);
10058 D(bug("...exit\n"));
10062 void glUniform4uiv (GLint location
, GLsizei count
, const GLuint
* value
)
10065 D(bug("[HostGL] TASK: 0x%x, glUniform4uiv", FindTask(NULL
)));
10066 GLCALL(glUniform4uiv
, location
, count
, value
);
10067 D(bug("...exit\n"));
10071 void glTexParameterIiv (GLenum target
, GLenum pname
, const GLint
* params
)
10074 D(bug("[HostGL] TASK: 0x%x, glTexParameterIiv", FindTask(NULL
)));
10075 GLCALL(glTexParameterIiv
, target
, pname
, params
);
10076 D(bug("...exit\n"));
10080 void glTexParameterIuiv (GLenum target
, GLenum pname
, const GLuint
* params
)
10083 D(bug("[HostGL] TASK: 0x%x, glTexParameterIuiv", FindTask(NULL
)));
10084 GLCALL(glTexParameterIuiv
, target
, pname
, params
);
10085 D(bug("...exit\n"));
10089 void glGetTexParameterIiv (GLenum target
, GLenum pname
, GLint
* params
)
10092 D(bug("[HostGL] TASK: 0x%x, glGetTexParameterIiv", FindTask(NULL
)));
10093 GLCALL(glGetTexParameterIiv
, target
, pname
, params
);
10094 D(bug("...exit\n"));
10098 void glGetTexParameterIuiv (GLenum target
, GLenum pname
, GLuint
* params
)
10101 D(bug("[HostGL] TASK: 0x%x, glGetTexParameterIuiv", FindTask(NULL
)));
10102 GLCALL(glGetTexParameterIuiv
, target
, pname
, params
);
10103 D(bug("...exit\n"));
10107 void glClearBufferiv (GLenum buffer
, GLint drawbuffer
, const GLint
* value
)
10110 D(bug("[HostGL] TASK: 0x%x, glClearBufferiv", FindTask(NULL
)));
10111 GLCALL(glClearBufferiv
, buffer
, drawbuffer
, value
);
10112 D(bug("...exit\n"));
10116 void glClearBufferuiv (GLenum buffer
, GLint drawbuffer
, const GLuint
* value
)
10119 D(bug("[HostGL] TASK: 0x%x, glClearBufferuiv", FindTask(NULL
)));
10120 GLCALL(glClearBufferuiv
, buffer
, drawbuffer
, value
);
10121 D(bug("...exit\n"));
10125 void glClearBufferfv (GLenum buffer
, GLint drawbuffer
, const GLfloat
* value
)
10128 D(bug("[HostGL] TASK: 0x%x, glClearBufferfv", FindTask(NULL
)));
10129 GLCALL(glClearBufferfv
, buffer
, drawbuffer
, value
);
10130 D(bug("...exit\n"));
10134 void glClearBufferfi (GLenum buffer
, GLint drawbuffer
, GLfloat depth
, GLint stencil
)
10137 D(bug("[HostGL] TASK: 0x%x, glClearBufferfi", FindTask(NULL
)));
10138 GLCALL(glClearBufferfi
, buffer
, drawbuffer
, depth
, stencil
);
10139 D(bug("...exit\n"));
10143 const GLubyte
* glGetStringi (GLenum name
, GLuint index
)
10145 const GLubyte
* _ret
;
10147 D(bug("[HostGL] TASK: 0x%x, glGetStringi", FindTask(NULL
)));
10148 _ret
= GLCALL(glGetStringi
, name
, index
);
10149 D(bug("...exit\n"));
10154 void glTexBuffer (GLenum target
, GLenum internalformat
, GLuint buffer
)
10157 D(bug("[HostGL] TASK: 0x%x, glTexBuffer", FindTask(NULL
)));
10158 GLCALL(glTexBuffer
, target
, internalformat
, buffer
);
10159 D(bug("...exit\n"));
10163 void glPrimitiveRestartIndex (GLuint index
)
10166 D(bug("[HostGL] TASK: 0x%x, glPrimitiveRestartIndex", FindTask(NULL
)));
10167 GLCALL(glPrimitiveRestartIndex
, index
);
10168 D(bug("...exit\n"));
10172 void glGetInteger64i_v (GLenum target
, GLuint index
, GLint64
* data
)
10175 D(bug("[HostGL] TASK: 0x%x, glGetInteger64i_v", FindTask(NULL
)));
10176 GLCALL(glGetInteger64i_v
, target
, index
, data
);
10177 D(bug("...exit\n"));
10181 void glGetBufferParameteri64v (GLenum target
, GLenum pname
, GLint64
* params
)
10184 D(bug("[HostGL] TASK: 0x%x, glGetBufferParameteri64v", FindTask(NULL
)));
10185 GLCALL(glGetBufferParameteri64v
, target
, pname
, params
);
10186 D(bug("...exit\n"));
10190 void glFramebufferTexture (GLenum target
, GLenum attachment
, GLuint texture
, GLint level
)
10193 D(bug("[HostGL] TASK: 0x%x, glFramebufferTexture", FindTask(NULL
)));
10194 GLCALL(glFramebufferTexture
, target
, attachment
, texture
, level
);
10195 D(bug("...exit\n"));
10199 void glVertexAttribDivisor (GLuint index
, GLuint divisor
)
10202 D(bug("[HostGL] TASK: 0x%x, glVertexAttribDivisor", FindTask(NULL
)));
10203 GLCALL(glVertexAttribDivisor
, index
, divisor
);
10204 D(bug("...exit\n"));
10208 void glPrimitiveRestartNV ()
10211 D(bug("[HostGL] TASK: 0x%x, glPrimitiveRestartNV", FindTask(NULL
)));
10212 GLCALL(glPrimitiveRestartNV
);
10213 D(bug("...exit\n"));
10217 void glPrimitiveRestartIndexNV (GLuint index
)
10220 D(bug("[HostGL] TASK: 0x%x, glPrimitiveRestartIndexNV", FindTask(NULL
)));
10221 GLCALL(glPrimitiveRestartIndexNV
, index
);
10222 D(bug("...exit\n"));
10226 void glVertexAttribI1iEXT (GLuint index
, GLint x
)
10229 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI1iEXT", FindTask(NULL
)));
10230 GLCALL(glVertexAttribI1iEXT
, index
, x
);
10231 D(bug("...exit\n"));
10235 void glVertexAttribI2iEXT (GLuint index
, GLint x
, GLint y
)
10238 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI2iEXT", FindTask(NULL
)));
10239 GLCALL(glVertexAttribI2iEXT
, index
, x
, y
);
10240 D(bug("...exit\n"));
10244 void glVertexAttribI3iEXT (GLuint index
, GLint x
, GLint y
, GLint z
)
10247 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI3iEXT", FindTask(NULL
)));
10248 GLCALL(glVertexAttribI3iEXT
, index
, x
, y
, z
);
10249 D(bug("...exit\n"));
10253 void glVertexAttribI4iEXT (GLuint index
, GLint x
, GLint y
, GLint z
, GLint w
)
10256 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4iEXT", FindTask(NULL
)));
10257 GLCALL(glVertexAttribI4iEXT
, index
, x
, y
, z
, w
);
10258 D(bug("...exit\n"));
10262 void glVertexAttribI1uiEXT (GLuint index
, GLuint x
)
10265 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI1uiEXT", FindTask(NULL
)));
10266 GLCALL(glVertexAttribI1uiEXT
, index
, x
);
10267 D(bug("...exit\n"));
10271 void glVertexAttribI2uiEXT (GLuint index
, GLuint x
, GLuint y
)
10274 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI2uiEXT", FindTask(NULL
)));
10275 GLCALL(glVertexAttribI2uiEXT
, index
, x
, y
);
10276 D(bug("...exit\n"));
10280 void glVertexAttribI3uiEXT (GLuint index
, GLuint x
, GLuint y
, GLuint z
)
10283 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI3uiEXT", FindTask(NULL
)));
10284 GLCALL(glVertexAttribI3uiEXT
, index
, x
, y
, z
);
10285 D(bug("...exit\n"));
10289 void glVertexAttribI4uiEXT (GLuint index
, GLuint x
, GLuint y
, GLuint z
, GLuint w
)
10292 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4uiEXT", FindTask(NULL
)));
10293 GLCALL(glVertexAttribI4uiEXT
, index
, x
, y
, z
, w
);
10294 D(bug("...exit\n"));
10298 void glVertexAttribI1ivEXT (GLuint index
, const GLint
* v
)
10301 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI1ivEXT", FindTask(NULL
)));
10302 GLCALL(glVertexAttribI1ivEXT
, index
, v
);
10303 D(bug("...exit\n"));
10307 void glVertexAttribI2ivEXT (GLuint index
, const GLint
* v
)
10310 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI2ivEXT", FindTask(NULL
)));
10311 GLCALL(glVertexAttribI2ivEXT
, index
, v
);
10312 D(bug("...exit\n"));
10316 void glVertexAttribI3ivEXT (GLuint index
, const GLint
* v
)
10319 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI3ivEXT", FindTask(NULL
)));
10320 GLCALL(glVertexAttribI3ivEXT
, index
, v
);
10321 D(bug("...exit\n"));
10325 void glVertexAttribI4ivEXT (GLuint index
, const GLint
* v
)
10328 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4ivEXT", FindTask(NULL
)));
10329 GLCALL(glVertexAttribI4ivEXT
, index
, v
);
10330 D(bug("...exit\n"));
10334 void glVertexAttribI1uivEXT (GLuint index
, const GLuint
* v
)
10337 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI1uivEXT", FindTask(NULL
)));
10338 GLCALL(glVertexAttribI1uivEXT
, index
, v
);
10339 D(bug("...exit\n"));
10343 void glVertexAttribI2uivEXT (GLuint index
, const GLuint
* v
)
10346 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI2uivEXT", FindTask(NULL
)));
10347 GLCALL(glVertexAttribI2uivEXT
, index
, v
);
10348 D(bug("...exit\n"));
10352 void glVertexAttribI3uivEXT (GLuint index
, const GLuint
* v
)
10355 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI3uivEXT", FindTask(NULL
)));
10356 GLCALL(glVertexAttribI3uivEXT
, index
, v
);
10357 D(bug("...exit\n"));
10361 void glVertexAttribI4uivEXT (GLuint index
, const GLuint
* v
)
10364 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4uivEXT", FindTask(NULL
)));
10365 GLCALL(glVertexAttribI4uivEXT
, index
, v
);
10366 D(bug("...exit\n"));
10370 void glVertexAttribI4bvEXT (GLuint index
, const GLbyte
* v
)
10373 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4bvEXT", FindTask(NULL
)));
10374 GLCALL(glVertexAttribI4bvEXT
, index
, v
);
10375 D(bug("...exit\n"));
10379 void glVertexAttribI4svEXT (GLuint index
, const GLshort
* v
)
10382 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4svEXT", FindTask(NULL
)));
10383 GLCALL(glVertexAttribI4svEXT
, index
, v
);
10384 D(bug("...exit\n"));
10388 void glVertexAttribI4ubvEXT (GLuint index
, const GLubyte
* v
)
10391 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4ubvEXT", FindTask(NULL
)));
10392 GLCALL(glVertexAttribI4ubvEXT
, index
, v
);
10393 D(bug("...exit\n"));
10397 void glVertexAttribI4usvEXT (GLuint index
, const GLushort
* v
)
10400 D(bug("[HostGL] TASK: 0x%x, glVertexAttribI4usvEXT", FindTask(NULL
)));
10401 GLCALL(glVertexAttribI4usvEXT
, index
, v
);
10402 D(bug("...exit\n"));
10406 void glVertexAttribIPointerEXT (GLuint index
, GLint size
, GLenum type
, GLsizei stride
, const GLvoid
* pointer
)
10409 D(bug("[HostGL] TASK: 0x%x, glVertexAttribIPointerEXT", FindTask(NULL
)));
10410 GLCALL(glVertexAttribIPointerEXT
, index
, size
, type
, stride
, pointer
);
10411 D(bug("...exit\n"));
10415 void glGetVertexAttribIivEXT (GLuint index
, GLenum pname
, GLint
* params
)
10418 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribIivEXT", FindTask(NULL
)));
10419 GLCALL(glGetVertexAttribIivEXT
, index
, pname
, params
);
10420 D(bug("...exit\n"));
10424 void glGetVertexAttribIuivEXT (GLuint index
, GLenum pname
, GLuint
* params
)
10427 D(bug("[HostGL] TASK: 0x%x, glGetVertexAttribIuivEXT", FindTask(NULL
)));
10428 GLCALL(glGetVertexAttribIuivEXT
, index
, pname
, params
);
10429 D(bug("...exit\n"));
10433 void glGetUniformuivEXT (GLuint program
, GLint location
, GLuint
* params
)
10436 D(bug("[HostGL] TASK: 0x%x, glGetUniformuivEXT", FindTask(NULL
)));
10437 GLCALL(glGetUniformuivEXT
, program
, location
, params
);
10438 D(bug("...exit\n"));
10442 void glBindFragDataLocationEXT (GLuint program
, GLuint color
, const GLchar
* name
)
10445 D(bug("[HostGL] TASK: 0x%x, glBindFragDataLocationEXT", FindTask(NULL
)));
10446 GLCALL(glBindFragDataLocationEXT
, program
, color
, name
);
10447 D(bug("...exit\n"));
10451 GLint
glGetFragDataLocationEXT (GLuint program
, const GLchar
* name
)
10455 D(bug("[HostGL] TASK: 0x%x, glGetFragDataLocationEXT", FindTask(NULL
)));
10456 _ret
= GLCALL(glGetFragDataLocationEXT
, program
, name
);
10457 D(bug("...exit\n"));
10462 void glUniform1uiEXT (GLint location
, GLuint v0
)
10465 D(bug("[HostGL] TASK: 0x%x, glUniform1uiEXT", FindTask(NULL
)));
10466 GLCALL(glUniform1uiEXT
, location
, v0
);
10467 D(bug("...exit\n"));
10471 void glUniform2uiEXT (GLint location
, GLuint v0
, GLuint v1
)
10474 D(bug("[HostGL] TASK: 0x%x, glUniform2uiEXT", FindTask(NULL
)));
10475 GLCALL(glUniform2uiEXT
, location
, v0
, v1
);
10476 D(bug("...exit\n"));
10480 void glUniform3uiEXT (GLint location
, GLuint v0
, GLuint v1
, GLuint v2
)
10483 D(bug("[HostGL] TASK: 0x%x, glUniform3uiEXT", FindTask(NULL
)));
10484 GLCALL(glUniform3uiEXT
, location
, v0
, v1
, v2
);
10485 D(bug("...exit\n"));
10489 void glUniform4uiEXT (GLint location
, GLuint v0
, GLuint v1
, GLuint v2
, GLuint v3
)
10492 D(bug("[HostGL] TASK: 0x%x, glUniform4uiEXT", FindTask(NULL
)));
10493 GLCALL(glUniform4uiEXT
, location
, v0
, v1
, v2
, v3
);
10494 D(bug("...exit\n"));
10498 void glUniform1uivEXT (GLint location
, GLsizei count
, const GLuint
* value
)
10501 D(bug("[HostGL] TASK: 0x%x, glUniform1uivEXT", FindTask(NULL
)));
10502 GLCALL(glUniform1uivEXT
, location
, count
, value
);
10503 D(bug("...exit\n"));
10507 void glUniform2uivEXT (GLint location
, GLsizei count
, const GLuint
* value
)
10510 D(bug("[HostGL] TASK: 0x%x, glUniform2uivEXT", FindTask(NULL
)));
10511 GLCALL(glUniform2uivEXT
, location
, count
, value
);
10512 D(bug("...exit\n"));
10516 void glUniform3uivEXT (GLint location
, GLsizei count
, const GLuint
* value
)
10519 D(bug("[HostGL] TASK: 0x%x, glUniform3uivEXT", FindTask(NULL
)));
10520 GLCALL(glUniform3uivEXT
, location
, count
, value
);
10521 D(bug("...exit\n"));
10525 void glUniform4uivEXT (GLint location
, GLsizei count
, const GLuint
* value
)
10528 D(bug("[HostGL] TASK: 0x%x, glUniform4uivEXT", FindTask(NULL
)));
10529 GLCALL(glUniform4uivEXT
, location
, count
, value
);
10530 D(bug("...exit\n"));
10534 void glTexParameterIivEXT (GLenum target
, GLenum pname
, const GLint
* params
)
10537 D(bug("[HostGL] TASK: 0x%x, glTexParameterIivEXT", FindTask(NULL
)));
10538 GLCALL(glTexParameterIivEXT
, target
, pname
, params
);
10539 D(bug("...exit\n"));
10543 void glTexParameterIuivEXT (GLenum target
, GLenum pname
, const GLuint
* params
)
10546 D(bug("[HostGL] TASK: 0x%x, glTexParameterIuivEXT", FindTask(NULL
)));
10547 GLCALL(glTexParameterIuivEXT
, target
, pname
, params
);
10548 D(bug("...exit\n"));
10552 void glGetTexParameterIivEXT (GLenum target
, GLenum pname
, GLint
* params
)
10555 D(bug("[HostGL] TASK: 0x%x, glGetTexParameterIivEXT", FindTask(NULL
)));
10556 GLCALL(glGetTexParameterIivEXT
, target
, pname
, params
);
10557 D(bug("...exit\n"));
10561 void glGetTexParameterIuivEXT (GLenum target
, GLenum pname
, GLuint
* params
)
10564 D(bug("[HostGL] TASK: 0x%x, glGetTexParameterIuivEXT", FindTask(NULL
)));
10565 GLCALL(glGetTexParameterIuivEXT
, target
, pname
, params
);
10566 D(bug("...exit\n"));
10570 void glClearColorIiEXT (GLint red
, GLint green
, GLint blue
, GLint alpha
)
10573 D(bug("[HostGL] TASK: 0x%x, glClearColorIiEXT", FindTask(NULL
)));
10574 GLCALL(glClearColorIiEXT
, red
, green
, blue
, alpha
);
10575 D(bug("...exit\n"));
10579 void glClearColorIuiEXT (GLuint red
, GLuint green
, GLuint blue
, GLuint alpha
)
10582 D(bug("[HostGL] TASK: 0x%x, glClearColorIuiEXT", FindTask(NULL
)));
10583 GLCALL(glClearColorIuiEXT
, red
, green
, blue
, alpha
);
10584 D(bug("...exit\n"));
10588 void glUseShaderProgramEXT (GLenum type
, GLuint program
)
10591 D(bug("[HostGL] TASK: 0x%x, glUseShaderProgramEXT", FindTask(NULL
)));
10592 GLCALL(glUseShaderProgramEXT
, type
, program
);
10593 D(bug("...exit\n"));
10597 void glActiveProgramEXT (GLuint program
)
10600 D(bug("[HostGL] TASK: 0x%x, glActiveProgramEXT", FindTask(NULL
)));
10601 GLCALL(glActiveProgramEXT
, program
);
10602 D(bug("...exit\n"));
10606 GLuint
glCreateShaderProgramEXT (GLenum type
, const GLchar
* string
)
10610 D(bug("[HostGL] TASK: 0x%x, glCreateShaderProgramEXT", FindTask(NULL
)));
10611 _ret
= GLCALL(glCreateShaderProgramEXT
, type
, string
);
10612 D(bug("...exit\n"));
10617 void glProgramEnvParameters4fvEXT (GLenum target
, GLuint index
, GLsizei count
, const GLfloat
* params
)
10620 D(bug("[HostGL] TASK: 0x%x, glProgramEnvParameters4fvEXT", FindTask(NULL
)));
10621 GLCALL(glProgramEnvParameters4fvEXT
, target
, index
, count
, params
);
10622 D(bug("...exit\n"));
10626 void glProgramLocalParameters4fvEXT (GLenum target
, GLuint index
, GLsizei count
, const GLfloat
* params
)
10629 D(bug("[HostGL] TASK: 0x%x, glProgramLocalParameters4fvEXT", FindTask(NULL
)));
10630 GLCALL(glProgramLocalParameters4fvEXT
, target
, index
, count
, params
);
10631 D(bug("...exit\n"));
10635 void glBlendEquationSeparateATI (GLenum modeRGB
, GLenum modeA
)
10638 D(bug("[HostGL] TASK: 0x%x, glBlendEquationSeparateATI", FindTask(NULL
)));
10639 GLCALL(glBlendEquationSeparateATI
, modeRGB
, modeA
);
10640 D(bug("...exit\n"));
10644 void glGetHistogramEXT (GLenum target
, GLboolean reset
, GLenum format
, GLenum type
, GLvoid
* values
)
10647 D(bug("[HostGL] TASK: 0x%x, glGetHistogramEXT", FindTask(NULL
)));
10648 GLCALL(glGetHistogramEXT
, target
, reset
, format
, type
, values
);
10649 D(bug("...exit\n"));
10653 void glGetHistogramParameterfvEXT (GLenum target
, GLenum pname
, GLfloat
* params
)
10656 D(bug("[HostGL] TASK: 0x%x, glGetHistogramParameterfvEXT", FindTask(NULL
)));
10657 GLCALL(glGetHistogramParameterfvEXT
, target
, pname
, params
);
10658 D(bug("...exit\n"));
10662 void glGetHistogramParameterivEXT (GLenum target
, GLenum pname
, GLint
* params
)
10665 D(bug("[HostGL] TASK: 0x%x, glGetHistogramParameterivEXT", FindTask(NULL
)));
10666 GLCALL(glGetHistogramParameterivEXT
, target
, pname
, params
);
10667 D(bug("...exit\n"));
10671 void glGetMinmaxEXT (GLenum target
, GLboolean reset
, GLenum format
, GLenum type
, GLvoid
* values
)
10674 D(bug("[HostGL] TASK: 0x%x, glGetMinmaxEXT", FindTask(NULL
)));
10675 GLCALL(glGetMinmaxEXT
, target
, reset
, format
, type
, values
);
10676 D(bug("...exit\n"));
10680 void glGetMinmaxParameterfvEXT (GLenum target
, GLenum pname
, GLfloat
* params
)
10683 D(bug("[HostGL] TASK: 0x%x, glGetMinmaxParameterfvEXT", FindTask(NULL
)));
10684 GLCALL(glGetMinmaxParameterfvEXT
, target
, pname
, params
);
10685 D(bug("...exit\n"));
10689 void glGetMinmaxParameterivEXT (GLenum target
, GLenum pname
, GLint
* params
)
10692 D(bug("[HostGL] TASK: 0x%x, glGetMinmaxParameterivEXT", FindTask(NULL
)));
10693 GLCALL(glGetMinmaxParameterivEXT
, target
, pname
, params
);
10694 D(bug("...exit\n"));
10698 void glHistogramEXT (GLenum target
, GLsizei width
, GLenum internalformat
, GLboolean sink
)
10701 D(bug("[HostGL] TASK: 0x%x, glHistogramEXT", FindTask(NULL
)));
10702 GLCALL(glHistogramEXT
, target
, width
, internalformat
, sink
);
10703 D(bug("...exit\n"));
10707 void glMinmaxEXT (GLenum target
, GLenum internalformat
, GLboolean sink
)
10710 D(bug("[HostGL] TASK: 0x%x, glMinmaxEXT", FindTask(NULL
)));
10711 GLCALL(glMinmaxEXT
, target
, internalformat
, sink
);
10712 D(bug("...exit\n"));
10716 void glResetHistogramEXT (GLenum target
)
10719 D(bug("[HostGL] TASK: 0x%x, glResetHistogramEXT", FindTask(NULL
)));
10720 GLCALL(glResetHistogramEXT
, target
);
10721 D(bug("...exit\n"));
10725 void glResetMinmaxEXT (GLenum target
)
10728 D(bug("[HostGL] TASK: 0x%x, glResetMinmaxEXT", FindTask(NULL
)));
10729 GLCALL(glResetMinmaxEXT
, target
);
10730 D(bug("...exit\n"));
10734 void glConvolutionFilter1DEXT (GLenum target
, GLenum internalformat
, GLsizei width
, GLenum format
, GLenum type
, const GLvoid
* image
)
10737 D(bug("[HostGL] TASK: 0x%x, glConvolutionFilter1DEXT", FindTask(NULL
)));
10738 GLCALL(glConvolutionFilter1DEXT
, target
, internalformat
, width
, format
, type
, image
);
10739 D(bug("...exit\n"));
10743 void glConvolutionFilter2DEXT (GLenum target
, GLenum internalformat
, GLsizei width
, GLsizei height
, GLenum format
, GLenum type
, const GLvoid
* image
)
10746 D(bug("[HostGL] TASK: 0x%x, glConvolutionFilter2DEXT", FindTask(NULL
)));
10747 GLCALL(glConvolutionFilter2DEXT
, target
, internalformat
, width
, height
, format
, type
, image
);
10748 D(bug("...exit\n"));
10752 void glConvolutionParameterfEXT (GLenum target
, GLenum pname
, GLfloat params
)
10755 D(bug("[HostGL] TASK: 0x%x, glConvolutionParameterfEXT", FindTask(NULL
)));
10756 GLCALL(glConvolutionParameterfEXT
, target
, pname
, params
);
10757 D(bug("...exit\n"));
10761 void glConvolutionParameterfvEXT (GLenum target
, GLenum pname
, const GLfloat
* params
)
10764 D(bug("[HostGL] TASK: 0x%x, glConvolutionParameterfvEXT", FindTask(NULL
)));
10765 GLCALL(glConvolutionParameterfvEXT
, target
, pname
, params
);
10766 D(bug("...exit\n"));
10770 void glConvolutionParameteriEXT (GLenum target
, GLenum pname
, GLint params
)
10773 D(bug("[HostGL] TASK: 0x%x, glConvolutionParameteriEXT", FindTask(NULL
)));
10774 GLCALL(glConvolutionParameteriEXT
, target
, pname
, params
);
10775 D(bug("...exit\n"));
10779 void glConvolutionParameterivEXT (GLenum target
, GLenum pname
, const GLint
* params
)
10782 D(bug("[HostGL] TASK: 0x%x, glConvolutionParameterivEXT", FindTask(NULL
)));
10783 GLCALL(glConvolutionParameterivEXT
, target
, pname
, params
);
10784 D(bug("...exit\n"));
10788 void glCopyConvolutionFilter1DEXT (GLenum target
, GLenum internalformat
, GLint x
, GLint y
, GLsizei width
)
10791 D(bug("[HostGL] TASK: 0x%x, glCopyConvolutionFilter1DEXT", FindTask(NULL
)));
10792 GLCALL(glCopyConvolutionFilter1DEXT
, target
, internalformat
, x
, y
, width
);
10793 D(bug("...exit\n"));
10797 void glCopyConvolutionFilter2DEXT (GLenum target
, GLenum internalformat
, GLint x
, GLint y
, GLsizei width
, GLsizei height
)
10800 D(bug("[HostGL] TASK: 0x%x, glCopyConvolutionFilter2DEXT", FindTask(NULL
)));
10801 GLCALL(glCopyConvolutionFilter2DEXT
, target
, internalformat
, x
, y
, width
, height
);
10802 D(bug("...exit\n"));
10806 void glGetConvolutionFilterEXT (GLenum target
, GLenum format
, GLenum type
, GLvoid
* image
)
10809 D(bug("[HostGL] TASK: 0x%x, glGetConvolutionFilterEXT", FindTask(NULL
)));
10810 GLCALL(glGetConvolutionFilterEXT
, target
, format
, type
, image
);
10811 D(bug("...exit\n"));
10815 void glGetConvolutionParameterfvEXT (GLenum target
, GLenum pname
, GLfloat
* params
)
10818 D(bug("[HostGL] TASK: 0x%x, glGetConvolutionParameterfvEXT", FindTask(NULL
)));
10819 GLCALL(glGetConvolutionParameterfvEXT
, target
, pname
, params
);
10820 D(bug("...exit\n"));
10824 void glGetConvolutionParameterivEXT (GLenum target
, GLenum pname
, GLint
* params
)
10827 D(bug("[HostGL] TASK: 0x%x, glGetConvolutionParameterivEXT", FindTask(NULL
)));
10828 GLCALL(glGetConvolutionParameterivEXT
, target
, pname
, params
);
10829 D(bug("...exit\n"));
10833 void glGetSeparableFilterEXT (GLenum target
, GLenum format
, GLenum type
, GLvoid
* row
, GLvoid
* column
, GLvoid
* span
)
10836 D(bug("[HostGL] TASK: 0x%x, glGetSeparableFilterEXT", FindTask(NULL
)));
10837 GLCALL(glGetSeparableFilterEXT
, target
, format
, type
, row
, column
, span
);
10838 D(bug("...exit\n"));
10842 void glSeparableFilter2DEXT (GLenum target
, GLenum internalformat
, GLsizei width
, GLsizei height
, GLenum format
, GLenum type
, const GLvoid
* row
, const GLvoid
* column
)
10845 D(bug("[HostGL] TASK: 0x%x, glSeparableFilter2DEXT", FindTask(NULL
)));
10846 GLCALL(glSeparableFilter2DEXT
, target
, internalformat
, width
, height
, format
, type
, row
, column
);
10847 D(bug("...exit\n"));
10851 void glColorTableSGI (GLenum target
, GLenum internalformat
, GLsizei width
, GLenum format
, GLenum type
, const GLvoid
* table
)
10854 D(bug("[HostGL] TASK: 0x%x, glColorTableSGI", FindTask(NULL
)));
10855 GLCALL(glColorTableSGI
, target
, internalformat
, width
, format
, type
, table
);
10856 D(bug("...exit\n"));
10860 void glColorTableParameterfvSGI (GLenum target
, GLenum pname
, const GLfloat
* params
)
10863 D(bug("[HostGL] TASK: 0x%x, glColorTableParameterfvSGI", FindTask(NULL
)));
10864 GLCALL(glColorTableParameterfvSGI
, target
, pname
, params
);
10865 D(bug("...exit\n"));
10869 void glColorTableParameterivSGI (GLenum target
, GLenum pname
, const GLint
* params
)
10872 D(bug("[HostGL] TASK: 0x%x, glColorTableParameterivSGI", FindTask(NULL
)));
10873 GLCALL(glColorTableParameterivSGI
, target
, pname
, params
);
10874 D(bug("...exit\n"));
10878 void glCopyColorTableSGI (GLenum target
, GLenum internalformat
, GLint x
, GLint y
, GLsizei width
)
10881 D(bug("[HostGL] TASK: 0x%x, glCopyColorTableSGI", FindTask(NULL
)));
10882 GLCALL(glCopyColorTableSGI
, target
, internalformat
, x
, y
, width
);
10883 D(bug("...exit\n"));
10887 void glGetColorTableSGI (GLenum target
, GLenum format
, GLenum type
, GLvoid
* table
)
10890 D(bug("[HostGL] TASK: 0x%x, glGetColorTableSGI", FindTask(NULL
)));
10891 GLCALL(glGetColorTableSGI
, target
, format
, type
, table
);
10892 D(bug("...exit\n"));
10896 void glGetColorTableParameterfvSGI (GLenum target
, GLenum pname
, GLfloat
* params
)
10899 D(bug("[HostGL] TASK: 0x%x, glGetColorTableParameterfvSGI", FindTask(NULL
)));
10900 GLCALL(glGetColorTableParameterfvSGI
, target
, pname
, params
);
10901 D(bug("...exit\n"));
10905 void glGetColorTableParameterivSGI (GLenum target
, GLenum pname
, GLint
* params
)
10908 D(bug("[HostGL] TASK: 0x%x, glGetColorTableParameterivSGI", FindTask(NULL
)));
10909 GLCALL(glGetColorTableParameterivSGI
, target
, pname
, params
);
10910 D(bug("...exit\n"));
10914 void glPixelTexGenSGIX (GLenum mode
)
10917 D(bug("[HostGL] TASK: 0x%x, glPixelTexGenSGIX", FindTask(NULL
)));
10918 GLCALL(glPixelTexGenSGIX
, mode
);
10919 D(bug("...exit\n"));
10923 void glPixelTexGenParameteriSGIS (GLenum pname
, GLint param
)
10926 D(bug("[HostGL] TASK: 0x%x, glPixelTexGenParameteriSGIS", FindTask(NULL
)));
10927 GLCALL(glPixelTexGenParameteriSGIS
, pname
, param
);
10928 D(bug("...exit\n"));
10932 void glPixelTexGenParameterivSGIS (GLenum pname
, const GLint
* params
)
10935 D(bug("[HostGL] TASK: 0x%x, glPixelTexGenParameterivSGIS", FindTask(NULL
)));
10936 GLCALL(glPixelTexGenParameterivSGIS
, pname
, params
);
10937 D(bug("...exit\n"));
10941 void glPixelTexGenParameterfSGIS (GLenum pname
, GLfloat param
)
10944 D(bug("[HostGL] TASK: 0x%x, glPixelTexGenParameterfSGIS", FindTask(NULL
)));
10945 GLCALL(glPixelTexGenParameterfSGIS
, pname
, param
);
10946 D(bug("...exit\n"));
10950 void glPixelTexGenParameterfvSGIS (GLenum pname
, const GLfloat
* params
)
10953 D(bug("[HostGL] TASK: 0x%x, glPixelTexGenParameterfvSGIS", FindTask(NULL
)));
10954 GLCALL(glPixelTexGenParameterfvSGIS
, pname
, params
);
10955 D(bug("...exit\n"));
10959 void glGetPixelTexGenParameterivSGIS (GLenum pname
, GLint
* params
)
10962 D(bug("[HostGL] TASK: 0x%x, glGetPixelTexGenParameterivSGIS", FindTask(NULL
)));
10963 GLCALL(glGetPixelTexGenParameterivSGIS
, pname
, params
);
10964 D(bug("...exit\n"));
10968 void glGetPixelTexGenParameterfvSGIS (GLenum pname
, GLfloat
* params
)
10971 D(bug("[HostGL] TASK: 0x%x, glGetPixelTexGenParameterfvSGIS", FindTask(NULL
)));
10972 GLCALL(glGetPixelTexGenParameterfvSGIS
, pname
, params
);
10973 D(bug("...exit\n"));
10977 void glSampleMaskSGIS (GLclampf value
, GLboolean invert
)
10980 D(bug("[HostGL] TASK: 0x%x, glSampleMaskSGIS", FindTask(NULL
)));
10981 GLCALL(glSampleMaskSGIS
, value
, invert
);
10982 D(bug("...exit\n"));
10986 void glSamplePatternSGIS (GLenum pattern
)
10989 D(bug("[HostGL] TASK: 0x%x, glSamplePatternSGIS", FindTask(NULL
)));
10990 GLCALL(glSamplePatternSGIS
, pattern
);
10991 D(bug("...exit\n"));
10995 void glPointParameterfSGIS (GLenum pname
, GLfloat param
)
10998 D(bug("[HostGL] TASK: 0x%x, glPointParameterfSGIS", FindTask(NULL
)));
10999 GLCALL(glPointParameterfSGIS
, pname
, param
);
11000 D(bug("...exit\n"));
11004 void glPointParameterfvSGIS (GLenum pname
, const GLfloat
* params
)
11007 D(bug("[HostGL] TASK: 0x%x, glPointParameterfvSGIS", FindTask(NULL
)));
11008 GLCALL(glPointParameterfvSGIS
, pname
, params
);
11009 D(bug("...exit\n"));
11013 void glColorSubTableEXT (GLenum target
, GLsizei start
, GLsizei count
, GLenum format
, GLenum type
, const GLvoid
* data
)
11016 D(bug("[HostGL] TASK: 0x%x, glColorSubTableEXT", FindTask(NULL
)));
11017 GLCALL(glColorSubTableEXT
, target
, start
, count
, format
, type
, data
);
11018 D(bug("...exit\n"));
11022 void glCopyColorSubTableEXT (GLenum target
, GLsizei start
, GLint x
, GLint y
, GLsizei width
)
11025 D(bug("[HostGL] TASK: 0x%x, glCopyColorSubTableEXT", FindTask(NULL
)));
11026 GLCALL(glCopyColorSubTableEXT
, target
, start
, x
, y
, width
);
11027 D(bug("...exit\n"));
11031 void glBlendFuncSeparateINGR (GLenum sfactorRGB
, GLenum dfactorRGB
, GLenum sfactorAlpha
, GLenum dfactorAlpha
)
11034 D(bug("[HostGL] TASK: 0x%x, glBlendFuncSeparateINGR", FindTask(NULL
)));
11035 GLCALL(glBlendFuncSeparateINGR
, sfactorRGB
, dfactorRGB
, sfactorAlpha
, dfactorAlpha
);
11036 D(bug("...exit\n"));
11040 void glMultiModeDrawArraysIBM (const GLenum
* mode
, const GLint
* first
, const GLsizei
* count
, GLsizei primcount
, GLint modestride
)
11043 D(bug("[HostGL] TASK: 0x%x, glMultiModeDrawArraysIBM", FindTask(NULL
)));
11044 GLCALL(glMultiModeDrawArraysIBM
, mode
, first
, count
, primcount
, modestride
);
11045 D(bug("...exit\n"));
11049 void glMultiModeDrawElementsIBM (const GLenum
* mode
, const GLsizei
* count
, GLenum type
, const GLvoid
* const * indices
, GLsizei primcount
, GLint modestride
)
11052 D(bug("[HostGL] TASK: 0x%x, glMultiModeDrawElementsIBM", FindTask(NULL
)));
11053 GLCALL(glMultiModeDrawElementsIBM
, mode
, count
, type
, indices
, primcount
, modestride
);
11054 D(bug("...exit\n"));
11058 void glSampleMaskEXT (GLclampf value
, GLboolean invert
)
11061 D(bug("[HostGL] TASK: 0x%x, glSampleMaskEXT", FindTask(NULL
)));
11062 GLCALL(glSampleMaskEXT
, value
, invert
);
11063 D(bug("...exit\n"));
11067 void glSamplePatternEXT (GLenum pattern
)
11070 D(bug("[HostGL] TASK: 0x%x, glSamplePatternEXT", FindTask(NULL
)));
11071 GLCALL(glSamplePatternEXT
, pattern
);
11072 D(bug("...exit\n"));
11076 void glDeleteFencesNV (GLsizei n
, const GLuint
* fences
)
11079 D(bug("[HostGL] TASK: 0x%x, glDeleteFencesNV", FindTask(NULL
)));
11080 GLCALL(glDeleteFencesNV
, n
, fences
);
11081 D(bug("...exit\n"));
11085 void glGenFencesNV (GLsizei n
, GLuint
* fences
)
11088 D(bug("[HostGL] TASK: 0x%x, glGenFencesNV", FindTask(NULL
)));
11089 GLCALL(glGenFencesNV
, n
, fences
);
11090 D(bug("...exit\n"));
11094 GLboolean
glIsFenceNV (GLuint fence
)
11098 D(bug("[HostGL] TASK: 0x%x, glIsFenceNV", FindTask(NULL
)));
11099 _ret
= GLCALL(glIsFenceNV
, fence
);
11100 D(bug("...exit\n"));
11105 GLboolean
glTestFenceNV (GLuint fence
)
11109 D(bug("[HostGL] TASK: 0x%x, glTestFenceNV", FindTask(NULL
)));
11110 _ret
= GLCALL(glTestFenceNV
, fence
);
11111 D(bug("...exit\n"));
11116 void glGetFenceivNV (GLuint fence
, GLenum pname
, GLint
* params
)
11119 D(bug("[HostGL] TASK: 0x%x, glGetFenceivNV", FindTask(NULL
)));
11120 GLCALL(glGetFenceivNV
, fence
, pname
, params
);
11121 D(bug("...exit\n"));
11125 void glFinishFenceNV (GLuint fence
)
11128 D(bug("[HostGL] TASK: 0x%x, glFinishFenceNV", FindTask(NULL
)));
11129 GLCALL(glFinishFenceNV
, fence
);
11130 D(bug("...exit\n"));
11134 void glSetFenceNV (GLuint fence
, GLenum condition
)
11137 D(bug("[HostGL] TASK: 0x%x, glSetFenceNV", FindTask(NULL
)));
11138 GLCALL(glSetFenceNV
, fence
, condition
);
11139 D(bug("...exit\n"));
11143 void glActiveStencilFaceEXT (GLenum face
)
11146 D(bug("[HostGL] TASK: 0x%x, glActiveStencilFaceEXT", FindTask(NULL
)));
11147 GLCALL(glActiveStencilFaceEXT
, face
);
11148 D(bug("...exit\n"));
11152 void glBindVertexArrayAPPLE (GLuint array
)
11155 D(bug("[HostGL] TASK: 0x%x, glBindVertexArrayAPPLE", FindTask(NULL
)));
11156 GLCALL(glBindVertexArrayAPPLE
, array
);
11157 D(bug("...exit\n"));
11161 void glDeleteVertexArraysAPPLE (GLsizei n
, const GLuint
* arrays
)
11164 D(bug("[HostGL] TASK: 0x%x, glDeleteVertexArraysAPPLE", FindTask(NULL
)));
11165 GLCALL(glDeleteVertexArraysAPPLE
, n
, arrays
);
11166 D(bug("...exit\n"));
11170 void glGenVertexArraysAPPLE (GLsizei n
, GLuint
* arrays
)
11173 D(bug("[HostGL] TASK: 0x%x, glGenVertexArraysAPPLE", FindTask(NULL
)));
11174 GLCALL(glGenVertexArraysAPPLE
, n
, arrays
);
11175 D(bug("...exit\n"));
11179 GLboolean
glIsVertexArrayAPPLE (GLuint array
)
11183 D(bug("[HostGL] TASK: 0x%x, glIsVertexArrayAPPLE", FindTask(NULL
)));
11184 _ret
= GLCALL(glIsVertexArrayAPPLE
, array
);
11185 D(bug("...exit\n"));
11190 void glStencilOpSeparateATI (GLenum face
, GLenum sfail
, GLenum dpfail
, GLenum dppass
)
11193 D(bug("[HostGL] TASK: 0x%x, glStencilOpSeparateATI", FindTask(NULL
)));
11194 GLCALL(glStencilOpSeparateATI
, face
, sfail
, dpfail
, dppass
);
11195 D(bug("...exit\n"));
11199 void glStencilFuncSeparateATI (GLenum frontfunc
, GLenum backfunc
, GLint ref
, GLuint mask
)
11202 D(bug("[HostGL] TASK: 0x%x, glStencilFuncSeparateATI", FindTask(NULL
)));
11203 GLCALL(glStencilFuncSeparateATI
, frontfunc
, backfunc
, ref
, mask
);
11204 D(bug("...exit\n"));
11208 void glDepthBoundsEXT (GLclampd zmin
, GLclampd zmax
)
11211 D(bug("[HostGL] TASK: 0x%x, glDepthBoundsEXT", FindTask(NULL
)));
11212 GLCALL(glDepthBoundsEXT
, zmin
, zmax
);
11213 D(bug("...exit\n"));
11217 void glBlendEquationSeparateEXT (GLenum modeRGB
, GLenum modeAlpha
)
11220 D(bug("[HostGL] TASK: 0x%x, glBlendEquationSeparateEXT", FindTask(NULL
)));
11221 GLCALL(glBlendEquationSeparateEXT
, modeRGB
, modeAlpha
);
11222 D(bug("...exit\n"));
11226 void glBlitFramebufferEXT (GLint srcX0
, GLint srcY0
, GLint srcX1
, GLint srcY1
, GLint dstX0
, GLint dstY0
, GLint dstX1
, GLint dstY1
, GLbitfield mask
, GLenum filter
)
11229 D(bug("[HostGL] TASK: 0x%x, glBlitFramebufferEXT", FindTask(NULL
)));
11230 GLCALL(glBlitFramebufferEXT
, srcX0
, srcY0
, srcX1
, srcY1
, dstX0
, dstY0
, dstX1
, dstY1
, mask
, filter
);
11231 D(bug("...exit\n"));
11235 void glGetQueryObjecti64vEXT (GLuint id
, GLenum pname
, GLint64EXT
* params
)
11238 D(bug("[HostGL] TASK: 0x%x, glGetQueryObjecti64vEXT", FindTask(NULL
)));
11239 GLCALL(glGetQueryObjecti64vEXT
, id
, pname
, params
);
11240 D(bug("...exit\n"));
11244 void glGetQueryObjectui64vEXT (GLuint id
, GLenum pname
, GLuint64EXT
* params
)
11247 D(bug("[HostGL] TASK: 0x%x, glGetQueryObjectui64vEXT", FindTask(NULL
)));
11248 GLCALL(glGetQueryObjectui64vEXT
, id
, pname
, params
);
11249 D(bug("...exit\n"));
11253 void glBufferParameteriAPPLE (GLenum target
, GLenum pname
, GLint param
)
11256 D(bug("[HostGL] TASK: 0x%x, glBufferParameteriAPPLE", FindTask(NULL
)));
11257 GLCALL(glBufferParameteriAPPLE
, target
, pname
, param
);
11258 D(bug("...exit\n"));
11262 void glFlushMappedBufferRangeAPPLE (GLenum target
, GLintptr offset
, GLsizeiptr size
)
11265 D(bug("[HostGL] TASK: 0x%x, glFlushMappedBufferRangeAPPLE", FindTask(NULL
)));
11266 GLCALL(glFlushMappedBufferRangeAPPLE
, target
, offset
, size
);
11267 D(bug("...exit\n"));
11271 void glTextureRangeAPPLE (GLenum target
, GLsizei length
, const GLvoid
* pointer
)
11274 D(bug("[HostGL] TASK: 0x%x, glTextureRangeAPPLE", FindTask(NULL
)));
11275 GLCALL(glTextureRangeAPPLE
, target
, length
, pointer
);
11276 D(bug("...exit\n"));
11280 void glGetTexParameterPointervAPPLE (GLenum target
, GLenum pname
, GLvoid
* * params
)
11283 D(bug("[HostGL] TASK: 0x%x, glGetTexParameterPointervAPPLE", FindTask(NULL
)));
11284 GLCALL(glGetTexParameterPointervAPPLE
, target
, pname
, params
);
11285 D(bug("...exit\n"));
11289 void glClampColorARB (GLenum target
, GLenum clamp
)
11292 D(bug("[HostGL] TASK: 0x%x, glClampColorARB", FindTask(NULL
)));
11293 GLCALL(glClampColorARB
, target
, clamp
);
11294 D(bug("...exit\n"));
11298 void glFramebufferTextureLayerARB (GLenum target
, GLenum attachment
, GLuint texture
, GLint level
, GLint layer
)
11301 D(bug("[HostGL] TASK: 0x%x, glFramebufferTextureLayerARB", FindTask(NULL
)));
11302 GLCALL(glFramebufferTextureLayerARB
, target
, attachment
, texture
, level
, layer
);
11303 D(bug("...exit\n"));
11307 void glVertexAttribDivisorARB (GLuint index
, GLuint divisor
)
11310 D(bug("[HostGL] TASK: 0x%x, glVertexAttribDivisorARB", FindTask(NULL
)));
11311 GLCALL(glVertexAttribDivisorARB
, index
, divisor
);
11312 D(bug("...exit\n"));
11316 void glTexBufferARB (GLenum target
, GLenum internalformat
, GLuint buffer
)
11319 D(bug("[HostGL] TASK: 0x%x, glTexBufferARB", FindTask(NULL
)));
11320 GLCALL(glTexBufferARB
, target
, internalformat
, buffer
);
11321 D(bug("...exit\n"));
11325 void glDrawElementsInstancedBaseVertex (GLenum mode
, GLsizei count
, GLenum type
, const GLvoid
* indices
, GLsizei primcount
, GLint basevertex
)
11328 D(bug("[HostGL] TASK: 0x%x, glDrawElementsInstancedBaseVertex", FindTask(NULL
)));
11329 GLCALL(glDrawElementsInstancedBaseVertex
, mode
, count
, type
, indices
, primcount
, basevertex
);
11330 D(bug("...exit\n"));
11334 void glBlendEquationiARB (GLuint buf
, GLenum mode
)
11337 D(bug("[HostGL] TASK: 0x%x, glBlendEquationiARB", FindTask(NULL
)));
11338 GLCALL(glBlendEquationiARB
, buf
, mode
);
11339 D(bug("...exit\n"));
11343 void glBlendEquationSeparateiARB (GLuint buf
, GLenum modeRGB
, GLenum modeAlpha
)
11346 D(bug("[HostGL] TASK: 0x%x, glBlendEquationSeparateiARB", FindTask(NULL
)));
11347 GLCALL(glBlendEquationSeparateiARB
, buf
, modeRGB
, modeAlpha
);
11348 D(bug("...exit\n"));
11352 void glBlendFunciARB (GLuint buf
, GLenum src
, GLenum dst
)
11355 D(bug("[HostGL] TASK: 0x%x, glBlendFunciARB", FindTask(NULL
)));
11356 GLCALL(glBlendFunciARB
, buf
, src
, dst
);
11357 D(bug("...exit\n"));
11361 void glBlendFuncSeparateiARB (GLuint buf
, GLenum srcRGB
, GLenum dstRGB
, GLenum srcAlpha
, GLenum dstAlpha
)
11364 D(bug("[HostGL] TASK: 0x%x, glBlendFuncSeparateiARB", FindTask(NULL
)));
11365 GLCALL(glBlendFuncSeparateiARB
, buf
, srcRGB
, dstRGB
, srcAlpha
, dstAlpha
);
11366 D(bug("...exit\n"));
11370 void glGenSamplers (GLsizei count
, GLuint
* samplers
)
11373 D(bug("[HostGL] TASK: 0x%x, glGenSamplers", FindTask(NULL
)));
11374 GLCALL(glGenSamplers
, count
, samplers
);
11375 D(bug("...exit\n"));
11379 void glDeleteSamplers (GLsizei count
, const GLuint
* samplers
)
11382 D(bug("[HostGL] TASK: 0x%x, glDeleteSamplers", FindTask(NULL
)));
11383 GLCALL(glDeleteSamplers
, count
, samplers
);
11384 D(bug("...exit\n"));
11388 GLboolean
glIsSampler (GLuint sampler
)
11392 D(bug("[HostGL] TASK: 0x%x, glIsSampler", FindTask(NULL
)));
11393 _ret
= GLCALL(glIsSampler
, sampler
);
11394 D(bug("...exit\n"));
11399 void glBindSampler (GLuint unit
, GLuint sampler
)
11402 D(bug("[HostGL] TASK: 0x%x, glBindSampler", FindTask(NULL
)));
11403 GLCALL(glBindSampler
, unit
, sampler
);
11404 D(bug("...exit\n"));
11408 void glSamplerParameteri (GLuint sampler
, GLenum pname
, GLint param
)
11411 D(bug("[HostGL] TASK: 0x%x, glSamplerParameteri", FindTask(NULL
)));
11412 GLCALL(glSamplerParameteri
, sampler
, pname
, param
);
11413 D(bug("...exit\n"));
11417 void glSamplerParameteriv (GLuint sampler
, GLenum pname
, const GLint
* param
)
11420 D(bug("[HostGL] TASK: 0x%x, glSamplerParameteriv", FindTask(NULL
)));
11421 GLCALL(glSamplerParameteriv
, sampler
, pname
, param
);
11422 D(bug("...exit\n"));
11426 void glSamplerParameterf (GLuint sampler
, GLenum pname
, GLfloat param
)
11429 D(bug("[HostGL] TASK: 0x%x, glSamplerParameterf", FindTask(NULL
)));
11430 GLCALL(glSamplerParameterf
, sampler
, pname
, param
);
11431 D(bug("...exit\n"));
11435 void glSamplerParameterfv (GLuint sampler
, GLenum pname
, const GLfloat
* param
)
11438 D(bug("[HostGL] TASK: 0x%x, glSamplerParameterfv", FindTask(NULL
)));
11439 GLCALL(glSamplerParameterfv
, sampler
, pname
, param
);
11440 D(bug("...exit\n"));
11444 void glSamplerParameterIiv (GLuint sampler
, GLenum pname
, const GLint
* param
)
11447 D(bug("[HostGL] TASK: 0x%x, glSamplerParameterIiv", FindTask(NULL
)));
11448 GLCALL(glSamplerParameterIiv
, sampler
, pname
, param
);
11449 D(bug("...exit\n"));
11453 void glSamplerParameterIuiv (GLuint sampler
, GLenum pname
, const GLuint
* param
)
11456 D(bug("[HostGL] TASK: 0x%x, glSamplerParameterIuiv", FindTask(NULL
)));
11457 GLCALL(glSamplerParameterIuiv
, sampler
, pname
, param
);
11458 D(bug("...exit\n"));
11462 void glGetSamplerParameteriv (GLuint sampler
, GLenum pname
, GLint
* params
)
11465 D(bug("[HostGL] TASK: 0x%x, glGetSamplerParameteriv", FindTask(NULL
)));
11466 GLCALL(glGetSamplerParameteriv
, sampler
, pname
, params
);
11467 D(bug("...exit\n"));
11471 void glGetSamplerParameterIiv (GLuint sampler
, GLenum pname
, GLint
* params
)
11474 D(bug("[HostGL] TASK: 0x%x, glGetSamplerParameterIiv", FindTask(NULL
)));
11475 GLCALL(glGetSamplerParameterIiv
, sampler
, pname
, params
);
11476 D(bug("...exit\n"));
11480 void glGetSamplerParameterfv (GLuint sampler
, GLenum pname
, GLfloat
* params
)
11483 D(bug("[HostGL] TASK: 0x%x, glGetSamplerParameterfv", FindTask(NULL
)));
11484 GLCALL(glGetSamplerParameterfv
, sampler
, pname
, params
);
11485 D(bug("...exit\n"));
11489 void glGetSamplerParameterIuiv (GLuint sampler
, GLenum pname
, GLuint
* params
)
11492 D(bug("[HostGL] TASK: 0x%x, glGetSamplerParameterIuiv", FindTask(NULL
)));
11493 GLCALL(glGetSamplerParameterIuiv
, sampler
, pname
, params
);
11494 D(bug("...exit\n"));
11498 void glReleaseShaderCompiler ()
11501 D(bug("[HostGL] TASK: 0x%x, glReleaseShaderCompiler", FindTask(NULL
)));
11502 GLCALL(glReleaseShaderCompiler
);
11503 D(bug("...exit\n"));
11507 void glShaderBinary (GLsizei count
, const GLuint
* shaders
, GLenum binaryformat
, const GLvoid
* binary
, GLsizei length
)
11510 D(bug("[HostGL] TASK: 0x%x, glShaderBinary", FindTask(NULL
)));
11511 GLCALL(glShaderBinary
, count
, shaders
, binaryformat
, binary
, length
);
11512 D(bug("...exit\n"));
11516 void glGetShaderPrecisionFormat (GLenum shadertype
, GLenum precisiontype
, GLint
* range
, GLint
* precision
)
11519 D(bug("[HostGL] TASK: 0x%x, glGetShaderPrecisionFormat", FindTask(NULL
)));
11520 GLCALL(glGetShaderPrecisionFormat
, shadertype
, precisiontype
, range
, precision
);
11521 D(bug("...exit\n"));
11525 void glDepthRangef (GLclampf n
, GLclampf f
)
11528 D(bug("[HostGL] TASK: 0x%x, glDepthRangef", FindTask(NULL
)));
11529 GLCALL(glDepthRangef
, n
, f
);
11530 D(bug("...exit\n"));
11534 void glClearDepthf (GLclampf d
)
11537 D(bug("[HostGL] TASK: 0x%x, glClearDepthf", FindTask(NULL
)));
11538 GLCALL(glClearDepthf
, d
);
11539 D(bug("...exit\n"));
11543 GLenum
glGetGraphicsResetStatusARB ()
11547 D(bug("[HostGL] TASK: 0x%x, glGetGraphicsResetStatusARB", FindTask(NULL
)));
11548 _ret
= GLCALL(glGetGraphicsResetStatusARB
);
11549 D(bug("...exit\n"));
11554 void glGetnMapdvARB (GLenum target
, GLenum query
, GLsizei bufSize
, GLdouble
* v
)
11557 D(bug("[HostGL] TASK: 0x%x, glGetnMapdvARB", FindTask(NULL
)));
11558 GLCALL(glGetnMapdvARB
, target
, query
, bufSize
, v
);
11559 D(bug("...exit\n"));
11563 void glGetnMapfvARB (GLenum target
, GLenum query
, GLsizei bufSize
, GLfloat
* v
)
11566 D(bug("[HostGL] TASK: 0x%x, glGetnMapfvARB", FindTask(NULL
)));
11567 GLCALL(glGetnMapfvARB
, target
, query
, bufSize
, v
);
11568 D(bug("...exit\n"));
11572 void glGetnMapivARB (GLenum target
, GLenum query
, GLsizei bufSize
, GLint
* v
)
11575 D(bug("[HostGL] TASK: 0x%x, glGetnMapivARB", FindTask(NULL
)));
11576 GLCALL(glGetnMapivARB
, target
, query
, bufSize
, v
);
11577 D(bug("...exit\n"));
11581 void glGetnPixelMapfvARB (GLenum map
, GLsizei bufSize
, GLfloat
* values
)
11584 D(bug("[HostGL] TASK: 0x%x, glGetnPixelMapfvARB", FindTask(NULL
)));
11585 GLCALL(glGetnPixelMapfvARB
, map
, bufSize
, values
);
11586 D(bug("...exit\n"));
11590 void glGetnPixelMapuivARB (GLenum map
, GLsizei bufSize
, GLuint
* values
)
11593 D(bug("[HostGL] TASK: 0x%x, glGetnPixelMapuivARB", FindTask(NULL
)));
11594 GLCALL(glGetnPixelMapuivARB
, map
, bufSize
, values
);
11595 D(bug("...exit\n"));
11599 void glGetnPixelMapusvARB (GLenum map
, GLsizei bufSize
, GLushort
* values
)
11602 D(bug("[HostGL] TASK: 0x%x, glGetnPixelMapusvARB", FindTask(NULL
)));
11603 GLCALL(glGetnPixelMapusvARB
, map
, bufSize
, values
);
11604 D(bug("...exit\n"));
11608 void glGetnPolygonStippleARB (GLsizei bufSize
, GLubyte
* pattern
)
11611 D(bug("[HostGL] TASK: 0x%x, glGetnPolygonStippleARB", FindTask(NULL
)));
11612 GLCALL(glGetnPolygonStippleARB
, bufSize
, pattern
);
11613 D(bug("...exit\n"));
11617 void glGetnColorTableARB (GLenum target
, GLenum format
, GLenum type
, GLsizei bufSize
, GLvoid
* table
)
11620 D(bug("[HostGL] TASK: 0x%x, glGetnColorTableARB", FindTask(NULL
)));
11621 GLCALL(glGetnColorTableARB
, target
, format
, type
, bufSize
, table
);
11622 D(bug("...exit\n"));
11626 void glGetnConvolutionFilterARB (GLenum target
, GLenum format
, GLenum type
, GLsizei bufSize
, GLvoid
* image
)
11629 D(bug("[HostGL] TASK: 0x%x, glGetnConvolutionFilterARB", FindTask(NULL
)));
11630 GLCALL(glGetnConvolutionFilterARB
, target
, format
, type
, bufSize
, image
);
11631 D(bug("...exit\n"));
11635 void glGetnSeparableFilterARB (GLenum target
, GLenum format
, GLenum type
, GLsizei rowBufSize
, GLvoid
* row
, GLsizei columnBufSize
, GLvoid
* column
, GLvoid
* span
)
11638 D(bug("[HostGL] TASK: 0x%x, glGetnSeparableFilterARB", FindTask(NULL
)));
11639 GLCALL(glGetnSeparableFilterARB
, target
, format
, type
, rowBufSize
, row
, columnBufSize
, column
, span
);
11640 D(bug("...exit\n"));
11644 void glGetnHistogramARB (GLenum target
, GLboolean reset
, GLenum format
, GLenum type
, GLsizei bufSize
, GLvoid
* values
)
11647 D(bug("[HostGL] TASK: 0x%x, glGetnHistogramARB", FindTask(NULL
)));
11648 GLCALL(glGetnHistogramARB
, target
, reset
, format
, type
, bufSize
, values
);
11649 D(bug("...exit\n"));
11653 void glGetnMinmaxARB (GLenum target
, GLboolean reset
, GLenum format
, GLenum type
, GLsizei bufSize
, GLvoid
* values
)
11656 D(bug("[HostGL] TASK: 0x%x, glGetnMinmaxARB", FindTask(NULL
)));
11657 GLCALL(glGetnMinmaxARB
, target
, reset
, format
, type
, bufSize
, values
);
11658 D(bug("...exit\n"));
11662 void glGetnTexImageARB (GLenum target
, GLint level
, GLenum format
, GLenum type
, GLsizei bufSize
, GLvoid
* img
)
11665 D(bug("[HostGL] TASK: 0x%x, glGetnTexImageARB", FindTask(NULL
)));
11666 GLCALL(glGetnTexImageARB
, target
, level
, format
, type
, bufSize
, img
);
11667 D(bug("...exit\n"));
11671 void glReadnPixelsARB (GLint x
, GLint y
, GLsizei width
, GLsizei height
, GLenum format
, GLenum type
, GLsizei bufSize
, GLvoid
* data
)
11674 D(bug("[HostGL] TASK: 0x%x, glReadnPixelsARB", FindTask(NULL
)));
11675 GLCALL(glReadnPixelsARB
, x
, y
, width
, height
, format
, type
, bufSize
, data
);
11676 D(bug("...exit\n"));
11680 void glGetnCompressedTexImageARB (GLenum target
, GLint lod
, GLsizei bufSize
, GLvoid
* img
)
11683 D(bug("[HostGL] TASK: 0x%x, glGetnCompressedTexImageARB", FindTask(NULL
)));
11684 GLCALL(glGetnCompressedTexImageARB
, target
, lod
, bufSize
, img
);
11685 D(bug("...exit\n"));
11689 void glGetnUniformfvARB (GLuint program
, GLint location
, GLsizei bufSize
, GLfloat
* params
)
11692 D(bug("[HostGL] TASK: 0x%x, glGetnUniformfvARB", FindTask(NULL
)));
11693 GLCALL(glGetnUniformfvARB
, program
, location
, bufSize
, params
);
11694 D(bug("...exit\n"));
11698 void glGetnUniformivARB (GLuint program
, GLint location
, GLsizei bufSize
, GLint
* params
)
11701 D(bug("[HostGL] TASK: 0x%x, glGetnUniformivARB", FindTask(NULL
)));
11702 GLCALL(glGetnUniformivARB
, program
, location
, bufSize
, params
);
11703 D(bug("...exit\n"));
11707 void glGetnUniformuivARB (GLuint program
, GLint location
, GLsizei bufSize
, GLuint
* params
)
11710 D(bug("[HostGL] TASK: 0x%x, glGetnUniformuivARB", FindTask(NULL
)));
11711 GLCALL(glGetnUniformuivARB
, program
, location
, bufSize
, params
);
11712 D(bug("...exit\n"));
11716 void glGetnUniformdvARB (GLuint program
, GLint location
, GLsizei bufSize
, GLdouble
* params
)
11719 D(bug("[HostGL] TASK: 0x%x, glGetnUniformdvARB", FindTask(NULL
)));
11720 GLCALL(glGetnUniformdvARB
, program
, location
, bufSize
, params
);
11721 D(bug("...exit\n"));
11725 void glBlendFuncIndexedAMD (GLuint buf
, GLenum src
, GLenum dst
)
11728 D(bug("[HostGL] TASK: 0x%x, glBlendFuncIndexedAMD", FindTask(NULL
)));
11729 GLCALL(glBlendFuncIndexedAMD
, buf
, src
, dst
);
11730 D(bug("...exit\n"));
11734 void glBlendFuncSeparateIndexedAMD (GLuint buf
, GLenum srcRGB
, GLenum dstRGB
, GLenum srcAlpha
, GLenum dstAlpha
)
11737 D(bug("[HostGL] TASK: 0x%x, glBlendFuncSeparateIndexedAMD", FindTask(NULL
)));
11738 GLCALL(glBlendFuncSeparateIndexedAMD
, buf
, srcRGB
, dstRGB
, srcAlpha
, dstAlpha
);
11739 D(bug("...exit\n"));
11743 void glBlendEquationIndexedAMD (GLuint buf
, GLenum mode
)
11746 D(bug("[HostGL] TASK: 0x%x, glBlendEquationIndexedAMD", FindTask(NULL
)));
11747 GLCALL(glBlendEquationIndexedAMD
, buf
, mode
);
11748 D(bug("...exit\n"));
11752 void glBlendEquationSeparateIndexedAMD (GLuint buf
, GLenum modeRGB
, GLenum modeAlpha
)
11755 D(bug("[HostGL] TASK: 0x%x, glBlendEquationSeparateIndexedAMD", FindTask(NULL
)));
11756 GLCALL(glBlendEquationSeparateIndexedAMD
, buf
, modeRGB
, modeAlpha
);
11757 D(bug("...exit\n"));
11761 void glTextureBarrierNV ()
11764 D(bug("[HostGL] TASK: 0x%x, glTextureBarrierNV", FindTask(NULL
)));
11765 GLCALL(glTextureBarrierNV
);
11766 D(bug("...exit\n"));