From 47136fa347d1756523239746b4c74cd5278a1118 Mon Sep 17 00:00:00 2001 From: Michel Dänzer Date: Mon, 15 Feb 2010 16:44:39 +0100 Subject: EXA: Fix order of coordinates passed to radeon_pick_best_crtc(). The wrong order prevented tearing avoidance from working with EXA/DRI2. --- src/radeon_exa_render.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/radeon_exa_render.c') diff --git a/src/radeon_exa_render.c b/src/radeon_exa_render.c index 7f350fb6..15f4326f 100644 --- a/src/radeon_exa_render.c +++ b/src/radeon_exa_render.c @@ -2256,7 +2256,7 @@ static void FUNC_NAME(RadeonCompositeTile)(ScrnInfoPtr pScrn, if (info->accel_state->vsync) FUNC_NAME(RADEONWaitForVLine)(pScrn, pDst, - radeon_pick_best_crtc(pScrn, dstX, dstY, dstX + w, dstY + h), + radeon_pick_best_crtc(pScrn, dstX, dstX + w, dstY, dstY + h), dstY, dstY + h); #ifdef ACCEL_CP -- cgit v1.2.3