xf86-video-ati: Branch 'master'

Alex Deucher agd5f at kemper.freedesktop.org
Sat Feb 12 02:21:37 PST 2011


 src/radeon_kms.c |    9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

New commits:
commit 5f9b7fdb4ce27f8c6a64134bb4d5ebeb1c958cca
Author: Alex Deucher <alexdeucher at gmail.com>
Date:   Sat Feb 12 05:19:12 2011 -0500

    kms: always get the tiling info even if we aren't tiling
    
    We need the proper group size to calculate alignment so the
    ddx and drm agree.
    
    Signed-off-by: Alex Deucher <alexdeucher at gmail.com>

diff --git a/src/radeon_kms.c b/src/radeon_kms.c
index 82258d9..dae512e 100644
--- a/src/radeon_kms.c
+++ b/src/radeon_kms.c
@@ -601,10 +601,11 @@ Bool RADEONPreInit_KMS(ScrnInfoPtr pScrn, int flags)
 	/* set default group bytes, overridden by kernel info below */
 	info->group_bytes = 256;
 	if (info->dri->pKernelDRMVersion->version_minor >= 6) {
-	    info->allowColorTiling = xf86ReturnOptValBool(info->Options,
-							  OPTION_COLOR_TILING, colorTilingDefault);
-	    if (info->allowColorTiling)
-		info->allowColorTiling = r600_get_tile_config(pScrn);
+	    if (r600_get_tile_config(pScrn))
+		info->allowColorTiling = xf86ReturnOptValBool(info->Options,
+							      OPTION_COLOR_TILING, colorTilingDefault);
+	    else
+		info->allowColorTiling = FALSE;
 	} else
 	    xf86DrvMsg(pScrn->scrnIndex, X_INFO,
 		       "R6xx+ KMS Color Tiling requires radeon drm 2.6.0 or newer\n");


More information about the xorg-commit mailing list