diff options
author | Dave Airlie <airlied@linux.ie> | 2006-08-25 09:39:46 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2006-08-25 09:39:46 +1000 |
commit | be229d97e1f0282f2099c7ace7cb257a2738a58f (patch) | |
tree | 64dc9c42381fae8a40f2fd60cead6424c8385c7e | |
parent | 750ed51bc3d5119e2d2a91a05ae5a971dcd3b88a (diff) |
make colortiling default to on all cards
-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 8601113..53a3d4a 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; } |