summaryrefslogtreecommitdiff
path: root/src/radeon_exa_funcs.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2008-02-23 22:16:25 -0500
committerDave Airlie <airlied@redhat.com>2008-02-23 22:16:25 -0500
commit9aaf8b33b22b6ba112869558ae54e021b9487ad2 (patch)
treea3799dafff20131d7dee1407732e7e6cd2d24510 /src/radeon_exa_funcs.c
parent05dc3e4fc19d056ce99a7b110665adab2ca1ea21 (diff)
r500: initial rotate support - not fully working yet.
Just an example of how to setup and run the r500 3D engine for rotation. this rotates for me but I get some strange clipping on the bottom of my screen
Diffstat (limited to 'src/radeon_exa_funcs.c')
-rw-r--r--src/radeon_exa_funcs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_exa_funcs.c b/src/radeon_exa_funcs.c
index 20b96a5d..ce50dfd5 100644
--- a/src/radeon_exa_funcs.c
+++ b/src/radeon_exa_funcs.c
@@ -533,11 +533,11 @@ Bool FUNC_NAME(RADEONDrawInit)(ScreenPtr pScreen)
#ifdef RENDER
if (info->RenderAccel) {
- if ((info->ChipFamily >= CHIP_FAMILY_RV515) ||
+ if ((info->ChipFamily >= CHIP_FAMILY_RS690) ||
(info->ChipFamily == CHIP_FAMILY_RS400))
xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Render acceleration "
"unsupported on XPRESS, R500 and newer cards.\n");
- else if (IS_R300_VARIANT) {
+ else if (IS_R300_VARIANT || info->ChipFamily < CHIP_FAMILY_RS690) {
xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Render acceleration "
"enabled for R300 type cards.\n");
info->exa->CheckComposite = R300CheckComposite;