diff options
-rw-r--r-- | src/radeon_driver.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c index 86011134..53a3d4a0 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -4642,15 +4642,12 @@ static void RADEONPreInitColorTiling(ScrnInfoPtr pScrn) { RADEONInfoPtr info = RADEONPTR(pScrn); + info->allowColorTiling = xf86ReturnOptValBool(info->Options, + OPTION_COLOR_TILING, TRUE); if (IS_R300_VARIANT) { - /* false by default on R3/4xx */ - info->allowColorTiling = xf86ReturnOptValBool(info->Options, - OPTION_COLOR_TILING, FALSE); info->MaxSurfaceWidth = 3968; /* one would have thought 4096...*/ info->MaxLines = 4096; } else { - info->allowColorTiling = xf86ReturnOptValBool(info->Options, - OPTION_COLOR_TILING, TRUE); info->MaxSurfaceWidth = 2048; info->MaxLines = 2048; } |