diff options
author | Keith Packard <keithp@keithp.com> | 2009-07-26 13:14:05 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2009-08-13 13:07:21 -0700 |
commit | 24638652704f66c97a5f093231182868e638da57 (patch) | |
tree | f0704a55e7c77ec384bc3448b6b23289a2591c0d | |
parent | 5d50a949b3c5d0ad2bc4cf48ab25da1f707a4f6f (diff) |
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 <keithp@keithp.com>
(cherry picked from commit 8084f76d86f048ca5b82da089fffa9665dbbcdd5)
-rw-r--r-- | src/drmmode_display.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/drmmode_display.c b/src/drmmode_display.c index df10fb50..8c919f9e 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) { |