diff options
author | Eric Anholt <eric@anholt.net> | 2009-04-17 14:01:47 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2009-04-27 17:05:59 -0700 |
commit | fa81ae1637bfd7b73b43355b78c88a9b84c0393c (patch) | |
tree | 72c4dadcc3d93d4ad47905ef4b40e665c7dacafb /src/drmmode_display.c | |
parent | 1b10745a2528622a32271f64c35fcdb7b7154d11 (diff) |
Remove EXA support.
UXA has completely replaced EXA at this point. UXA is the same rendering
core as EXA, but relying on kernel memory management or a fake bufmgr instead
of trying to manage memory in the X Server.
Diffstat (limited to 'src/drmmode_display.c')
-rw-r--r-- | src/drmmode_display.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/drmmode_display.c b/src/drmmode_display.c index b081a7b3..8f682d50 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c @@ -926,28 +926,4 @@ Bool drmmode_pre_init(ScrnInfoPtr pScrn, int fd, int cpp) return TRUE; } -Bool drmmode_is_rotate_pixmap(ScrnInfoPtr pScrn, pointer pPixData, dri_bo **bo) -{ - return FALSE; - -#if 0 - xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR (pScrn); - int i; - - for (i = 0; i < config->num_crtc; i++) { - xf86CrtcPtr crtc = config->crtc[i]; - drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private; - - if (!drmmode_crtc->rotate_bo) - continue; - - if (drmmode_crtc->rotate_bo->virtual == pPixData) { - *bo = drmmode_crtc->rotate_bo; - return TRUE; - } - } - return FALSE; -#endif -} - #endif |