Lines Matching refs:exa
69 pPix->devPrivate.ptr = fakexa->exa->memoryBase + exaGetPixmapOffset(pPix); in ephyrPreparePipelinedAccess()
328 src = fakexa->exa->memoryBase + exaGetPixmapOffset(pSrc); in ephyrDownloadFromScreen()
365 dst = fakexa->exa->memoryBase + exaGetPixmapOffset(pDst); in ephyrUploadToScreen()
447 fakexa->exa = exaDriverAlloc(); in ephyrDrawInit()
448 if (fakexa->exa == NULL) { in ephyrDrawInit()
453 fakexa->exa->memoryBase = (CARD8 *) (priv->base); in ephyrDrawInit()
454 fakexa->exa->memorySize = priv->bytes_per_line * ephyrBufferHeight(screen); in ephyrDrawInit()
455 fakexa->exa->offScreenBase = priv->bytes_per_line * screen->height; in ephyrDrawInit()
460 fakexa->exa->exa_major = 2; in ephyrDrawInit()
461 fakexa->exa->exa_minor = 0; in ephyrDrawInit()
463 fakexa->exa->PrepareSolid = ephyrPrepareSolid; in ephyrDrawInit()
464 fakexa->exa->Solid = ephyrSolid; in ephyrDrawInit()
465 fakexa->exa->DoneSolid = ephyrDoneSolid; in ephyrDrawInit()
467 fakexa->exa->PrepareCopy = ephyrPrepareCopy; in ephyrDrawInit()
468 fakexa->exa->Copy = ephyrCopy; in ephyrDrawInit()
469 fakexa->exa->DoneCopy = ephyrDoneCopy; in ephyrDrawInit()
471 fakexa->exa->CheckComposite = ephyrCheckComposite; in ephyrDrawInit()
472 fakexa->exa->PrepareComposite = ephyrPrepareComposite; in ephyrDrawInit()
473 fakexa->exa->Composite = ephyrComposite; in ephyrDrawInit()
474 fakexa->exa->DoneComposite = ephyrDoneComposite; in ephyrDrawInit()
476 fakexa->exa->DownloadFromScreen = ephyrDownloadFromScreen; in ephyrDrawInit()
477 fakexa->exa->UploadToScreen = ephyrUploadToScreen; in ephyrDrawInit()
479 fakexa->exa->MarkSync = ephyrMarkSync; in ephyrDrawInit()
480 fakexa->exa->WaitMarker = ephyrWaitMarker; in ephyrDrawInit()
482 fakexa->exa->PrepareAccess = ephyrPrepareAccess; in ephyrDrawInit()
484 fakexa->exa->pixmapOffsetAlign = EPHYR_OFFSET_ALIGN; in ephyrDrawInit()
485 fakexa->exa->pixmapPitchAlign = EPHYR_PITCH_ALIGN; in ephyrDrawInit()
487 fakexa->exa->maxX = 1023; in ephyrDrawInit()
488 fakexa->exa->maxY = 1023; in ephyrDrawInit()
490 fakexa->exa->flags = EXA_OFFSCREEN_PIXMAPS; in ephyrDrawInit()
492 success = exaDriverInit(pScreen, fakexa->exa); in ephyrDrawInit()
499 free(fakexa->exa); in ephyrDrawInit()