summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDave Airlie <airlied@linux.ie>2008-12-29 11:34:51 +1000
committerZhenyu Wang <zhenyu.z.wang@intel.com>2008-12-30 18:07:27 +0800
commitb076d399344e5b6495e069342f7f862c810c8ece (patch)
treee545b65ad816f454494e6bd2a3ab8ea88708fe58 /src
parent892cb5db6fd4c5cc692bc74a2615860f27e9feff (diff)
modeset: fix xf86CrtcRotate API change across server versions
(cherry picked from commit a320541e51818833a6a445707835fbf70e9babd4)
Diffstat (limited to 'src')
-rw-r--r--src/drmmode_display.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/drmmode_display.c b/src/drmmode_display.c
index 186ff2d1..47a1dbc0 100644
--- a/src/drmmode_display.c
+++ b/src/drmmode_display.c
@@ -29,6 +29,8 @@
#include "config.h"
#endif
+#include "xorgVersion.h"
+
#ifdef XF86DRM_MODE
#include "i830.h"
#include "sarea.h"
@@ -167,9 +169,13 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode,
output_count++;
}
- if (!xf86CrtcRotate(crtc)) {
+#if XORG_VERSION_CURRENT < XORG_VERSION_NUMERIC(1,5,99,0,0)
+ if (!xf86CrtcRotate(crtc, mode, rotation))
goto done;
- }
+#else
+ if (!xf86CrtcRotate(crtc))
+ goto done;
+#endif
drmmode_ConvertToKMode(crtc->scrn, &kmode, mode);