Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit beef5aa

Browse files
committed
Bug 1682180 - Allow Software WebRender for software mesa users on Linux nightly. r=jrmuizel
This lifts the restriction to non-mesa and hardware mesa users to work around CI issues that should be fixed now. Differential Revision: https://phabricator.services.mozilla.com/D99612
1 parent 17102f3 commit beef5aa

File tree

1 file changed

+7
-17
lines changed

1 file changed

+7
-17
lines changed

widget/GfxInfoX11.cpp

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,8 @@ const nsTArray<GfxDriverInfo>& GfxInfo::GetGfxDriverInfo() {
760760
DesktopEnvironment::All, WindowProtocol::All, DriverVendor::MesaAll,
761761
DeviceFamily::NvidiaRolloutWebRender, nsIGfxInfo::FEATURE_WEBRENDER,
762762
nsIGfxInfo::FEATURE_ALLOW_QUALIFIED, DRIVER_GREATER_THAN_OR_EQUAL,
763-
V(18, 2, 0, 0), "FEATURE_ROLLOUT_EARLY_BETA_NVIDIA_MESA", "Mesa 18.2.0.0");
763+
V(18, 2, 0, 0), "FEATURE_ROLLOUT_EARLY_BETA_NVIDIA_MESA",
764+
"Mesa 18.2.0.0");
764765

765766
// ATI Mesa baseline, chosen arbitrarily.
766767
APPEND_TO_DRIVER_BLOCKLIST_EXT(
@@ -776,22 +777,11 @@ const nsTArray<GfxDriverInfo>& GfxInfo::GetGfxDriverInfo() {
776777
#ifdef EARLY_BETA_OR_EARLIER
777778
# if defined(_M_IX86) || defined(_M_X64) || defined(__i386__) || \
778779
defined(__i386) || defined(__amd64__)
779-
APPEND_TO_DRIVER_BLOCKLIST_EXT(
780-
OperatingSystem::Linux, ScreenSizeStatus::All, BatteryStatus::All,
781-
DesktopEnvironment::All, WindowProtocol::All, DriverVendor::NonMesaAll,
782-
DeviceFamily::All, nsIGfxInfo::FEATURE_WEBRENDER_SOFTWARE,
783-
nsIGfxInfo::FEATURE_ALLOW_ALWAYS, DRIVER_COMPARISON_IGNORED,
784-
V(0, 0, 0, 0), "FEATURE_ROLLOUT_NIGHTLY_SOFTWARE_WR_NON_MESA_S_M_SCRN",
785-
"");
786-
787-
APPEND_TO_DRIVER_BLOCKLIST_EXT(
788-
OperatingSystem::Linux, ScreenSizeStatus::All, BatteryStatus::All,
789-
DesktopEnvironment::All, WindowProtocol::All,
790-
DriverVendor::HardwareMesaAll, DeviceFamily::All,
791-
nsIGfxInfo::FEATURE_WEBRENDER_SOFTWARE,
792-
nsIGfxInfo::FEATURE_ALLOW_ALWAYS, DRIVER_COMPARISON_IGNORED,
793-
V(0, 0, 0, 0), "FEATURE_ROLLOUT_NIGHTLY_SOFTWARE_WR_HW_MESA_S_M_SCRN",
794-
"");
780+
APPEND_TO_DRIVER_BLOCKLIST(OperatingSystem::Linux, DeviceFamily::All,
781+
nsIGfxInfo::FEATURE_WEBRENDER_SOFTWARE,
782+
nsIGfxInfo::FEATURE_ALLOW_ALWAYS,
783+
DRIVER_COMPARISON_IGNORED, V(0, 0, 0, 0),
784+
"FEATURE_ROLLOUT_EARLY_BETA_SOFTWARE_WR", "");
795785
# endif
796786
#endif
797787

0 commit comments

Comments
 (0)