Bug 901494 - Un-blacklist llvmpipe as of version 9.1 - r=jrmuizel

This commit is contained in:
Benoit Jacob 2013-08-12 23:55:28 +02:00
parent 7c6f75f871
commit 5b05961a1f

View File

@ -337,7 +337,12 @@ GfxInfo::GetFeatureStatusImpl(int32_t aFeature,
*aStatus = nsIGfxInfo::FEATURE_BLOCKED_DRIVER_VERSION;
aSuggestedDriverVersion.AssignLiteral("Mesa 7.10.3");
}
else if (mIsOldSwrast || mIsLlvmpipe) {
else if (mIsOldSwrast) {
*aStatus = nsIGfxInfo::FEATURE_BLOCKED_DRIVER_VERSION;
}
else if (mIsLlvmpipe && version(mMajorVersion, mMinorVersion) < version(9, 1)) {
// bug 791905, Mesa bug 57733, fixed in Mesa 9.1 according to
// https://bugs.freedesktop.org/show_bug.cgi?id=57733#c3
*aStatus = nsIGfxInfo::FEATURE_BLOCKED_DRIVER_VERSION;
}
else if (aFeature == nsIGfxInfo::FEATURE_WEBGL_MSAA)