From 8084f76d86f048ca5b82da089fffa9665dbbcdd5 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sun, 26 Jul 2009 13:14:05 -0700 Subject: [PATCH] Allow DRM mode setting to include transformations This removes the explicit transform disabling code in drm_set_mode_major. Without a fixed X server, transforms will still be broken, but even a fixed X server can't work around this driver bug. Signed-off-by: Keith Packard --- src/drmmode_display.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/drmmode_display.c b/src/drmmode_display.c index bb239ed7..814743b3 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c @@ -185,9 +185,6 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode, crtc->x = x; crtc->y = y; crtc->rotation = rotation; -#if XORG_VERSION_CURRENT >= XORG_VERSION_NUMERIC(1,5,99,0,0) - crtc->transformPresent = FALSE; -#endif output_ids = xcalloc(sizeof(uint32_t), xf86_config->num_output); if (!output_ids) {