mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 901494 - Un-blacklist llvmpipe as of version 9.1 - r=jrmuizel
This commit is contained in:
parent
7c6f75f871
commit
5b05961a1f
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user