diff options
Diffstat (limited to 'src/radeon_dri.c')
-rw-r--r-- | src/radeon_dri.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/radeon_dri.c b/src/radeon_dri.c index 868b735a..1b67e9d6 100644 --- a/src/radeon_dri.c +++ b/src/radeon_dri.c @@ -1288,12 +1288,12 @@ Bool RADEONDRIGetVersion(ScrnInfoPtr pScrn) } /* Now check if we qualify */ - if (info->IsIGP) { - req_minor = 10; - req_patch = 0; - } else if (info->ChipFamily >= CHIP_FAMILY_R300) { + if (info->ChipFamily >= CHIP_FAMILY_R300) { req_minor = 17; req_patch = 0; + } else if (info->IsIGP) { + req_minor = 10; + req_patch = 0; } else if (info->ChipFamily >= CHIP_FAMILY_R200) { req_minor = 5; req_patch = 0; |