| author | Marek Olšák <maraeo@gmail.com> | 2012-10-28 16:50:49 (GMT) |
|---|---|---|
| committer | Alex Deucher <alexdeucher@gmail.com> | 2012-10-28 16:50:49 (GMT) |
| commit | 2e96aa641bc8a5c263a5b643961383cdf530d044 (patch) (side-by-side diff) | |
| tree | 9cd01c4ad399212aae1487fd1ceefecba7dd7a53 | |
| parent | e830c039479539735d0836082abef24f6841c803 (diff) | |
| download | xf86-video-ati-2e96aa641bc8a5c263a5b643961383cdf530d044.zip xf86-video-ati-2e96aa641bc8a5c263a5b643961383cdf530d044.tar.gz | |
radeon: turn on 2D tiling by default on r6xx-cayman
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
| -rw-r--r-- | src/radeon_kms.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/radeon_kms.c b/src/radeon_kms.c index dc238b7..261e1cb 100644 --- a/src/radeon_kms.c +++ b/src/radeon_kms.c @@ -828,7 +828,8 @@ Bool RADEONPreInit_KMS(ScrnInfoPtr pScrn, int flags) /* 2D color tiling */ if (info->ChipFamily >= CHIP_FAMILY_R600) { - info->allowColorTiling2D = xf86ReturnOptValBool(info->Options, OPTION_COLOR_TILING_2D, FALSE); + info->allowColorTiling2D = xf86ReturnOptValBool(info->Options, OPTION_COLOR_TILING_2D, + info->ChipFamily <= CHIP_FAMILY_ARUBA); } if (info->ChipFamily >= CHIP_FAMILY_R600) { |
