Bug 1603015 - Block WebRender compositor on all Intel devices with <= 6293 driver r=gw

Differential Revision: https://phabricator.services.mozilla.com/D56673

--HG--
extra : moz-landing-system : lando
This commit is contained in:
sotaro 2019-12-11 06:19:48 +00:00
Родитель 739fd11cac
Коммит b6830af239
3 изменённых файлов: 4 добавлений и 8 удалений

Просмотреть файл

@ -221,9 +221,6 @@ const GfxDeviceFamily* GfxDriverInfo::GetDeviceFamily(DeviceFamily id) {
case IntelHD3000:
APPEND_DEVICE(0x0126);
break;
case IntelHD520:
APPEND_DEVICE(0x1916);
break;
case IntelMobileHDGraphics:
APPEND_DEVICE(0x0046); /* IntelMobileHDGraphics */
break;

Просмотреть файл

@ -108,7 +108,6 @@ enum DeviceFamily {
IntelHDGraphicsToSandyBridge,
IntelHDGraphicsToHaswell,
IntelHD3000,
IntelHD520,
IntelMobileHDGraphics,
NvidiaBlockD3D9Layers,
RadeonX1000,

Просмотреть файл

@ -1870,14 +1870,14 @@ const nsTArray<GfxDriverInfo>& GfxInfo::GetGfxDriverInfo() {
////////////////////////////////////
// FEATURE_WEBRENDER_COMPOSITOR
// XXX we might relax it in future.
APPEND_TO_DRIVER_BLOCKLIST2(
OperatingSystem::Windows10,
(nsAString&)GfxDriverInfo::GetDeviceVendor(VendorIntel),
(nsAString&)GfxDriverInfo::GetDriverVendor(DriverVendorAll),
(GfxDeviceFamily*)GfxDriverInfo::GetDeviceFamily(IntelHD520),
nsIGfxInfo::FEATURE_WEBRENDER_COMPOSITOR,
nsIGfxInfo::FEATURE_BLOCKED_DEVICE, DRIVER_EQUAL, V(24, 20, 100, 6293),
"FEATURE_FAILURE_BUG_1602511");
GfxDriverInfo::allDevices, nsIGfxInfo::FEATURE_WEBRENDER_COMPOSITOR,
nsIGfxInfo::FEATURE_BLOCKED_DEVICE, DRIVER_LESS_THAN_OR_EQUAL,
V(24, 20, 100, 6293), "Intel driver > 24.20.100.6293");
}
return *sDriverInfo;
}