summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alex@samba.(none)>2008-01-16 17:10:02 -0500
committerAlex Deucher <alex@samba.(none)>2008-01-16 17:10:02 -0500
commitdbb2ca471dfbff245b30c5055871dee0dc0e3d15 (patch)
treee60a1b42153950ba3cc3a652798457c667cb6f26
parent3c72b100bcfacee600644669b586e86cfd32754e (diff)
R300: only enable render accel on non-IGP r3xx/r4xx chips for now
-rw-r--r--src/radeon_exa_funcs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_exa_funcs.c b/src/radeon_exa_funcs.c
index b27a2666..f62a0205 100644
--- a/src/radeon_exa_funcs.c
+++ b/src/radeon_exa_funcs.c
@@ -533,7 +533,7 @@ Bool FUNC_NAME(RADEONDrawInit)(ScreenPtr pScreen)
#ifdef RENDER
if (info->RenderAccel) {
- if (info->ChipFamily >= CHIP_FAMILY_R300) {
+ if (IS_R300_VARIANT && !info->IsIGP) {
xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Render acceleration "
"enabled for R300 type cards.\n");
info->exa->CheckComposite = R300CheckComposite;