author | Bas Schouten <bschouten@mozilla.com> |
Tue, 04 Nov 2014 21:58:59 +0100 | |
changeset 213955 | 650e884887f5003a0596ed950a6d9784a54febb7 |
parent 213954 | 1583a2e0c9470bee21de7f1431384139c7099f57 |
child 213956 | 69bcf4fef10328df08319d78659888777e820066 |
push id | 27768 |
push user | kwierso@gmail.com |
push date | Wed, 05 Nov 2014 02:19:03 +0000 |
treeherder | mozilla-central@a1823d3c7365 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | jrmuizel |
bugs | 1093694 |
milestone | 36.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/widget/windows/GfxInfo.cpp +++ b/widget/windows/GfxInfo.cpp @@ -1104,24 +1104,18 @@ GfxInfo::GetFeatureStatusImpl(int32_t aF } // Windows Server 2003 should be just like Windows XP for present purpose, but still has a different version number. // OTOH Windows Server 2008 R1 and R2 already have the same version numbers as Vista and Seven respectively if (os == DRIVER_OS_WINDOWS_SERVER_2003) os = DRIVER_OS_WINDOWS_XP; if (mHasDriverVersionMismatch) { - if (aFeature == nsIGfxInfo::FEATURE_DIRECT3D_10_LAYERS || - aFeature == nsIGfxInfo::FEATURE_DIRECT3D_10_1_LAYERS || - aFeature == nsIGfxInfo::FEATURE_DIRECT2D || - aFeature == nsIGfxInfo::FEATURE_DIRECT3D_11_LAYERS) - { - *aStatus = nsIGfxInfo::FEATURE_BLOCKED_DRIVER_VERSION; - return NS_OK; - } + *aStatus = nsIGfxInfo::FEATURE_BLOCKED_DRIVER_VERSION; + return NS_OK; } } return GfxInfoBase::GetFeatureStatusImpl(aFeature, aStatus, aSuggestedDriverVersion, aDriverInfo, &os); } #ifdef DEBUG