mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 04:48:08 +02:00
close #6318
This commit is contained in:
parent
a38aef93ab
commit
9cb82f7917
1 changed files with 4 additions and 7 deletions
|
|
@ -635,13 +635,10 @@ radeonCreateScreen( __DRIscreenPrivate *sPriv )
|
|||
dri_priv->deviceID);
|
||||
return NULL;
|
||||
}
|
||||
if (screen->chip_family == CHIP_FAMILY_R350 ||
|
||||
screen->chip_family == CHIP_FAMILY_R300) {
|
||||
if (getenv("R300_FORCE_R300") == NULL) {
|
||||
fprintf(stderr, "Radeon 9500/9700/9800 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_R350 || screen->chip_family == CHIP_FAMILY_R300) &&
|
||||
sPriv->ddxMinor < 2) {
|
||||
fprintf(stderr, "xf86-video-ati-6.6.2 or newer needed for Radeon 9500/9700/9800 cards.\n");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (screen->chip_family <= CHIP_FAMILY_RS200)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue