mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
Bug 1080277 - Add missing braces in GfxInfo::GetFeatureStatusImpl. r=jgilbert
This commit is contained in:
parent
e103fd61cc
commit
e2e97b44c2
@ -341,9 +341,10 @@ GfxInfo::GetFeatureStatusImpl(int32_t aFeature,
|
||||
}
|
||||
else if (aFeature == nsIGfxInfo::FEATURE_WEBGL_MSAA)
|
||||
{
|
||||
if (mIsIntel && version(mMajorVersion, mMinorVersion) < version(8,1))
|
||||
if (mIsIntel && version(mMajorVersion, mMinorVersion) < version(8,1)) {
|
||||
*aStatus = nsIGfxInfo::FEATURE_BLOCKED_DRIVER_VERSION;
|
||||
aSuggestedDriverVersion.AssignLiteral("Mesa 8.1");
|
||||
}
|
||||
}
|
||||
|
||||
} else if (mIsNVIDIA) {
|
||||
|
Loading…
Reference in New Issue
Block a user