Searched refs:fbc (Results 1 - 23 of 23) sorted by relevance

/xsrc/external/mit/xf86-video-suncg6/dist/src/
H A Dcg6_accel.c144 while (pCg6->fbc->s & GX_INPROGRESS);
145 pCg6->fbc->clipminx = 0;
146 pCg6->fbc->clipmaxx = pCg6->width;
147 pCg6->fbc->clipminy = 0;
148 pCg6->fbc->clipmaxy = pCg6->maxheight;
151 #define runDraw(pCg6) { volatile CARD32 rubbish = pCg6->fbc->draw; }
152 #define runBlit(pCg6) { volatile CARD32 rubbish = pCg6->fbc->blit; }
159 #define waitReady(pCg6) while(pCg6->fbc->s & GX_INPROGRESS)
169 pCg6->fbc->clipminx = pCg6->clipxa;
170 pCg6->fbc
[all...]
H A Dcg6_exa.c71 #define runDraw(pCg6) { volatile CARD32 rubbish = pCg6->fbc->draw; }
72 #define runBlit(pCg6) { volatile CARD32 rubbish = pCg6->fbc->blit; }
79 #define waitReady(pCg6) while(pCg6->fbc->s & GX_INPROGRESS)
108 pCg6->fbc->mode = GX_BLIT_SRC |
117 pCg6->fbc->fg = 0xff;
118 pCg6->fbc->bg = 0x00;
119 pCg6->fbc->s = 0;
122 pCg6->fbc->alu = Cg6BlitROP[alu];
123 pCg6->fbc->pm = planemask;
145 pCg6->fbc
[all...]
H A Dcg6_driver.c453 pCg6->fbc = xf86MapSbusMem(psdp, CG6_FBC_VOFF, sizeof(*pCg6->fbc));
491 if (!pCg6->fbc || !pCg6->thc || !pCg6->fb) {
493 "xf86MapSbusMem failed fbc:%p fb:%p thc:%p\n",
494 pCg6->fbc, pCg6->fb, pCg6->thc);
496 if (pCg6->fbc) {
497 xf86UnmapSbusMem(psdp, pCg6->fbc, sizeof(*pCg6->fbc));
498 pCg6->fbc = NULL;
713 if (pCg6->fbc) {
[all...]
H A Dcg6.h63 Cg6FbcPtr fbc; member in struct:__anon7bb66a280308
/xsrc/external/mit/xf86-video-sunffb/dist/src/
H A Dffb_attr.c37 int drawop, int fg, unsigned int fbc, unsigned int wid)
42 ppc, ppc_mask, pmask, rop, drawop, fg, fbc, wid));
46 pFfb->fbc_cache = fbc;
55 ffb->fbc = fbc;
62 void __FFB_Attr_SFB_VAR(FFBPtr pFfb, unsigned int ppc, unsigned int ppc_mask, unsigned int fbc, argument
68 ppc, ppc_mask, pmask, rop, fbc, wid));
71 pFfb->fbc_cache = fbc;
78 ffb->fbc = fbc;
35 __FFB_Attr_Raw(FFBPtr pFfb,unsigned int ppc,unsigned int ppc_mask,unsigned int pmask,unsigned int rop,int drawop,int fg,unsigned int fbc,unsigned int wid) argument
[all...]
H A Dffb_accel_common.c61 unsigned int fbc = pFfb->fbc; local in function:FFB_SetupTextureAttrs
68 pFfb->fbc_cache != fbc ||
72 __FFB_Attr_SFB_VAR(pFfb, ppc, ppc_mask, fbc,
H A Dffb_accel.c77 ffb->fbc = pFfb->fbc_cache;
99 ffb->fbc = pFfb->fbc_cache;
312 unsigned int ppc, ppc_mask, fbc; local in function:FFB_SetupForMono8x8PatternFill
327 fbc = pFfb->fbc;
331 FFB_DRAWOP_RECTANGLE, fg, fbc, pFfb->wid);
376 unsigned int ppc, ppc_mask, fbc; local in function:FFB_SetupForScanlineCPUToScreenColorExpandFill
389 fbc = pFfb->fbc;
394 pFfb->fbc_cache != fbc ||
470 unsigned int ppc, ppc_mask, fbc; local in function:FFB_SetupForDashedLine
528 unsigned int ppc, ppc_mask, fbc; local in function:FFB_SetupForSolidLine
578 unsigned int ppc, ppc_mask, fbc; local in function:FFB_SetupForSolidFill
[all...]
H A Dffb_rcache.h115 (__ffb)->fbc = (__val); \
133 unsigned int fbc,
189 (__ffb)->fbc = __fbc; \
196 extern void __FFB_Attr_SFB_VAR(FFBPtr pFfb, unsigned int ppc, unsigned int ppc_mask, unsigned int fbc,
247 (__ffb)->fbc = __fbc; \
273 (__ffb)->fbc = __fbc; \
H A Dffb_exa.c160 unsigned int ppc, ppc_mask, fbc; local in function:FFBPrepareSolid
167 fbc = pFfb->fbc;
169 fbc |= FFB_FBC_WB_B;
175 FFB_DRAWOP_RECTANGLE, fg, fbc, pFfb->wid);
395 pFfb->fbc = (FFB_FBC_WB_A | FFB_FBC_WM_COMBINED | FFB_FBC_RB_A |
427 ffb->fbc = pFfb->fbc_cache;
H A Dffb_regs.h132 /*254*/ volatile unsigned int fbc; /* Frame Buffer Control */ member in struct:_ffb_fbc
525 unsigned int __fbc = (__fpriv)->fbc; \
540 unsigned int __fbc = (__fpriv)->fbc; \
555 (__ffb)->fbc = __fbc; \
H A Dffb_dac.c442 unsigned int fbc, ppc, ppc_mask, drawop, wid; local in function:restore_kernel_xchannel
447 fbc = FFB_FBC_WB_AB;
449 fbc = FFB_FBC_WB_A;
451 fbc |= (FFB_FBC_WM_COMBINED | FFB_FBC_RB_A | FFB_FBC_SB_BOTH |
462 drawop, 0x0, fbc, wid);
H A Dffb.h210 CARD32 planemask, fbc, wid, fillcolour; member in struct:__anoncc77e9840308
/xsrc/external/mit/MesaLib.old/dist/src/glx/tests/
H A Dcreate_context_unittest.cpp131 struct glx_config fbc; member in class:glXCreateContextAttribARB_test
145 memset(&this->fbc, 0, sizeof(this->fbc));
146 this->fbc.fbconfigID = 0xbeefcafe;
168 glXCreateContextAttribsARB(NULL, (GLXFBConfig) &this->fbc, 0,
190 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0,
204 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0,
212 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0,
220 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0,
229 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc,
[all...]
/xsrc/external/mit/MesaLib/dist/src/glx/tests/
H A Dcreate_context_unittest.cpp142 struct glx_config fbc; member in class:glXCreateContextAttribARB_test
156 memset(&this->fbc, 0, sizeof(this->fbc));
157 this->fbc.fbconfigID = 0xbeefcafe;
192 glXCreateContextAttribsARB(NULL, (GLXFBConfig) &this->fbc, 0,
205 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0,
219 ctx = glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0,
227 ctx = glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0,
234 ctx = glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0,
243 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc,
[all...]
/xsrc/external/mit/MesaGLUT/dist/src/glut/glx/
H A Dglut_overlay.c317 determineOverlayVisual(int *treatAsSingle, Bool * visAlloced, void **fbc) argument
338 *fbc = NULL;
343 requiredOverlayCriteriaMask, fbc);
351 *fbc = NULL;
364 void *fbc; local in function:glutEstablishOverlay
387 &overlay->visAlloced, &fbc);
393 if (fbc) {
394 window->ctx = __glut_glXCreateContextWithConfigSGIX(__glutDisplay, fbc,
566 void *fbc; local in function:glutLayerGet
568 vi = determineOverlayVisual(&dummy, &visAlloced, &fbc);
[all...]
H A Dglut_dstr.c44 Criterion * requiredCriteria, int nRequired, int requiredMask, void **fbc) = NULL;
301 mode->fbc = NULL;
440 GLXFBConfigSGIX fbc; local in function:loadVisuals
443 fbc = __glut_glXGetFBConfigFromVisualSGIX(__glutDisplay, vlist[i]);
444 if (fbc) {
445 rc = __glut_glXGetFBConfigAttribSGIX(__glutDisplay, fbc,
448 rc = __glut_glXGetFBConfigAttribSGIX(__glutDisplay, fbc,
451 rc = __glut_glXGetFBConfigAttribSGIX(__glutDisplay, fbc,
454 mode->fbc = fbc;
629 findMatch(FrameBufferMode * fbmodes,int nfbmodes,Criterion * criteria,int ncriteria,void ** fbc) argument
1423 getVisualInfoFromString(char * string,Bool * treatAsSingle,Criterion * requiredCriteria,int nRequired,int requiredMask,void ** fbc) argument
1534 void *fbc; local in function:main
[all...]
H A Dglut_get.c168 void *fbc; local in function:glutGet
176 vi = __glutDetermineWindowVisual(&dummy, &visAlloced, &fbc);
H A Dglut_win.c33 Criterion * requiredCriteria, int nRequired, int requiredMask, void **fbc) = NULL;
460 __glutDetermineWindowVisual(Bool * treatAsSingle, Bool * visAlloced, void **fbc) argument
476 *fbc = NULL;
478 requiredWindowCriteria, numRequiredWindowCriteria, requiredWindowCriteriaMask, fbc);
481 *fbc = NULL;
497 void *fbc; local in function:__glutCreateWindow
523 &window->visAlloced, &fbc);
578 &window->visAlloced, &fbc);
603 if (fbc) {
604 window->ctx = __glut_glXCreateContextWithConfigSGIX(__glutDisplay, fbc,
[all...]
H A Dglutint.h225 /* fbc is non-NULL when the XVisualInfo* is not OpenGL-capable
234 GLXFBConfigSGIX fbc; member in struct:_FrameBufferMode
622 Criterion * requiredCriteria, int nRequired, int requiredMask, void **fbc);
664 Bool * visAlloced, void **fbc);
/xsrc/external/mit/xf86-video-pnozz/dist/src/
H A Dpnozz.h59 unsigned char *fbc; /* registers, so we can just add a byte offset */ member in struct:__anon1e1df6b40308
H A Dpnozz_driver.c181 *((volatile unsigned int *)(p->fbc + offset)) = value;
190 return *(volatile unsigned int *)(p->fbc + offset);
620 pPnozz->fbc =
623 if (! pPnozz->fbc) {
625 "xf86MapSbusMem failed fbc:%p fb:%p\n",
626 pPnozz->fbc, pPnozz->fb);
878 xf86UnmapSbusMem(pPnozz->psdp, pPnozz->fbc,0x8000);
H A Dpnozz_accel.c311 volatile CARD32 *pix = ((volatile CARD32 *)(pPnozz->fbc + PIXEL_1_FULL));
320 *(volatile CARD32 *)(pPnozz->fbc + PIXEL_1 + pPnozz->last_word) =
555 pXAAInfo->ImageWriteBase = pPnozz->fbc + PIXEL_8;
/xsrc/external/mit/MesaGLUT/dist/src/glut/beos/
H A Dglutint.h210 /* fbc is non-NULL when the XVisualInfo* is not OpenGL-capable
219 GLXFBConfigSGIX fbc; member in struct:_FrameBufferMode
640 Criterion * requiredCriteria, int nRequired, int requiredMask, void **fbc);
679 Bool * visAlloced, void **fbc);

Completed in 32 milliseconds