Lines Matching full:pc
43 __glXDisp_ReadPixels(__GLXclientState * cl, GLbyte * pc) in __glXDisp_ReadPixels() argument
57 cx = __glXForceCurrent(cl, __GLX_GET_SINGLE_CONTEXT_TAG(pc), &error); in __glXDisp_ReadPixels()
62 pc += __GLX_SINGLE_HDR_SIZE; in __glXDisp_ReadPixels()
63 width = *(GLsizei *) (pc + 8); in __glXDisp_ReadPixels()
64 height = *(GLsizei *) (pc + 12); in __glXDisp_ReadPixels()
65 format = *(GLenum *) (pc + 16); in __glXDisp_ReadPixels()
66 type = *(GLenum *) (pc + 20); in __glXDisp_ReadPixels()
67 swapBytes = *(GLboolean *) (pc + 24); in __glXDisp_ReadPixels()
68 lsbFirst = *(GLboolean *) (pc + 25); in __glXDisp_ReadPixels()
77 glReadPixels(*(GLint *) (pc + 0), *(GLint *) (pc + 4), in __glXDisp_ReadPixels()
78 *(GLsizei *) (pc + 8), *(GLsizei *) (pc + 12), in __glXDisp_ReadPixels()
79 *(GLenum *) (pc + 16), *(GLenum *) (pc + 20), answer); in __glXDisp_ReadPixels()
94 __glXDisp_GetTexImage(__GLXclientState * cl, GLbyte * pc) in __glXDisp_GetTexImage() argument
108 cx = __glXForceCurrent(cl, __GLX_GET_SINGLE_CONTEXT_TAG(pc), &error); in __glXDisp_GetTexImage()
113 pc += __GLX_SINGLE_HDR_SIZE; in __glXDisp_GetTexImage()
114 level = *(GLint *) (pc + 4); in __glXDisp_GetTexImage()
115 format = *(GLenum *) (pc + 8); in __glXDisp_GetTexImage()
116 type = *(GLenum *) (pc + 12); in __glXDisp_GetTexImage()
117 target = *(GLenum *) (pc + 0); in __glXDisp_GetTexImage()
118 swapBytes = *(GLboolean *) (pc + 16); in __glXDisp_GetTexImage()
137 glGetTexImage(*(GLenum *) (pc + 0), *(GLint *) (pc + 4), in __glXDisp_GetTexImage()
138 *(GLenum *) (pc + 8), *(GLenum *) (pc + 12), answer); in __glXDisp_GetTexImage()
156 __glXDisp_GetPolygonStipple(__GLXclientState * cl, GLbyte * pc) in __glXDisp_GetPolygonStipple() argument
168 cx = __glXForceCurrent(cl, __GLX_GET_SINGLE_CONTEXT_TAG(pc), &error); in __glXDisp_GetPolygonStipple()
173 pc += __GLX_SINGLE_HDR_SIZE; in __glXDisp_GetPolygonStipple()
174 lsbFirst = *(GLboolean *) (pc + 0); in __glXDisp_GetPolygonStipple()
195 GetSeparableFilter(__GLXclientState * cl, GLbyte * pc, GLXContextTag tag) in GetSeparableFilter() argument
212 format = *(GLenum *) (pc + 4); in GetSeparableFilter()
213 type = *(GLenum *) (pc + 8); in GetSeparableFilter()
214 target = *(GLenum *) (pc + 0); in GetSeparableFilter()
215 swapBytes = *(GLboolean *) (pc + 12); in GetSeparableFilter()
237 glGetSeparableFilter(*(GLenum *) (pc + 0), *(GLenum *) (pc + 4), in GetSeparableFilter()
238 *(GLenum *) (pc + 8), answer, answer + compsize, NULL); in GetSeparableFilter()
256 __glXDisp_GetSeparableFilter(__GLXclientState * cl, GLbyte * pc) in __glXDisp_GetSeparableFilter() argument
258 const GLXContextTag tag = __GLX_GET_SINGLE_CONTEXT_TAG(pc); in __glXDisp_GetSeparableFilter()
261 return GetSeparableFilter(cl, pc + __GLX_SINGLE_HDR_SIZE, tag); in __glXDisp_GetSeparableFilter()
265 __glXDisp_GetSeparableFilterEXT(__GLXclientState * cl, GLbyte * pc) in __glXDisp_GetSeparableFilterEXT() argument
267 const GLXContextTag tag = __GLX_GET_VENDPRIV_CONTEXT_TAG(pc); in __glXDisp_GetSeparableFilterEXT()
270 return GetSeparableFilter(cl, pc + __GLX_VENDPRIV_HDR_SIZE, tag); in __glXDisp_GetSeparableFilterEXT()
274 GetConvolutionFilter(__GLXclientState * cl, GLbyte * pc, GLXContextTag tag) in GetConvolutionFilter() argument
291 format = *(GLenum *) (pc + 4); in GetConvolutionFilter()
292 type = *(GLenum *) (pc + 8); in GetConvolutionFilter()
293 target = *(GLenum *) (pc + 0); in GetConvolutionFilter()
294 swapBytes = *(GLboolean *) (pc + 12); in GetConvolutionFilter()
314 glGetConvolutionFilter(*(GLenum *) (pc + 0), *(GLenum *) (pc + 4), in GetConvolutionFilter()
315 *(GLenum *) (pc + 8), answer); in GetConvolutionFilter()
333 __glXDisp_GetConvolutionFilter(__GLXclientState * cl, GLbyte * pc) in __glXDisp_GetConvolutionFilter() argument
335 const GLXContextTag tag = __GLX_GET_SINGLE_CONTEXT_TAG(pc); in __glXDisp_GetConvolutionFilter()
338 return GetConvolutionFilter(cl, pc + __GLX_SINGLE_HDR_SIZE, tag); in __glXDisp_GetConvolutionFilter()
342 __glXDisp_GetConvolutionFilterEXT(__GLXclientState * cl, GLbyte * pc) in __glXDisp_GetConvolutionFilterEXT() argument
344 const GLXContextTag tag = __GLX_GET_VENDPRIV_CONTEXT_TAG(pc); in __glXDisp_GetConvolutionFilterEXT()
347 return GetConvolutionFilter(cl, pc + __GLX_VENDPRIV_HDR_SIZE, tag); in __glXDisp_GetConvolutionFilterEXT()
351 GetHistogram(__GLXclientState * cl, GLbyte * pc, GLXContextTag tag) in GetHistogram() argument
368 format = *(GLenum *) (pc + 4); in GetHistogram()
369 type = *(GLenum *) (pc + 8); in GetHistogram()
370 target = *(GLenum *) (pc + 0); in GetHistogram()
371 swapBytes = *(GLboolean *) (pc + 12); in GetHistogram()
372 reset = *(GLboolean *) (pc + 13); in GetHistogram()
403 __glXDisp_GetHistogram(__GLXclientState * cl, GLbyte * pc) in __glXDisp_GetHistogram() argument
405 const GLXContextTag tag = __GLX_GET_SINGLE_CONTEXT_TAG(pc); in __glXDisp_GetHistogram()
408 return GetHistogram(cl, pc + __GLX_SINGLE_HDR_SIZE, tag); in __glXDisp_GetHistogram()
412 __glXDisp_GetHistogramEXT(__GLXclientState * cl, GLbyte * pc) in __glXDisp_GetHistogramEXT() argument
414 const GLXContextTag tag = __GLX_GET_VENDPRIV_CONTEXT_TAG(pc); in __glXDisp_GetHistogramEXT()
417 return GetHistogram(cl, pc + __GLX_VENDPRIV_HDR_SIZE, tag); in __glXDisp_GetHistogramEXT()
421 GetMinmax(__GLXclientState * cl, GLbyte * pc, GLXContextTag tag) in GetMinmax() argument
437 format = *(GLenum *) (pc + 4); in GetMinmax()
438 type = *(GLenum *) (pc + 8); in GetMinmax()
439 target = *(GLenum *) (pc + 0); in GetMinmax()
440 swapBytes = *(GLboolean *) (pc + 12); in GetMinmax()
441 reset = *(GLboolean *) (pc + 13); in GetMinmax()
466 __glXDisp_GetMinmax(__GLXclientState * cl, GLbyte * pc) in __glXDisp_GetMinmax() argument
468 const GLXContextTag tag = __GLX_GET_SINGLE_CONTEXT_TAG(pc); in __glXDisp_GetMinmax()
471 return GetMinmax(cl, pc + __GLX_SINGLE_HDR_SIZE, tag); in __glXDisp_GetMinmax()
475 __glXDisp_GetMinmaxEXT(__GLXclientState * cl, GLbyte * pc) in __glXDisp_GetMinmaxEXT() argument
477 const GLXContextTag tag = __GLX_GET_VENDPRIV_CONTEXT_TAG(pc); in __glXDisp_GetMinmaxEXT()
480 return GetMinmax(cl, pc + __GLX_VENDPRIV_HDR_SIZE, tag); in __glXDisp_GetMinmaxEXT()
484 GetColorTable(__GLXclientState * cl, GLbyte * pc, GLXContextTag tag) in GetColorTable() argument
501 target = *(GLenum *) (pc + 0); in GetColorTable()
502 format = *(GLenum *) (pc + 4); in GetColorTable()
503 type = *(GLenum *) (pc + 8); in GetColorTable()
504 swapBytes = *(GLboolean *) (pc + 12); in GetColorTable()
518 glGetColorTable(*(GLenum *) (pc + 0), *(GLenum *) (pc + 4), in GetColorTable()
519 *(GLenum *) (pc + 8), answer); in GetColorTable()
536 __glXDisp_GetColorTable(__GLXclientState * cl, GLbyte * pc) in __glXDisp_GetColorTable() argument
538 const GLXContextTag tag = __GLX_GET_SINGLE_CONTEXT_TAG(pc); in __glXDisp_GetColorTable()
541 return GetColorTable(cl, pc + __GLX_SINGLE_HDR_SIZE, tag); in __glXDisp_GetColorTable()
545 __glXDisp_GetColorTableSGI(__GLXclientState * cl, GLbyte * pc) in __glXDisp_GetColorTableSGI() argument
547 const GLXContextTag tag = __GLX_GET_VENDPRIV_CONTEXT_TAG(pc); in __glXDisp_GetColorTableSGI()
550 return GetColorTable(cl, pc + __GLX_VENDPRIV_HDR_SIZE, tag); in __glXDisp_GetColorTableSGI()