disable r300 chips. R300_FORCE_R300 to force

This commit is contained in:
Aapo Tahkola 2006-03-31 03:16:39 +00:00
parent aa70d92a13
commit fb0175db93
1 changed files with 8 additions and 0 deletions

View File

@ -637,6 +637,14 @@ radeonCreateScreen( __DRIscreenPrivate *sPriv )
dri_priv->deviceID);
return NULL;
}
if (screen->chip_family == CHIP_FAMILY_RS300 ||
screen->chip_family == CHIP_FAMILY_R300) {
if (getenv("R300_FORCE_R300") == NULL) {
fprintf(stderr, "Radeon 9500/9700 cards are not currently stable.\n");
fprintf(stderr, "More details can be found at https://bugs.freedesktop.org/show_bug.cgi?id=6318\n");
return NULL;
}
}
if (screen->chip_family <= CHIP_FAMILY_RS200)
screen->chip_flags |= RADEON_CLASS_R100;