diff options
author | Alex Deucher <alex@botch2.(none)> | 2008-04-14 20:02:14 -0400 |
---|---|---|
committer | Alex Deucher <alex@botch2.(none)> | 2008-04-14 20:02:14 -0400 |
commit | 1286fe5ce1c77453d57817b9b26b1bdb32ca7bc8 (patch) | |
tree | 2bb4999a00246b9f68e8dde650c5ee3b244c6d0c /src/radeon_driver.c | |
parent | f72a4b805db26f10f69330b88459cbeae661189b (diff) |
R300+: properly setup vap_cntl
this fixes tcl/pvs on RV515 among other things
Diffstat (limited to 'src/radeon_driver.c')
-rw-r--r-- | src/radeon_driver.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c index 3d4f05f2..e77ea160 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -1795,11 +1795,7 @@ static Bool RADEONPreInitChipType(ScrnInfoPtr pScrn) (info->ChipFamily == CHIP_FAMILY_RS740)) info->has_tcl = FALSE; else { - /* need to sort out why PVS has issues on RV515 */ - if (info->ChipFamily == CHIP_FAMILY_RV515) - info->has_tcl = FALSE; - else - info->has_tcl = TRUE; + info->has_tcl = TRUE; } return TRUE; |