diff options
author | Ilija Hadzic <ihadzic@research.bell-labs.com> | 2012-12-19 10:35:41 -0500 |
---|---|---|
committer | Michel Dänzer <michel.daenzer@amd.com> | 2013-01-03 10:47:48 +0100 |
commit | 61d0aec40e2521488c2fe43e7a6823e5c87d94d7 (patch) | |
tree | b7678312f211fd803a6b845480c506aefbdd0ccb /src/radeon_exa_funcs.c | |
parent | a60d2152e928a7011fc7c44a885a34c3cdd4f0fe (diff) |
video: add option to include disabled CRTCs in best CRTC search
This patch adds an option called consider_disabled to
radeon_pick_best_crtc function. If this option is set
and searching for best-fit CRTC yields nothing, the search
will be widened to include CRTCs in DPMS "off" state.
The new option is not used yet; it will be in the patches
to follow.
v2: Do not look at the CRTC mode, we only care about its box.
Signed-off-by: Ilija Hadzic <ihadzic@research.bell-labs.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Diffstat (limited to 'src/radeon_exa_funcs.c')
-rw-r--r-- | src/radeon_exa_funcs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_exa_funcs.c b/src/radeon_exa_funcs.c index 2533d786..ce6186d9 100644 --- a/src/radeon_exa_funcs.c +++ b/src/radeon_exa_funcs.c @@ -190,7 +190,7 @@ RADEONSolid(PixmapPtr pPix, int x1, int y1, int x2, int y2) if (info->accel_state->vsync) RADEONWaitForVLine(pScrn, pPix, - radeon_pick_best_crtc(pScrn, x1, x2, y1, y2), + radeon_pick_best_crtc(pScrn, FALSE, x1, x2, y1, y2), y1, y2); BEGIN_RING(2*2); @@ -304,7 +304,7 @@ RADEONCopy(PixmapPtr pDst, if (info->accel_state->vsync) RADEONWaitForVLine(pScrn, pDst, - radeon_pick_best_crtc(pScrn, dstX, dstX + w, dstY, dstY + h), + radeon_pick_best_crtc(pScrn, FALSE, dstX, dstX + w, dstY, dstY + h), dstY, dstY + h); BEGIN_RING(2*3); |