diff options
author | Luca Tettamanti <kronos.it@gmail.com> | 2009-10-24 16:45:23 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-10-24 16:45:23 -0400 |
commit | f0d9d80fee4176eaba9435a9539f29d0eefe2a87 (patch) | |
tree | cd2ca0eeb853183c0cff8de93aa01c9a45d51188 | |
parent | ac499c3c0ea92f83ebd8127bb8cb5de625de6c94 (diff) |
Disable color tiling on r600/r700
Not supported yet.
-rw-r--r-- | src/radeon_kms.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/radeon_kms.c b/src/radeon_kms.c index b3fe20c..8e46a8a 100644 --- a/src/radeon_kms.c +++ b/src/radeon_kms.c @@ -411,6 +411,10 @@ Bool RADEONPreInit_KMS(ScrnInfoPtr pScrn, int flags) info->allowColorTiling = xf86ReturnOptValBool(info->Options, OPTION_COLOR_TILING, FALSE); + if (info->ChipFamily >= CHIP_FAMILY_R600) { + xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "Color tiling is not yet supported on R600/R700\n"); + info->allowColorTiling = FALSE; + } xf86DrvMsg(pScrn->scrnIndex, X_INFO, "KMS Color Tiling: %sabled\n", info->allowColorTiling ? "en" : "dis"); |