HomeSort by: relevance | last modified time | path
    Searched refs:exa (Results 1 - 25 of 37) sorted by relevancy

1 2

  /xsrc/external/mit/xf86-video-nouveau/dist/src/
nouveau_exa.c 24 #include "exa.h"
412 ExaDriverPtr exa; local
414 if (!xf86LoadSubModule(pScrn, "exa"))
417 exa = exaDriverAlloc();
418 if (!exa)
421 exa->exa_major = EXA_VERSION_MAJOR;
422 exa->exa_minor = EXA_VERSION_MINOR;
423 exa->flags = EXA_OFFSCREEN_PIXMAPS;
426 exa->flags |= EXA_SUPPORTS_PREPARE_AUX;
429 exa->PixmapIsOffscreen = nouveau_exa_pixmap_is_offscreen
    [all...]
nv10_exa.c 38 int exa; member in struct:pict_format
81 if (format->exa == pict->format)
94 if (format->exa == pict->format)
395 * numbers here because EXA always gives 64 byte aligned pixmaps and
  /xsrc/external/mit/xf86-video-nv/dist/src/
g80_exa.c 297 ExaDriverPtr exa; local
300 exa = pNv->exa = exaDriverAlloc();
301 if(!exa) return FALSE;
303 exa->exa_major = EXA_VERSION_MAJOR;
304 exa->exa_minor = EXA_VERSION_MINOR;
305 exa->memoryBase = pNv->mem;
306 exa->offScreenBase = 0;
307 exa->memorySize = pitch * pNv->offscreenHeight;
308 exa->pixmapOffsetAlign = 256
    [all...]
g80_type.h 1 #include <exa.h>
41 EXA,
85 /* EXA */
86 ExaDriverPtr exa; member in struct:G80Rec
g80_driver.c 108 /* Can resize if XAA is disabled or EXA is enabled */
113 pNv->exa) {
126 * If EXA is enabled, use exaOffscreenAlloc to carve out a chunk of memory
129 if(pNv->exa) {
136 "Failed to reserve EXA memory for the screen or EXA "
287 else if(!strcasecmp(s, "exa"))
289 if(!s || !strcasecmp(s, "exa"))
291 pNv->AccelMethod = EXA;
413 if(!xf86InitialConfiguration(pScrn, pNv->NoAccel || pNv->AccelMethod == EXA)) {
    [all...]
  /xsrc/external/mit/xorg-server/dist/hw/kdrive/ephyr/
ephyr_draw.c 44 /* Use some oddball alignments, to expose issues in alignment handling in EXA. */
69 pPix->devPrivate.ptr = fakexa->exa->memoryBase + exaGetPixmapOffset(pPix);
227 * desirable from an EXA testing standpoint -- testing the fallback paths would
328 src = fakexa->exa->memoryBase + exaGetPixmapOffset(pSrc);
365 dst = fakexa->exa->memoryBase + exaGetPixmapOffset(pDst);
411 * Assumes that we're waiting on the latest marker. When EXA gets smarter and
429 * This function initializes EXA to use the fake acceleration implementation
431 * correct driver with which to test changes to the EXA core.
447 fakexa->exa = exaDriverAlloc();
448 if (fakexa->exa == NULL)
    [all...]
ephyr.h 36 #include "exa.h"
50 ExaDriverPtr exa; member in struct:_ephyrFakexaPriv
  /xsrc/external/mit/xorg-server.old/dist/hw/kdrive/ephyr/
ephyr_draw.c 44 /* Use some oddball alignments, to expose issues in alignment handling in EXA. */
69 pPix->devPrivate.ptr = fakexa->exa->memoryBase + exaGetPixmapOffset(pPix);
220 * desirable from an EXA testing standpoint -- testing the fallback paths would
319 src = fakexa->exa->memoryBase + exaGetPixmapOffset(pSrc);
356 dst = fakexa->exa->memoryBase + exaGetPixmapOffset(pDst);
402 * Assumes that we're waiting on the latest marker. When EXA gets smarter and
420 * This function initializes EXA to use the fake acceleration implementation
422 * correct driver with which to test changes to the EXA core.
438 fakexa->exa = exaDriverAlloc();
439 if (fakexa->exa == NULL)
    [all...]
ephyr.h 36 #include "exa.h"
50 ExaDriverPtr exa; member in struct:_ephyrFakexaPriv
  /xsrc/external/mit/xf86-video-ati/dist/src/
radeon_exa_funcs.c 59 #include "exa.h"
792 if (info->accel_state->exa == NULL) {
797 info->accel_state->exa->exa_major = EXA_VERSION_MAJOR;
798 info->accel_state->exa->exa_minor = EXA_VERSION_MINOR;
800 info->accel_state->exa->PrepareSolid = FUNC_NAME(RADEONPrepareSolid);
801 info->accel_state->exa->Solid = FUNC_NAME(RADEONSolid);
802 info->accel_state->exa->DoneSolid = FUNC_NAME(RADEONDone2D);
804 info->accel_state->exa->PrepareCopy = FUNC_NAME(RADEONPrepareCopy);
805 info->accel_state->exa->Copy = FUNC_NAME(RADEONCopy);
806 info->accel_state->exa->DoneCopy = FUNC_NAME(RADEONDone2D)
    [all...]
radeon_exa.c 154 if (pitch > 16320 || pitch % info->accel_state->exa->pixmapPitchAlign != 0)
157 if (offset % info->accel_state->exa->pixmapOffsetAlign != 0)
312 (info->accel_state->exa->flags & EXA_MIXED_PIXMAPS);
392 if (info->accel_state->exa->flags & EXA_MIXED_PIXMAPS) {
465 if (info->accel_state->exa->flags & EXA_MIXED_PIXMAPS) {
723 if (info->accel_state->exa != NULL) {
727 info->accel_state->exa = exaDriverAlloc();
728 if (info->accel_state->exa == NULL)
739 info->accel_state->exa->memoryBase = info->FB;
740 info->accel_state->exa->memorySize = info->FbMapSize - info->FbSecureSize
    [all...]
r600_exa.c 33 #include "exa.h"
2262 if (info->accel_state->exa == NULL) {
2267 info->accel_state->exa->exa_major = EXA_VERSION_MAJOR;
2268 info->accel_state->exa->exa_minor = EXA_VERSION_MINOR;
2270 info->accel_state->exa->PrepareSolid = R600PrepareSolid;
2271 info->accel_state->exa->Solid = R600Solid;
2272 info->accel_state->exa->DoneSolid = R600DoneSolid;
2274 info->accel_state->exa->PrepareCopy = R600PrepareCopy;
2275 info->accel_state->exa->Copy = R600Copy;
2276 info->accel_state->exa->DoneCopy = R600DoneCopy
    [all...]
evergreen_exa.c 35 #include "exa.h"
1895 if (info->accel_state->exa == NULL) {
1904 info->accel_state->exa->exa_major = EXA_VERSION_MAJOR;
1905 info->accel_state->exa->exa_minor = EXA_VERSION_MINOR;
1907 info->accel_state->exa->PrepareSolid = EVERGREENPrepareSolid;
1908 info->accel_state->exa->Solid = EVERGREENSolid;
1909 info->accel_state->exa->DoneSolid = EVERGREENDoneSolid;
1911 info->accel_state->exa->PrepareCopy = EVERGREENPrepareCopy;
1912 info->accel_state->exa->Copy = EVERGREENCopy;
1913 info->accel_state->exa->DoneCopy = EVERGREENDoneCopy
    [all...]
radeon_kms.c 327 if (!LoadSubModule(pScrn->module, "exa", NULL, NULL, NULL,
329 LoaderErrorMsg(NULL, "exa", errmaj, errmin);
796 "EXA: Driver will allow EXA pixmaps in VRAM\n");
799 "EXA: Driver will not allow EXA pixmaps in VRAM\n");
885 if (info->accel_state->exa) {
887 free(info->accel_state->exa);
888 info->accel_state->exa = NULL;
1236 if (info->accel_state->exa != NULL)
    [all...]
radeon_exa_shared.c 161 info->accel_state->exa->WaitMarker(pScreen, info->accel_state->exaSyncMarker);
  /xsrc/external/mit/xf86-video-ati-kms/dist/src/
radeon_exa_funcs.c 39 #include "exa.h"
587 if (!info->accel_state->exa) {
592 info->accel_state->exa->exa_major = EXA_VERSION_MAJOR;
593 info->accel_state->exa->exa_minor = EXA_VERSION_MINOR;
595 info->accel_state->exa->PrepareSolid = RADEONPrepareSolid;
596 info->accel_state->exa->Solid = RADEONSolid;
597 info->accel_state->exa->DoneSolid = RADEONDone2D;
599 info->accel_state->exa->PrepareCopy = RADEONPrepareCopy;
600 info->accel_state->exa->Copy = RADEONCopy;
601 info->accel_state->exa->DoneCopy = RADEONDone2D
    [all...]
evergreen_exa.c 33 #include "exa.h"
2049 if (!info->accel_state->exa) {
2054 info->accel_state->exa->exa_major = EXA_VERSION_MAJOR;
2055 info->accel_state->exa->exa_minor = EXA_VERSION_MINOR;
2057 info->accel_state->exa->PrepareSolid = EVERGREENPrepareSolid;
2058 info->accel_state->exa->Solid = EVERGREENSolid;
2059 info->accel_state->exa->DoneSolid = EVERGREENDoneSolid;
2061 info->accel_state->exa->PrepareCopy = EVERGREENPrepareCopy;
2062 info->accel_state->exa->Copy = EVERGREENCopy;
2063 info->accel_state->exa->DoneCopy = EVERGREENDoneCopy
    [all...]
r600_exa.c 33 #include "exa.h"
2028 if (!info->accel_state->exa) {
2033 info->accel_state->exa->exa_major = EXA_VERSION_MAJOR;
2034 info->accel_state->exa->exa_minor = EXA_VERSION_MINOR;
2036 info->accel_state->exa->PrepareSolid = R600PrepareSolid;
2037 info->accel_state->exa->Solid = R600Solid;
2038 info->accel_state->exa->DoneSolid = R600DoneSolid;
2040 info->accel_state->exa->PrepareCopy = R600PrepareCopy;
2041 info->accel_state->exa->Copy = R600Copy;
2042 info->accel_state->exa->DoneCopy = R600DoneCopy
    [all...]
radeon_exa.c 117 if (pitch > 16320 || pitch % info->accel_state->exa->pixmapPitchAlign != 0)
120 if (offset % info->accel_state->exa->pixmapOffsetAlign != 0)
radeon_kms.c 1459 if (!LoadSubModule(pScrn->module, "exa", NULL, NULL, NULL,
1461 LoaderErrorMsg(NULL, "exa", errmaj, errmin);
2021 "EXA: Driver will allow EXA pixmaps in VRAM\n");
2024 "EXA: Driver will not allow EXA pixmaps in VRAM\n");
2223 if (info->accel_state->exa) {
2225 free(info->accel_state->exa);
2226 info->accel_state->exa = NULL;
2764 if (info->accel_state->exa) {
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/xa/
xa_context.c 320 exa->solid_color[0], exa->solid_color[1],
321 exa->solid_color[2], exa->solid_color[3]);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/xa/
xa_context.c 320 exa->solid_color[0], exa->solid_color[1],
321 exa->solid_color[2], exa->solid_color[3]);
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/
sdksyms.sh 218 /* exa/Makefile.am -- module */
220 #include "exa.h"
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/loader/
sdksyms.sh 244 /* exa/Makefile.am -- module */
246 #include "exa.h"
  /xsrc/external/mit/xf86-video-i128/dist/src/
i128.h 20 #include "exa.h"
102 Bool exa; member in struct:__anon7000

Completed in 25 milliseconds

1 2