| /xsrc/external/mit/xorg-server.old/dist/hw/dmx/glxProxy/ |
| g_renderswap.c | 37 void __glXDispSwap_CallList(GLbyte *pc) 41 __GLX_SWAP_INT(pc + 0); 45 void __glXDispSwap_ListBase(GLbyte *pc) 49 __GLX_SWAP_INT(pc + 0); 53 void __glXDispSwap_Begin(GLbyte *pc) 57 __GLX_SWAP_INT(pc + 0); 61 void __glXDispSwap_Color3bv(GLbyte *pc) 65 void __glXDispSwap_Color3dv(GLbyte *pc) 72 if ((unsigned long)(pc) & 7) { 73 __GLX_MEM_COPY(pc-4, pc, 24) [all...] |
| glxsingle.h | 34 extern int __glXForwardSingleReq( __GLXclientState *cl, GLbyte *pc ); 35 extern int __glXForwardPipe0WithReply( __GLXclientState *cl, GLbyte *pc ); 36 extern int __glXForwardAllWithReply( __GLXclientState *cl, GLbyte *pc ); 38 extern int __glXForwardSingleReqSwap( __GLXclientState *cl, GLbyte *pc ); 40 extern int __glXForwardPipe0WithReplySwap( __GLXclientState *cl, GLbyte *pc ); 41 extern int __glXForwardPipe0WithReplySwapsv( __GLXclientState *cl, GLbyte *pc ); 42 extern int __glXForwardPipe0WithReplySwapiv( __GLXclientState *cl, GLbyte *pc ); 43 extern int __glXForwardPipe0WithReplySwapdv( __GLXclientState *cl, GLbyte *pc ); 45 extern int __glXForwardAllWithReplySwap( __GLXclientState *cl, GLbyte *pc ); 46 extern int __glXForwardAllWithReplySwapsv( __GLXclientState *cl, GLbyte *pc ); [all...] |
| render2swap.c | 65 void __glXDispSwap_Map1f(GLbyte *pc) 74 __GLX_SWAP_INT(pc + 0); 75 __GLX_SWAP_INT(pc + 12); 76 __GLX_SWAP_FLOAT(pc + 4); 77 __GLX_SWAP_FLOAT(pc + 8); 79 target = *(GLenum *)(pc + 0); 80 order = *(GLint *)(pc + 12); 81 u1 = *(GLfloat *)(pc + 4); 82 u2 = *(GLfloat *)(pc + 8); 83 points = (GLfloat *)(pc + 16) [all...] |
| glxvendor.h | 34 extern int __glXVForwardSingleReq( __GLXclientState *cl, GLbyte *pc ); 35 extern int __glXVForwardPipe0WithReply( __GLXclientState *cl, GLbyte *pc ); 36 extern int __glXVForwardAllWithReply( __GLXclientState *cl, GLbyte *pc ); 38 extern int __glXVForwardSingleReqSwap( __GLXclientState *cl, GLbyte *pc ); 40 extern int __glXVForwardPipe0WithReplySwap( __GLXclientState *cl, GLbyte *pc ); 41 extern int __glXVForwardPipe0WithReplySwapsv( __GLXclientState *cl, GLbyte *pc ); 42 extern int __glXVForwardPipe0WithReplySwapiv( __GLXclientState *cl, GLbyte *pc ); 43 extern int __glXVForwardPipe0WithReplySwapdv( __GLXclientState *cl, GLbyte *pc ); 45 extern int __glXVForwardAllWithReplySwap( __GLXclientState *cl, GLbyte *pc ); 46 extern int __glXVForwardAllWithReplySwapsv( __GLXclientState *cl, GLbyte *pc ); [all...] |
| unpack.h | 37 ** Fetch the context-id out of a SingleReq request pointed to by pc. 39 #define __GLX_GET_SINGLE_CONTEXT_TAG(pc) (((xGLXSingleReq*)pc)->contextTag) 40 #define __GLX_GET_VENDPRIV_CONTEXT_TAG(pc) (((xGLXVendorPrivateReq*)pc)->contextTag) 148 #define __GLX_SWAP_INT(pc) \ 149 sw = ((GLbyte *)(pc))[0]; \ 150 ((GLbyte *)(pc))[0] = ((GLbyte *)(pc))[3]; \ 151 ((GLbyte *)(pc))[3] = sw; [all...] |
| /xsrc/external/mit/xorg-server/dist/glx/ |
| indirect_dispatch.c | 49 __glXDisp_NewList(__GLXclientState * cl, GLbyte * pc) 51 xGLXSingleReq *const req = (xGLXSingleReq *) pc; 55 pc += __GLX_SINGLE_HDR_SIZE; 57 glNewList(*(GLuint *) (pc + 0), *(GLenum *) (pc + 4)); 65 __glXDisp_EndList(__GLXclientState * cl, GLbyte * pc) 67 xGLXSingleReq *const req = (xGLXSingleReq *) pc; 71 pc += __GLX_SINGLE_HDR_SIZE; 81 __glXDisp_CallList(GLbyte * pc) 83 glCallList(*(GLuint *) (pc + 0)) [all...] |
| indirect_dispatch_swap.c | 151 __glXDispSwap_NewList(__GLXclientState * cl, GLbyte * pc) 153 xGLXSingleReq *const req = (xGLXSingleReq *) pc; 158 pc += __GLX_SINGLE_HDR_SIZE; 160 glNewList((GLuint) bswap_CARD32(pc + 0), (GLenum) bswap_ENUM(pc + 4)); 168 __glXDispSwap_EndList(__GLXclientState * cl, GLbyte * pc) 170 xGLXSingleReq *const req = (xGLXSingleReq *) pc; 175 pc += __GLX_SINGLE_HDR_SIZE; 185 __glXDispSwap_CallList(GLbyte * pc) 187 glCallList((GLuint) bswap_CARD32(pc + 0)) [all...] |
| render2swap.c | 41 __glXDispSwap_Map1f(GLbyte * pc) 51 __GLX_SWAP_INT(pc + 0); 52 __GLX_SWAP_INT(pc + 12); 53 __GLX_SWAP_FLOAT(pc + 4); 54 __GLX_SWAP_FLOAT(pc + 8); 56 target = *(GLenum *) (pc + 0); 57 order = *(GLint *) (pc + 12); 58 u1 = *(GLfloat *) (pc + 4); 59 u2 = *(GLfloat *) (pc + 8); 60 points = (GLfloat *) (pc + 16) [all...] |
| indirect_dispatch.h | 35 extern _X_HIDDEN void __glXDisp_MapGrid1d(GLbyte * pc); 36 extern _X_HIDDEN void __glXDispSwap_MapGrid1d(GLbyte * pc); 37 extern _X_HIDDEN void __glXDisp_MapGrid1f(GLbyte * pc); 38 extern _X_HIDDEN void __glXDispSwap_MapGrid1f(GLbyte * pc); 42 extern _X_HIDDEN void __glXDisp_LoadIdentity(GLbyte * pc); 43 extern _X_HIDDEN void __glXDispSwap_LoadIdentity(GLbyte * pc); 44 extern _X_HIDDEN void __glXDisp_ConvolutionFilter1D(GLbyte * pc); 45 extern _X_HIDDEN void __glXDispSwap_ConvolutionFilter1D(GLbyte * pc); 46 extern _X_HIDDEN void __glXDisp_RasterPos3dv(GLbyte * pc); 47 extern _X_HIDDEN void __glXDispSwap_RasterPos3dv(GLbyte * pc); [all...] |
| render2.c | 41 __glXDisp_Map1f(GLbyte * pc) 47 target = *(GLenum *) (pc + 0); 48 order = *(GLint *) (pc + 12); 49 u1 = *(GLfloat *) (pc + 4); 50 u2 = *(GLfloat *) (pc + 8); 51 points = (GLfloat *) (pc + 16); 58 __glXDisp_Map2f(GLbyte * pc) 64 target = *(GLenum *) (pc + 0); 65 uorder = *(GLint *) (pc + 12); 66 vorder = *(GLint *) (pc + 24) [all...] |
| unpack.h | 41 ** Fetch the context-id out of a SingleReq request pointed to by pc. 43 #define __GLX_GET_SINGLE_CONTEXT_TAG(pc) (((xGLXSingleReq*)pc)->contextTag) 44 #define __GLX_GET_VENDPRIV_CONTEXT_TAG(pc) (((xGLXVendorPrivateReq*)pc)->contextTag) 129 #define __GLX_SWAP_INT(pc) \ 130 sw = ((GLbyte *)(pc))[0]; \ 131 ((GLbyte *)(pc))[0] = ((GLbyte *)(pc))[3]; \ 132 ((GLbyte *)(pc))[3] = sw; [all...] |
| glxcmdsswap.c | 57 __glXDispSwap_CreateContext(__GLXclientState * cl, GLbyte * pc) 59 xGLXCreateContextReq *req = (xGLXCreateContextReq *) pc; 69 return __glXDisp_CreateContext(cl, pc); 73 __glXDispSwap_CreateNewContext(__GLXclientState * cl, GLbyte * pc) 75 xGLXCreateNewContextReq *req = (xGLXCreateNewContextReq *) pc; 86 return __glXDisp_CreateNewContext(cl, pc); 90 __glXDispSwap_CreateContextWithConfigSGIX(__GLXclientState * cl, GLbyte * pc) 94 (xGLXCreateContextWithConfigSGIXReq *) pc; 106 return __glXDisp_CreateContextWithConfigSGIX(cl, pc); 110 __glXDispSwap_DestroyContext(__GLXclientState * cl, GLbyte * pc) [all...] |
| indirect_reqsize.h | 39 extern PURE _X_HIDDEN int __glXCallListsReqSize(const GLbyte * pc, Bool swap, 41 extern PURE _X_HIDDEN int __glXBitmapReqSize(const GLbyte * pc, Bool swap, 43 extern PURE _X_HIDDEN int __glXFogfvReqSize(const GLbyte * pc, Bool swap, 45 extern PURE _X_HIDDEN int __glXFogivReqSize(const GLbyte * pc, Bool swap, 47 extern PURE _X_HIDDEN int __glXLightfvReqSize(const GLbyte * pc, Bool swap, 49 extern PURE _X_HIDDEN int __glXLightivReqSize(const GLbyte * pc, Bool swap, 51 extern PURE _X_HIDDEN int __glXLightModelfvReqSize(const GLbyte * pc, Bool swap, 53 extern PURE _X_HIDDEN int __glXLightModelivReqSize(const GLbyte * pc, Bool swap, 55 extern PURE _X_HIDDEN int __glXMaterialfvReqSize(const GLbyte * pc, Bool swap, 57 extern PURE _X_HIDDEN int __glXMaterialivReqSize(const GLbyte * pc, Bool swap [all...] |
| /xsrc/external/mit/xorg-server.old/dist/glx/ |
| indirect_dispatch_swap.c | 134 int __glXDispSwap_NewList(__GLXclientState *cl, GLbyte *pc) 136 xGLXSingleReq * const req = (xGLXSingleReq *) pc; 140 pc += __GLX_SINGLE_HDR_SIZE; 143 (GLuint )bswap_CARD32 ( pc + 0 ), 144 (GLenum )bswap_ENUM ( pc + 4 ) 152 int __glXDispSwap_EndList(__GLXclientState *cl, GLbyte *pc) 154 xGLXSingleReq * const req = (xGLXSingleReq *) pc; 158 pc += __GLX_SINGLE_HDR_SIZE; 167 void __glXDispSwap_CallList(GLbyte * pc) 170 (GLuint )bswap_CARD32 ( pc + 0 [all...] |
| indirect_dispatch.c | 55 int __glXDisp_NewList(__GLXclientState *cl, GLbyte *pc) 57 xGLXSingleReq * const req = (xGLXSingleReq *) pc; 61 pc += __GLX_SINGLE_HDR_SIZE; 64 *(GLuint *)(pc + 0), 65 *(GLenum *)(pc + 4) 73 int __glXDisp_EndList(__GLXclientState *cl, GLbyte *pc) 75 xGLXSingleReq * const req = (xGLXSingleReq *) pc; 79 pc += __GLX_SINGLE_HDR_SIZE; 88 void __glXDisp_CallList(GLbyte * pc) 91 *(GLuint *)(pc + 0 [all...] |
| render2swap.c | 45 void __glXDispSwap_Map1f(GLbyte *pc) 54 __GLX_SWAP_INT(pc + 0); 55 __GLX_SWAP_INT(pc + 12); 56 __GLX_SWAP_FLOAT(pc + 4); 57 __GLX_SWAP_FLOAT(pc + 8); 59 target = *(GLenum *)(pc + 0); 60 order = *(GLint *)(pc + 12); 61 u1 = *(GLfloat *)(pc + 4); 62 u2 = *(GLfloat *)(pc + 8); 63 points = (GLfloat *)(pc + 16) 316 CALL_VertexPointer( GET_DISPATCH(), (numVals, datatype, stride, pc) ); local 320 CALL_NormalPointer( GET_DISPATCH(), (datatype, stride, pc) ); local 324 CALL_ColorPointer( GET_DISPATCH(), (numVals, datatype, stride, pc) ); local 328 CALL_IndexPointer( GET_DISPATCH(), (datatype, stride, pc) ); local 332 CALL_TexCoordPointer( GET_DISPATCH(), (numVals, datatype, stride, pc) ); local 340 CALL_SecondaryColorPointerEXT( GET_DISPATCH(), (numVals, datatype, stride, pc) ); local 344 CALL_FogCoordPointerEXT( GET_DISPATCH(), (datatype, stride, pc) ); local [all...] |
| indirect_dispatch.h | 38 extern HIDDEN void __glXDisp_MapGrid1d(GLbyte * pc); 39 extern HIDDEN void __glXDispSwap_MapGrid1d(GLbyte * pc); 40 extern HIDDEN void __glXDisp_MapGrid1f(GLbyte * pc); 41 extern HIDDEN void __glXDispSwap_MapGrid1f(GLbyte * pc); 44 extern HIDDEN void __glXDisp_LoadIdentity(GLbyte * pc); 45 extern HIDDEN void __glXDispSwap_LoadIdentity(GLbyte * pc); 46 extern HIDDEN void __glXDisp_SampleCoverageARB(GLbyte * pc); 47 extern HIDDEN void __glXDispSwap_SampleCoverageARB(GLbyte * pc); 48 extern HIDDEN void __glXDisp_ConvolutionFilter1D(GLbyte * pc); 49 extern HIDDEN void __glXDispSwap_ConvolutionFilter1D(GLbyte * pc); [all...] |
| indirect_reqsize.h | 43 extern PURE HIDDEN int __glXCallListsReqSize(const GLbyte *pc, Bool swap, int reqlen); 44 extern PURE HIDDEN int __glXBitmapReqSize(const GLbyte *pc, Bool swap, int reqlen); 45 extern PURE HIDDEN int __glXFogfvReqSize(const GLbyte *pc, Bool swap, int reqlen); 46 extern PURE HIDDEN int __glXFogivReqSize(const GLbyte *pc, Bool swap, int reqlen); 47 extern PURE HIDDEN int __glXLightfvReqSize(const GLbyte *pc, Bool swap, int reqlen); 48 extern PURE HIDDEN int __glXLightivReqSize(const GLbyte *pc, Bool swap, int reqlen); 49 extern PURE HIDDEN int __glXLightModelfvReqSize(const GLbyte *pc, Bool swap, int reqlen); 50 extern PURE HIDDEN int __glXLightModelivReqSize(const GLbyte *pc, Bool swap, int reqlen); 51 extern PURE HIDDEN int __glXMaterialfvReqSize(const GLbyte *pc, Bool swap, int reqlen); 52 extern PURE HIDDEN int __glXMaterialivReqSize(const GLbyte *pc, Bool swap, int reqlen) [all...] |
| render2.c | 45 void __glXDisp_Map1f(GLbyte *pc) 51 target = *(GLenum *)(pc + 0); 52 order = *(GLint *)(pc + 12); 53 u1 = *(GLfloat *)(pc + 4); 54 u2 = *(GLfloat *)(pc + 8); 55 points = (GLfloat *)(pc + 16); 61 void __glXDisp_Map2f(GLbyte *pc) 67 target = *(GLenum *)(pc + 0); 68 uorder = *(GLint *)(pc + 12); 69 vorder = *(GLint *)(pc + 24) 205 CALL_VertexPointer( GET_DISPATCH(), (numVals, datatype, stride, pc) ); local 209 CALL_NormalPointer( GET_DISPATCH(), (datatype, stride, pc) ); local 213 CALL_ColorPointer( GET_DISPATCH(), (numVals, datatype, stride, pc) ); local 217 CALL_IndexPointer( GET_DISPATCH(), (datatype, stride, pc) ); local 221 CALL_TexCoordPointer( GET_DISPATCH(), (numVals, datatype, stride, pc) ); local 229 CALL_SecondaryColorPointerEXT( GET_DISPATCH(), (numVals, datatype, stride, pc) ); local 233 CALL_FogCoordPointerEXT( GET_DISPATCH(), (datatype, stride, pc) ); local [all...] |
| unpack.h | 41 ** Fetch the context-id out of a SingleReq request pointed to by pc. 43 #define __GLX_GET_SINGLE_CONTEXT_TAG(pc) (((xGLXSingleReq*)pc)->contextTag) 44 #define __GLX_GET_VENDPRIV_CONTEXT_TAG(pc) (((xGLXVendorPrivateReq*)pc)->contextTag) 153 #define __GLX_SWAP_INT(pc) \ 154 sw = ((GLbyte *)(pc))[0]; \ 155 ((GLbyte *)(pc))[0] = ((GLbyte *)(pc))[3]; \ 156 ((GLbyte *)(pc))[3] = sw; [all...] |
| /xsrc/external/mit/MesaLib/dist/src/glx/ |
| packrender.h | 58 GLubyte *pc, *pixelHeaderPC; \ 63 pc = gc->pc; \ 77 if (pc + (size) > gc->bufEnd) { \ 78 pc = __glXFlushRenderBuffer(gc, pc); \ 84 pc = __glXFlushRenderBuffer(gc, pc); \ 89 if (pc + (size) > gc->bufEnd) { \ 90 pc = __glXFlushRenderBuffer(gc, pc); [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/glx/ |
| packrender.h | 58 GLubyte *pc, *pixelHeaderPC; \ 63 pc = gc->pc; \ 77 if (pc + (size) > gc->bufEnd) { \ 78 pc = __glXFlushRenderBuffer(gc, pc); \ 84 pc = __glXFlushRenderBuffer(gc, pc); \ 89 if (pc + (size) > gc->bufEnd) { \ 90 pc = __glXFlushRenderBuffer(gc, pc); [all...] |
| /xsrc/external/mit/MesaLib/src/mapi/glapi/gen/ |
| indirect.c | 159 (void) __glXFlushRenderBuffer(gc, gc->pc); 174 (void) __glXFlushRenderBuffer(gc, gc->pc); 203 emit_header(gc->pc, rop, cmdlen); 204 (void) memcpy((void *)(gc->pc + 4), ptr, 4); 205 gc->pc += cmdlen; 206 if (__builtin_expect(gc->pc > gc->limit, 0)) { (void) __glXFlushRenderBuffer(gc, gc->pc); } 215 emit_header(gc->pc, rop, cmdlen); 216 (void) memcpy((void *)(gc->pc + 4), ptr, 4); 217 gc->pc += cmdlen 377 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 491 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 2364 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 3078 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 3116 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 3154 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 3254 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 4356 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivate, X_GLvop_DeleteTexturesEXT, cmdlen); local 4414 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GenTexturesEXT, cmdlen); local 4466 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_IsTextureEXT, cmdlen); local 4534 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 4620 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 4731 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetColorTableSGI, cmdlen); local 4791 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetColorTableParameterfvSGI, cmdlen); local 4848 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetColorTableParameterivSGI, cmdlen); local 4890 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 4951 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 5118 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetConvolutionFilterEXT, cmdlen); local 5178 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetConvolutionParameterfvEXT, cmdlen); local 5235 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetConvolutionParameterivEXT, cmdlen); local 5293 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetHistogramEXT, cmdlen); local 5354 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetHistogramParameterfvEXT, cmdlen); local 5411 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetHistogramParameterivEXT, cmdlen); local 5469 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetMinmaxEXT, cmdlen); local 5530 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetMinmaxParameterfvEXT, cmdlen); local 5587 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetMinmaxParameterivEXT, cmdlen); local 5684 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 5749 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 6708 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 7107 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivate, X_GLvop_DeleteProgramsARB, cmdlen); local 7126 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GenProgramsARB, cmdlen); local 7141 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramStringARB, cmdlen); local 7157 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramivARB, cmdlen); local 7174 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_IsProgramARB, cmdlen); local 7327 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 7492 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_CheckFramebufferStatus, cmdlen); local 7630 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GenFramebuffers, cmdlen); local 7649 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GenRenderbuffers, cmdlen); local 7675 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetFramebufferAttachmentParameteriv, cmdlen); local 7692 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetRenderbufferParameteriv, cmdlen); local 7709 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_IsFramebuffer, cmdlen); local 7725 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_IsRenderbuffer, cmdlen); local 7837 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_AreProgramsResidentNV, cmdlen); local 7866 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramParameterdvNV, cmdlen); local 7883 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramParameterfvNV, cmdlen); local 7900 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramStringNV, cmdlen); local 7916 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramivNV, cmdlen); local 7932 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetTrackMatrixivNV, cmdlen); local 7949 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetVertexAttribdvNV, cmdlen); local 7965 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetVertexAttribfvNV, cmdlen); local 7981 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetVertexAttribivNV, cmdlen); local 8756 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramNamedParameterdvNV, cmdlen); local 8781 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramNamedParameterfvNV, cmdlen); local [all...] |
| /xsrc/external/mit/MesaLib.old/src/mapi/glapi/ |
| indirect.c | 159 (void) __glXFlushRenderBuffer(gc, gc->pc); 174 (void) __glXFlushRenderBuffer(gc, gc->pc); 203 emit_header(gc->pc, rop, cmdlen); 204 (void) memcpy((void *)(gc->pc + 4), ptr, 4); 205 gc->pc += cmdlen; 206 if (__builtin_expect(gc->pc > gc->limit, 0)) { (void) __glXFlushRenderBuffer(gc, gc->pc); } 215 emit_header(gc->pc, rop, cmdlen); 216 (void) memcpy((void *)(gc->pc + 4), ptr, 4); 217 gc->pc += cmdlen 377 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 491 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 2364 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 3078 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 3116 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 3154 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 3254 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 4358 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivate, X_GLvop_DeleteTexturesEXT, cmdlen); local 4418 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GenTexturesEXT, cmdlen); local 4472 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_IsTextureEXT, cmdlen); local 4540 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 4626 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 4739 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetColorTableSGI, cmdlen); local 4801 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetColorTableParameterfvSGI, cmdlen); local 4860 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetColorTableParameterivSGI, cmdlen); local 4902 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 4963 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 5132 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetConvolutionFilterEXT, cmdlen); local 5194 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetConvolutionParameterfvEXT, cmdlen); local 5253 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetConvolutionParameterivEXT, cmdlen); local 5313 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetHistogramEXT, cmdlen); local 5376 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetHistogramParameterfvEXT, cmdlen); local 5435 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetHistogramParameterivEXT, cmdlen); local 5495 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetMinmaxEXT, cmdlen); local 5558 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetMinmaxParameterfvEXT, cmdlen); local 5617 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetMinmaxParameterivEXT, cmdlen); local 5714 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 5779 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 6738 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 7137 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivate, X_GLvop_DeleteProgramsARB, cmdlen); local 7156 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GenProgramsARB, cmdlen); local 7171 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramStringARB, cmdlen); local 7187 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramivARB, cmdlen); local 7204 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_IsProgramARB, cmdlen); local 7357 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local 7522 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_CheckFramebufferStatus, cmdlen); local 7660 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GenFramebuffers, cmdlen); local 7679 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GenRenderbuffers, cmdlen); local 7705 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetFramebufferAttachmentParameteriv, cmdlen); local 7722 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetRenderbufferParameteriv, cmdlen); local 7739 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_IsFramebuffer, cmdlen); local 7755 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_IsRenderbuffer, cmdlen); local 7867 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_AreProgramsResidentNV, cmdlen); local 7896 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramParameterdvNV, cmdlen); local 7913 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramParameterfvNV, cmdlen); local 7930 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramStringNV, cmdlen); local 7946 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramivNV, cmdlen); local 7962 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetTrackMatrixivNV, cmdlen); local 7979 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetVertexAttribdvNV, cmdlen); local 7995 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetVertexAttribfvNV, cmdlen); local 8011 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetVertexAttribivNV, cmdlen); local 8786 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramNamedParameterdvNV, cmdlen); local 8811 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramNamedParameterfvNV, cmdlen); local [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/indices/ |
| u_primconvert.c | 63 struct primconvert_context *pc = CALLOC_STRUCT(primconvert_context); local 64 if (!pc) 66 pc->pipe = pipe; 67 pc->primtypes_mask = primtypes_mask; 68 return pc; 72 util_primconvert_destroy(struct primconvert_context *pc) 74 FREE(pc); 78 util_primconvert_save_rasterizer_state(struct primconvert_context *pc, 86 pc->api_pv = rast->flatshade_first ? PV_FIRST : PV_LAST; 90 util_primconvert_draw_vbo(struct primconvert_context *pc, [all...] |