From ea2c71b7a4024a0f6748f7e7c27af253087107da Mon Sep 17 00:00:00 2001 From: Andrew Osmond Date: Wed, 19 Feb 2020 19:05:58 +0000 Subject: [PATCH] Bug 1615015 - Ship WebRender on nightly to all explicitly allowed NVIDIA/AMD/Intel, regardless of battery/screen. r=jrmuizel Differential Revision: https://phabricator.services.mozilla.com/D62764 --HG-- extra : moz-landing-system : lando --- widget/windows/GfxInfo.cpp | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/widget/windows/GfxInfo.cpp b/widget/windows/GfxInfo.cpp index a8aec9ae3a28..812b8b64a585 100644 --- a/widget/windows/GfxInfo.cpp +++ b/widget/windows/GfxInfo.cpp @@ -1856,20 +1856,25 @@ const nsTArray& GfxInfo::GetGfxDriverInfo() { #ifdef NIGHTLY_BUILD APPEND_TO_DRIVER_BLOCKLIST2_EXT( - OperatingSystem::Windows10, ScreenSizeStatus::Small, - BatteryStatus::Present, DesktopEnvironment::All, WindowProtocol::All, - DriverVendor::All, DeviceFamily::NvidiaRolloutWebRender, - nsIGfxInfo::FEATURE_WEBRENDER, nsIGfxInfo::FEATURE_ALLOW_QUALIFIED, - DRIVER_COMPARISON_IGNORED, V(0, 0, 0, 0), - "FEATURE_ROLLOUT_NIGHTLY_BATTERY_NV_S_SCRN"); + OperatingSystem::Windows10, ScreenSizeStatus::All, BatteryStatus::All, + DesktopEnvironment::All, WindowProtocol::All, DriverVendor::All, + DeviceFamily::NvidiaRolloutWebRender, nsIGfxInfo::FEATURE_WEBRENDER, + nsIGfxInfo::FEATURE_ALLOW_QUALIFIED, DRIVER_COMPARISON_IGNORED, + V(0, 0, 0, 0), "FEATURE_ROLLOUT_NIGHTLY_LISTED_NVIDIA"); APPEND_TO_DRIVER_BLOCKLIST2_EXT( - OperatingSystem::Windows10, ScreenSizeStatus::MediumAndLarge, - BatteryStatus::None, DesktopEnvironment::All, WindowProtocol::All, - DriverVendor::All, DeviceFamily::IntelRolloutWebRender, - nsIGfxInfo::FEATURE_WEBRENDER, nsIGfxInfo::FEATURE_ALLOW_QUALIFIED, - DRIVER_COMPARISON_IGNORED, V(0, 0, 0, 0), - "FEATURE_ROLLOUT_NIGHTLY_INTEL_DESKTOP_M_L_SCRN"); + OperatingSystem::Windows10, ScreenSizeStatus::All, BatteryStatus::All, + DesktopEnvironment::All, WindowProtocol::All, DriverVendor::All, + DeviceFamily::AtiRolloutWebRender, nsIGfxInfo::FEATURE_WEBRENDER, + nsIGfxInfo::FEATURE_ALLOW_QUALIFIED, DRIVER_COMPARISON_IGNORED, + V(0, 0, 0, 0), "FEATURE_ROLLOUT_NIGHTLY_LISTED_AMD"); + + APPEND_TO_DRIVER_BLOCKLIST2_EXT( + OperatingSystem::Windows10, ScreenSizeStatus::All, BatteryStatus::All, + DesktopEnvironment::All, WindowProtocol::All, DriverVendor::All, + DeviceFamily::IntelRolloutWebRender, nsIGfxInfo::FEATURE_WEBRENDER, + nsIGfxInfo::FEATURE_ALLOW_QUALIFIED, DRIVER_COMPARISON_IGNORED, + V(0, 0, 0, 0), "FEATURE_ROLLOUT_NIGHTLY_LISTED_INTEL"); #endif ////////////////////////////////////